DeskTop.js 778 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 学生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2038. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2039. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2040. ];
  2041. //PREPAI 学生端
  2042. U.MD.D.I.PREPAIStudentDeskIcon = [
  2043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2044. ];
  2045. //深圳外国语学校(集团)初中部
  2046. U.MD.D.I.x010511TeacherDeskIcon = [
  2047. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2048. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2049. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2050. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2053. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2056. ];
  2057. //深圳外国语学校(集团)初中部 学生端
  2058. U.MD.D.I.x010511StudentDeskIcon = [
  2059. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2060. ];
  2061. //深圳大学附属实验中学
  2062. U.MD.D.I.x010103TeacherDeskIcon = [
  2063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2071. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2072. ];
  2073. //深圳大学附属实验中学 学生端
  2074. U.MD.D.I.x010103StudentDeskIcon = [
  2075. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2076. ];
  2077. //智理集团
  2078. U.MD.D.I.zlteacherDeskIcon = [
  2079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  2087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2089. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2090. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2091. ];
  2092. //智理集团
  2093. U.MD.D.I.zlstudentDeskIcon = [
  2094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2095. ];
  2096. //#region 桌面初始化a
  2097. /**
  2098. * 初始化桌面的起始函数
  2099. *
  2100. */
  2101. U.MD.D.I.init = function () {
  2102. if ($("#U_MD_D_K")[0]) {
  2103. //初始化桌面图标
  2104. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2105. // var clickUrl = ':12588/requestIp.php';
  2106. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2107. // U.MD.D.I.Ip = data;
  2108. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2109. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2110. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2111. // })
  2112. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2113. // })
  2114. }
  2115. }
  2116. /**
  2117. * 模式切换
  2118. *
  2119. */
  2120. U.MD.D.I.ModeCheck = function (type) {
  2121. if (US.Config.type == type) {
  2122. return
  2123. }
  2124. US.Config.type = type
  2125. $('.U_PBL_Check .active')[0].className = ''
  2126. if (type == 1) {
  2127. $('.U_PBL_Check div')[0].className = 'active'
  2128. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2129. } else {
  2130. $('.U_PBL_Check div')[1].className = 'active'
  2131. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2132. }
  2133. //初始化桌面图标
  2134. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2135. if (type == 2) {
  2136. U.MD.D.I.openApplication("project")
  2137. }
  2138. }
  2139. /**
  2140. * 隐藏任务栏
  2141. *
  2142. * @param {element} 桌面元素
  2143. */
  2144. U.MD.D.I.hiddenTaskbar = function (el) {
  2145. //任务栏位置变小
  2146. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2147. //桌面的位置变大
  2148. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2149. }
  2150. /**
  2151. * 隐藏任务栏
  2152. *
  2153. * @param {element} 桌面元素
  2154. */
  2155. U.MD.D.I.hiddenTaskbarout = function (el) {
  2156. //任务栏位置变小
  2157. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2158. //任务栏位置变化
  2159. U.selectEl(el).css({ "bottom": "-60px" });
  2160. //桌面的位置变大
  2161. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2162. }
  2163. }
  2164. /**
  2165. * 初始化打印桌面图标
  2166. *
  2167. * @param {element} 桌面元素
  2168. */
  2169. U.MD.D.I.initDesktopIcons = function (el, type) {
  2170. var i, //用于循环
  2171. _content, //桌面图标元素
  2172. _iconcontent, //桌面图标元素
  2173. _frag = $$("frag"), //定义一个碎片元素
  2174. _type = US.userInfo.type,
  2175. _org = US.userInfo.org,
  2176. _oid = US.userInfo.organizeid,
  2177. _role = US.userInfo.role,
  2178. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2179. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2180. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2181. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2182. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2183. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2184. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2185. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2186. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2187. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2188. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2189. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2190. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2191. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2192. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2193. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2194. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2195. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2196. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2197. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2198. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2199. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2200. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2201. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2202. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2203. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2204. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2205. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2206. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2207. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2208. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2209. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2210. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2211. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2212. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2213. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2214. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2215. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2216. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2217. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2218. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2219. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2220. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2221. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2222. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2223. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2224. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2225. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2226. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2227. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2228. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2229. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2230. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2231. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2232. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2233. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2234. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2235. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2236. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2237. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2238. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2239. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2240. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2241. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2242. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2243. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2244. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2245. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2246. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2247. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2248. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2249. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2250. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2251. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2252. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2253. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2254. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2255. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2256. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2257. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2258. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2259. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2260. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2261. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2262. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2263. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2264. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2265. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2266. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2267. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2268. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2269. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2270. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2271. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2272. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2273. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2274. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2275. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2276. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2277. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2278. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2279. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2280. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2281. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2282. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2283. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2284. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2285. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2286. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2287. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2288. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2289. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2290. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2291. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2292. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2293. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2294. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2295. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2296. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2297. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2298. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2299. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2300. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2301. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2302. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2303. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2304. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2305. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2306. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2307. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2308. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //PREPAI
  2309. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //PREPAI
  2310. _x010511TeacherDeskIcon = U.MD.D.I.x010511TeacherDeskIcon, //PREPAI
  2311. _x010511StudentDeskIcon = U.MD.D.I.x010511StudentDeskIcon, //PREPAI
  2312. _x010103TeacherDeskIcon = U.MD.D.I.x010103TeacherDeskIcon, //PREPAI
  2313. _x010103StudentDeskIcon = U.MD.D.I.x010103StudentDeskIcon, //PREPAI
  2314. _zlteacherDeskIconInfo = U.MD.D.I.zlteacherDeskIcon, //zl
  2315. _zlstudentDeskIconInfo = U.MD.D.I.zlstudentDeskIcon, //zl
  2316. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2317. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2318. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5', 'c7df0bd4-6e75-401a-a137-4e163aa62263', '9b46a3c9-7657-11ef-9b30-005056b86db5', '857af1c7-c8ee-4b04-85b5-fd182903adb7', '876030db-7a49-11ef-9b30-005056b86db5', 'b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5', '6c16df93-8849-11ef-9b30-005056b86db5', '72c16ee0-89fe-11ef-9b30-005056b86db5', '369222a8-cddd-11ed-9546-005056b86db5', '3fc7840d-a1c4-11ef-9b30-005056b86db5', '2c5d4971-ed9e-11ef-b508-005056924926', 'bc239322-ffb2-11ef-b508-005056924926', '91796dfb-8791-11ef-9b30-005056b86db5', '86fa8cd7-00c2-11f0-b508-005056924926', '8406b214-085f-11f0-b508-005056924926', '65ad80f0-16bb-11f0-a66a-005056924926', '9a8076a2-469a-11f0-b60f-005056924926', '17dbf412-92de-11f0-9838-005056924926', '31631344-92db-11f0-9838-005056924926'];
  2319. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344', '884c5665-a453-46f3-b7b6-01d575290aa9', 'c9a6de59-8b4f-4be1-8565-a08081f649d3', '7f280060-665e-4868-b68f-1eec9e1b4a07', 'f3b243b2-75e2-4b00-8f66-7644946a2a25', '16ace517-b5c7-4168-a9bb-a9e0035df840', '2fe1a080-4425-4620-b7a0-be2f3750ffd4', 'a5efd078-20f6-4185-bef9-6d1c688bee70', '23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6', 'ec84034b-8ea4-4d27-9cba-1adcb4720bb3', 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc', 'c8266c04-59e3-44de-bcf2-8f906e66e636', '7cc601a0-fafc-4116-a805-0adbacf7a38d', '62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926', "fa20a652-5f2a-11f0-bf32-005056924926", "eed08ac6-7269-11f0-9c7b-005056924926",'cf30095b-87d5-11f0-9c7b-005056924926'];
  2320. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2321. //清楚桌面图标
  2322. el.innerHTML = "";
  2323. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2324. _teacherDesktopIconInfo.push(
  2325. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2326. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2327. )
  2328. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2329. }
  2330. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2331. _teacherDesktopIconInfo.push(
  2332. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2333. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2334. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2335. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2337. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2338. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2339. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2340. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2341. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2342. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2344. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2347. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2348. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2349. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2350. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2351. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2352. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2353. )
  2354. }
  2355. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2356. _teacherDesktopIconInfo.push(
  2357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2358. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2359. )
  2360. }
  2361. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2362. _nsfxTeacherDeskIconInfo.push(
  2363. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2364. )
  2365. }
  2366. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2367. // _teacherDesktopIconInfo.push(
  2368. // )
  2369. // }
  2370. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2374. )
  2375. }
  2376. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2377. _teacherDesktopIconInfo.push(
  2378. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2380. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2382. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2383. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2384. )
  2385. _studentDesktopIconInfo.push(
  2386. )
  2387. }
  2388. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2389. _teacherDesktopIconInfo.push(
  2390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2391. )
  2392. _studentDesktopIconInfo.push(
  2393. )
  2394. }
  2395. //010606 组织
  2396. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2397. _teacherDesktopIconInfo.push(
  2398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2399. )
  2400. _studentDesktopIconInfo.push(
  2401. )
  2402. }
  2403. //麒麟二中 和 民新小学
  2404. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2405. _teacherDesktopIconInfo.push(
  2406. )
  2407. }
  2408. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2409. _teacherDesktopIconInfo.push(
  2410. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2411. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2412. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2413. )
  2414. }
  2415. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2416. _hkTeacherDeskIconInfo.push(
  2417. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2418. )
  2419. }
  2420. //北师大附中(010601)
  2421. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2422. // _teacherDesktopIconInfo.push(
  2423. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2424. // )
  2425. // _studentDesktopIconInfo.push(
  2426. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2427. // )
  2428. // }
  2429. //樂善堂余近卿中學
  2430. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2431. _teacherDesktopIconInfo.push(
  2432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2433. )
  2434. }
  2435. // Education Artificial Intelligence
  2436. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2437. _teacherDesktopIconInfo.push(
  2438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2439. )
  2440. }
  2441. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2442. _teacherDesktopIconInfo.push(
  2443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2444. )
  2445. }
  2446. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2447. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2448. _teacherDesktopIconInfo.push(
  2449. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2450. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2451. )
  2452. }
  2453. //麒麟二中
  2454. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2455. _studentDesktopIconInfo.push(
  2456. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2458. )
  2459. }
  2460. //万科双语
  2461. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2462. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2463. if (el.Name == '项目管理') {
  2464. el.Name = 'PBL项目'
  2465. }
  2466. return el
  2467. })
  2468. _studentDesktopIconInfo3.push(
  2469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2470. )
  2471. }
  2472. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2473. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2474. return el.Name != '魔盒识字' && el.Name != '24点'
  2475. })
  2476. }
  2477. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  2478. _studentDesktopIconInfo.push(
  2479. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2480. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2481. )
  2482. }
  2483. //循环创建桌面图标
  2484. if (type == 1) {
  2485. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2486. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_studentDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_studentDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2503. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_hkZJLSStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. } //
  2519. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2520. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_ytyStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_ytyStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. } //
  2536. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2537. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_jccssylStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_jccssylStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2554. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_scnuaiStudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_scnuaiStudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2571. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_caleStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_caleStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2588. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_thuioeStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_thuioeStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2605. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_tpcStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_tpcStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. } //
  2621. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2622. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_chjyjStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_chjyjStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2639. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szjkyStudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_szjkyStudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2656. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x020201StudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_x020201StudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2673. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_SCNUETStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_SCNUETStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2690. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_dseiStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_dseiStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2707. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2724. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_nsfxStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_nsfxStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2741. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_stiaStudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_stiaStudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2758. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_szdjgStudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_szdjgStudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2775. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_x010607StudentDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010607StudentDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2792. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_xhlyStudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_xhlyStudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2809. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2826. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_x010503StudentDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_x010503StudentDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2843. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_x010504StudentDeskIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_x010504StudentDeskIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2860. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_x010505StudentDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_x010505StudentDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2877. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_x010404StudentDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_x010404StudentDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2894. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_x010204StudentDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_x010204StudentDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2911. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_x320101StudentDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x320101StudentDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2928. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_MOAIStudentDeskIcon[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_MOAIStudentDeskIcon[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2943. }
  2944. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2945. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_trailStudentDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_trailStudentDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2962. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_trialStudentDeskIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_trialStudentDeskIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2979. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2996. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_szsyStudentDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_szsyStudentDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  3013. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_PREPAIStudentDeskIcon[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_PREPAIStudentDeskIcon[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  3028. }
  3029. } else if (_type == 2 && (_oid == "17dbf412-92de-11f0-9838-005056924926")) {
  3030. for (i = 0; i < _x010511StudentDeskIcon.length; i++) {
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_x010511StudentDeskIcon[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_x010511StudentDeskIcon[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511StudentDeskIcon[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511StudentDeskIcon[i].Name }, _iconcontent);
  3045. }
  3046. } else if (_type == 2 && (_oid == "31631344-92db-11f0-9838-005056924926")) {
  3047. for (i = 0; i < _x010103StudentDeskIcon.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_x010103StudentDeskIcon[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_x010103StudentDeskIcon[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103StudentDeskIcon[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103StudentDeskIcon[i].Name }, _iconcontent);
  3062. }
  3063. } else if (_type == 2 && (_org == "cf30095b-87d5-11f0-9c7b-005056924926")) {
  3064. for (i = 0; i < _zlstudentDeskIconInfo.length; i++) {
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_zlstudentDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_zlstudentDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlstudentDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlstudentDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  3081. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_demoCocoStudentDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_demoCocoStudentDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  3096. }
  3097. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  3098. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_x010608StudentDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_x010608StudentDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3115. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_x010611StudentDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_x010611StudentDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3132. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_x010612StudentDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_x010612StudentDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3149. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_tianyuantudentDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tianyuantudentDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3166. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesStudentDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesStudentDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_guzmsStudentDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsStudentDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3200. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_hkStudentDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_hkStudentDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3217. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_tycyStudentDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_tycyStudentDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3234. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_ckcpsStudentDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_ckcpsStudentDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3251. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_hkaceStudentDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceStudentDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3268. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_BSDNSstudentDesktopIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3285. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3286. _content = $$("div", {
  3287. className: "U_MD_D_KO",
  3288. "onmousedown": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_cocobizStudentDeskIconInfo[i]]),
  3292. "onclick": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_cocobizStudentDeskIconInfo[i]])
  3296. }, _frag); //
  3297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3300. }
  3301. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3302. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_xxzjkyStudentDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3317. }
  3318. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3319. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_studentDesktopIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_studentDesktopIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3336. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3337. _content = $$("div", {
  3338. className: "U_MD_D_KO",
  3339. "onmousedown": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_tcStudentDeskIconInfo[i]]),
  3343. "onclick": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_tcStudentDeskIconInfo[i]])
  3347. }, _frag); //
  3348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3351. }
  3352. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3353. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szscStudentDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szscStudentDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3370. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_studentDesktopIconInfo3[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_studentDesktopIconInfo3[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3385. }
  3386. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3387. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_studentDesktopIconInfo2[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_studentDesktopIconInfo2[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3404. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3405. if (_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher') {
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_wanketeacherDesktopIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_wanketeacherDesktopIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3424. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_wankeAdminDesktopIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_wankeAdminDesktopIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3441. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3442. if (_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3443. continue
  3444. }
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_scnuaiTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3461. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3462. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_BSDNSteacherDesktopIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3481. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_scnuaiAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_scnuaiAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3498. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3499. if (_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_jccssylTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_jccssylTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3518. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3519. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3520. continue
  3521. }
  3522. _content = $$("div", {
  3523. className: "U_MD_D_KO",
  3524. "onmousedown": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_caleTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_caleTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3538. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_tpcOrganizerDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_tpcOrganizerDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3555. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3556. if (_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3557. continue
  3558. }
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_tpcTeacherDeskIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_tpcTeacherDeskIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3575. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3576. if (_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher') {
  3577. continue
  3578. }
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_teacherDesktopIconInfo2[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_teacherDesktopIconInfo2[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3595. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3596. if (_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_thuioeTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_thuioeTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3615. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3616. if (_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3617. continue
  3618. }
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_lotechTeacherDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_lotechTeacherDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3633. }//
  3634. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3635. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3636. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3655. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3656. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_siesTeacherDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_siesTeacherDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3675. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3676. if (_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_guzmsTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_guzmsTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3695. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3696. if (_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3697. continue
  3698. }
  3699. _content = $$("div", {
  3700. className: "U_MD_D_KO",
  3701. "onmousedown": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_longhuaTeacherDeskIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_longhuaTeacherDeskIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3715. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3716. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3717. continue
  3718. }
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_ytyTeacherDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_ytyTeacherDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3735. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3736. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_yunhaiTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. } //_hkStudentDeskIconInfo
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3755. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3756. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3775. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3776. if (_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3777. continue
  3778. }
  3779. _content = $$("div", {
  3780. className: "U_MD_D_KO",
  3781. "onmousedown": U.UF.C.closure(function (obj) {
  3782. //防止拖动图标即打开了桌面应用
  3783. U.MD.D.click(this, obj);
  3784. }, [_ricohTeacherDeskIconInfo[i]]),
  3785. "onclick": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_ricohTeacherDeskIconInfo[i]])
  3789. }, _frag); //
  3790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3793. }
  3794. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3795. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3796. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3797. continue
  3798. }
  3799. _content = $$("div", {
  3800. className: "U_MD_D_KO",
  3801. "onmousedown": U.UF.C.closure(function (obj) {
  3802. //防止拖动图标即打开了桌面应用
  3803. U.MD.D.click(this, obj);
  3804. }, [_hkTeacherDeskIconInfo[i]]),
  3805. "onclick": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_hkTeacherDeskIconInfo[i]])
  3809. }, _frag); //
  3810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3813. }
  3814. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3815. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3816. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3817. continue
  3818. }
  3819. _content = $$("div", {
  3820. className: "U_MD_D_KO",
  3821. "onmousedown": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_tycyTeacherDeskIconInfo[i]]),
  3825. "onclick": U.UF.C.closure(function (obj) {
  3826. //防止拖动图标即打开了桌面应用
  3827. U.MD.D.click(this, obj);
  3828. }, [_tycyTeacherDeskIconInfo[i]])
  3829. }, _frag); //
  3830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3833. }
  3834. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3835. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3836. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3837. continue
  3838. }
  3839. _content = $$("div", {
  3840. className: "U_MD_D_KO",
  3841. "onmousedown": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3845. "onclick": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_ckcpsTeacherDeskIconInfo[i]])
  3849. }, _frag); //
  3850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3853. }
  3854. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3855. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3856. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3857. continue
  3858. }
  3859. _content = $$("div", {
  3860. className: "U_MD_D_KO",
  3861. "onmousedown": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_hkaceTeacherDeskIconInfo[i]]),
  3865. "onclick": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_hkaceTeacherDeskIconInfo[i]])
  3869. }, _frag); //
  3870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3873. }
  3874. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3875. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3876. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3877. continue
  3878. }
  3879. _content = $$("div", {
  3880. className: "U_MD_D_KO",
  3881. "onmousedown": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_cocobizTeacherDeskIconInfo[i]]),
  3885. "onclick": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_cocobizTeacherDeskIconInfo[i]])
  3889. }, _frag); //
  3890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3893. }
  3894. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3895. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3896. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3897. continue
  3898. }
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3915. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_gdjgAdminDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_gdjgAdminDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3932. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3933. if (_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_gdjgTeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_gdjgTeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3952. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3953. if (_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_szherTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_szherTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3972. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_heyuannAdminDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_heyuannAdminDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3989. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3990. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_heyuanTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_heyuanTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. } //
  4008. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  4009. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_dseiAdminDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_dseiAdminDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  4026. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  4027. if (_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_dseiTeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_dseiTeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. } //
  4045. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  4046. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_chjyjAdminDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_chjyjAdminDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  4061. }//
  4062. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  4063. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  4064. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_chjyjTeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_chjyjTeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  4083. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_szjkyAdminDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_szjkyAdminDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  4098. }//
  4099. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  4100. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  4101. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_szjkyTeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_szjkyTeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4120. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x020201AdminDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_x020201AdminDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4135. }//
  4136. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4137. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4138. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x020201TeacherDeskIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_x020201TeacherDeskIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4157. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_SCNUETAdminDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SCNUETAdminDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4172. }//
  4173. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4174. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4175. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_SCNUETTeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4194. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4195. _content = $$("div", {
  4196. className: "U_MD_D_KO",
  4197. "onmousedown": U.UF.C.closure(function (obj) {
  4198. //防止拖动图标即打开了桌面应用
  4199. U.MD.D.click(this, obj);
  4200. }, [_futianAdminDeskIconInfo[i]]),
  4201. "onclick": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_futianAdminDeskIconInfo[i]])
  4205. }, _frag); //
  4206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4209. }
  4210. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4211. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4212. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4213. continue
  4214. }
  4215. _content = $$("div", {
  4216. className: "U_MD_D_KO",
  4217. "onmousedown": U.UF.C.closure(function (obj) {
  4218. //防止拖动图标即打开了桌面应用
  4219. U.MD.D.click(this, obj);
  4220. }, [_futianTeacherDeskIconInfo[i]]),
  4221. "onclick": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_futianTeacherDeskIconInfo[i]])
  4225. }, _frag); //
  4226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4229. }
  4230. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4231. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4232. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4233. continue
  4234. }
  4235. _content = $$("div", {
  4236. className: "U_MD_D_KO",
  4237. "onmousedown": U.UF.C.closure(function (obj) {
  4238. //防止拖动图标即打开了桌面应用
  4239. U.MD.D.click(this, obj);
  4240. }, [_MingdeTeacherDeskIcon[i]]),
  4241. "onclick": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_MingdeTeacherDeskIcon[i]])
  4245. }, _frag); //
  4246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4249. }
  4250. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4251. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4252. _content = $$("div", {
  4253. className: "U_MD_D_KO",
  4254. "onmousedown": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_lhsAdminDesktopIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_lhsAdminDesktopIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4268. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4269. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4270. continue
  4271. }
  4272. _content = $$("div", {
  4273. className: "U_MD_D_KO",
  4274. "onmousedown": U.UF.C.closure(function (obj) {
  4275. //防止拖动图标即打开了桌面应用
  4276. U.MD.D.click(this, obj);
  4277. }, [_lhsteacherDesktopIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_lhsteacherDesktopIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4288. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4289. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4290. continue
  4291. }
  4292. _content = $$("div", {
  4293. className: "U_MD_D_KO",
  4294. "onmousedown": U.UF.C.closure(function (obj) {
  4295. //防止拖动图标即打开了桌面应用
  4296. U.MD.D.click(this, obj);
  4297. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4298. "onclick": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_zhoujiateacherDesktopIconInfo[i]])
  4302. }, _frag); //
  4303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4306. }
  4307. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4308. for (i = 0; i < _hanDeskIcon.length; i++) {
  4309. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4310. continue
  4311. }
  4312. _content = $$("div", {
  4313. className: "U_MD_D_KO",
  4314. "onmousedown": U.UF.C.closure(function (obj) {
  4315. //防止拖动图标即打开了桌面应用
  4316. U.MD.D.click(this, obj);
  4317. }, [_hanDeskIcon[i]]),
  4318. "onclick": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_hanDeskIcon[i]])
  4322. }, _frag); //
  4323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4326. }
  4327. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4328. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4329. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4330. continue
  4331. }
  4332. _content = $$("div", {
  4333. className: "U_MD_D_KO",
  4334. "onmousedown": U.UF.C.closure(function (obj) {
  4335. //防止拖动图标即打开了桌面应用
  4336. U.MD.D.click(this, obj);
  4337. }, [_orgStemDeskIcon[i]]),
  4338. "onclick": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_orgStemDeskIcon[i]])
  4342. }, _frag); //
  4343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4346. }
  4347. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4348. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4349. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4350. continue
  4351. }
  4352. _content = $$("div", {
  4353. className: "U_MD_D_KO",
  4354. "onmousedown": U.UF.C.closure(function (obj) {
  4355. //防止拖动图标即打开了桌面应用
  4356. U.MD.D.click(this, obj);
  4357. }, [_szulsDeskIcon[i]]),
  4358. "onclick": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_szulsDeskIcon[i]])
  4362. }, _frag); //
  4363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4366. }
  4367. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4368. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4369. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4370. continue
  4371. }
  4372. _content = $$("div", {
  4373. className: "U_MD_D_KO",
  4374. "onmousedown": U.UF.C.closure(function (obj) {
  4375. //防止拖动图标即打开了桌面应用
  4376. U.MD.D.click(this, obj);
  4377. }, [_orgDesktopIconInfo[i]]),
  4378. "onclick": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_orgDesktopIconInfo[i]])
  4382. }, _frag); //
  4383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4386. }
  4387. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4388. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4389. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4390. continue
  4391. }
  4392. _content = $$("div", {
  4393. className: "U_MD_D_KO",
  4394. "onmousedown": U.UF.C.closure(function (obj) {
  4395. //防止拖动图标即打开了桌面应用
  4396. U.MD.D.click(this, obj);
  4397. }, [_schoolDesktopIconInfo[i]]),
  4398. "onclick": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_schoolDesktopIconInfo[i]])
  4402. }, _frag); //
  4403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4406. }
  4407. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4408. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4409. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4410. continue
  4411. }
  4412. _content = $$("div", {
  4413. className: "U_MD_D_KO",
  4414. "onmousedown": U.UF.C.closure(function (obj) {
  4415. //防止拖动图标即打开了桌面应用
  4416. U.MD.D.click(this, obj);
  4417. }, [_GMteacherDesktopIconInfo[i]]),
  4418. "onclick": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_GMteacherDesktopIconInfo[i]])
  4422. }, _frag); //
  4423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4426. }
  4427. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4428. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4429. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4430. continue
  4431. }
  4432. _content = $$("div", {
  4433. className: "U_MD_D_KO",
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_SONGteacherDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_SONGteacherDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4446. }
  4447. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4448. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4449. _content = $$("div", {
  4450. className: "U_MD_D_KO",
  4451. "onmousedown": U.UF.C.closure(function (obj) {
  4452. //防止拖动图标即打开了桌面应用
  4453. U.MD.D.click(this, obj);
  4454. }, [_GMstudentDesktopIconInfo[i]]),
  4455. "onclick": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_GMstudentDesktopIconInfo[i]])
  4459. }, _frag); //
  4460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4465. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4466. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4467. continue
  4468. }
  4469. _content = $$("div", {
  4470. className: "U_MD_D_KO",
  4471. "onmousedown": U.UF.C.closure(function (obj) {
  4472. //防止拖动图标即打开了桌面应用
  4473. U.MD.D.click(this, obj);
  4474. }, [_tcTeacherDeskIconInfo[i]]),
  4475. "onclick": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_tcTeacherDeskIconInfo[i]])
  4479. }, _frag); //
  4480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4483. }
  4484. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4485. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4486. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4487. continue
  4488. }
  4489. _content = $$("div", {
  4490. className: "U_MD_D_KO",
  4491. "onmousedown": U.UF.C.closure(function (obj) {
  4492. //防止拖动图标即打开了桌面应用
  4493. U.MD.D.click(this, obj);
  4494. }, [_tcOrganizerDeskIconInfo[i]]),
  4495. "onclick": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_tcOrganizerDeskIconInfo[i]])
  4499. }, _frag); //
  4500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4503. }
  4504. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4505. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4506. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4507. continue
  4508. }
  4509. _content = $$("div", {
  4510. className: "U_MD_D_KO",
  4511. "onmousedown": U.UF.C.closure(function (obj) {
  4512. //防止拖动图标即打开了桌面应用
  4513. U.MD.D.click(this, obj);
  4514. }, [_szscTeacherDeskIconInfo[i]]),
  4515. "onclick": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_szscTeacherDeskIconInfo[i]])
  4519. }, _frag); //
  4520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4523. }
  4524. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4525. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4526. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4527. continue
  4528. }
  4529. _content = $$("div", {
  4530. className: "U_MD_D_KO",
  4531. "onmousedown": U.UF.C.closure(function (obj) {
  4532. //防止拖动图标即打开了桌面应用
  4533. U.MD.D.click(this, obj);
  4534. }, [_szscOrganizerDeskIconInfo[i]]),
  4535. "onclick": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_szscOrganizerDeskIconInfo[i]])
  4539. }, _frag); //
  4540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4543. }
  4544. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4545. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4546. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4547. continue
  4548. }
  4549. _content = $$("div", {
  4550. className: "U_MD_D_KO",
  4551. "onmousedown": U.UF.C.closure(function (obj) {
  4552. //防止拖动图标即打开了桌面应用
  4553. U.MD.D.click(this, obj);
  4554. }, [_nsfxTeacherDeskIconInfo[i]]),
  4555. "onclick": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_nsfxTeacherDeskIconInfo[i]])
  4559. }, _frag); //
  4560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4563. }
  4564. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4565. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4566. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4567. continue
  4568. }
  4569. _content = $$("div", {
  4570. className: "U_MD_D_KO",
  4571. "onmousedown": U.UF.C.closure(function (obj) {
  4572. //防止拖动图标即打开了桌面应用
  4573. U.MD.D.click(this, obj);
  4574. }, [_stiaTeacherDeskIconInfo[i]]),
  4575. "onclick": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_stiaTeacherDeskIconInfo[i]])
  4579. }, _frag); //
  4580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4583. }
  4584. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4585. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4586. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4587. continue
  4588. }
  4589. _content = $$("div", {
  4590. className: "U_MD_D_KO",
  4591. "onmousedown": U.UF.C.closure(function (obj) {
  4592. //防止拖动图标即打开了桌面应用
  4593. U.MD.D.click(this, obj);
  4594. }, [_szdjgTeacherDeskIconInfo[i]]),
  4595. "onclick": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_szdjgTeacherDeskIconInfo[i]])
  4599. }, _frag); //
  4600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4603. }
  4604. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4605. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4606. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4607. continue
  4608. }
  4609. _content = $$("div", {
  4610. className: "U_MD_D_KO",
  4611. "onmousedown": U.UF.C.closure(function (obj) {
  4612. //防止拖动图标即打开了桌面应用
  4613. U.MD.D.click(this, obj);
  4614. }, [_x010607TeacherDeskIconInfo[i]]),
  4615. "onclick": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x010607TeacherDeskIconInfo[i]])
  4619. }, _frag); //
  4620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4623. }
  4624. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4625. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4626. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4627. continue
  4628. }
  4629. _content = $$("div", {
  4630. className: "U_MD_D_KO",
  4631. "onmousedown": U.UF.C.closure(function (obj) {
  4632. //防止拖动图标即打开了桌面应用
  4633. U.MD.D.click(this, obj);
  4634. }, [_xhlyTeacherDeskIconInfo[i]]),
  4635. "onclick": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_xhlyTeacherDeskIconInfo[i]])
  4639. }, _frag); //
  4640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4643. }
  4644. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4645. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4646. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4647. continue
  4648. }
  4649. _content = $$("div", {
  4650. className: "U_MD_D_KO",
  4651. "onmousedown": U.UF.C.closure(function (obj) {
  4652. //防止拖动图标即打开了桌面应用
  4653. U.MD.D.click(this, obj);
  4654. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4655. "onclick": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4659. }, _frag); //
  4660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4665. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4666. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4667. continue
  4668. }
  4669. _content = $$("div", {
  4670. className: "U_MD_D_KO",
  4671. "onmousedown": U.UF.C.closure(function (obj) {
  4672. //防止拖动图标即打开了桌面应用
  4673. U.MD.D.click(this, obj);
  4674. }, [_x010503TeacherDeskIconInfo[i]]),
  4675. "onclick": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_x010503TeacherDeskIconInfo[i]])
  4679. }, _frag); //
  4680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4683. }
  4684. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4685. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4686. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4687. continue
  4688. }
  4689. _content = $$("div", {
  4690. className: "U_MD_D_KO",
  4691. "onmousedown": U.UF.C.closure(function (obj) {
  4692. //防止拖动图标即打开了桌面应用
  4693. U.MD.D.click(this, obj);
  4694. }, [_x010504TeacherDeskIconInfo[i]]),
  4695. "onclick": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_x010504TeacherDeskIconInfo[i]])
  4699. }, _frag); //
  4700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4703. }
  4704. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4705. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4706. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4707. continue
  4708. }
  4709. _content = $$("div", {
  4710. className: "U_MD_D_KO",
  4711. "onmousedown": U.UF.C.closure(function (obj) {
  4712. //防止拖动图标即打开了桌面应用
  4713. U.MD.D.click(this, obj);
  4714. }, [_x010505TeacherDeskIconInfo[i]]),
  4715. "onclick": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_x010505TeacherDeskIconInfo[i]])
  4719. }, _frag); //
  4720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4723. }
  4724. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4725. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4726. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4727. continue
  4728. }
  4729. _content = $$("div", {
  4730. className: "U_MD_D_KO",
  4731. "onmousedown": U.UF.C.closure(function (obj) {
  4732. //防止拖动图标即打开了桌面应用
  4733. U.MD.D.click(this, obj);
  4734. }, [_x010404TeacherDeskIconInfo[i]]),
  4735. "onclick": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010404TeacherDeskIconInfo[i]])
  4739. }, _frag); //
  4740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4743. }
  4744. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4745. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4746. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4747. continue
  4748. }
  4749. _content = $$("div", {
  4750. className: "U_MD_D_KO",
  4751. "onmousedown": U.UF.C.closure(function (obj) {
  4752. //防止拖动图标即打开了桌面应用
  4753. U.MD.D.click(this, obj);
  4754. }, [_x010204TeacherDeskIconInfo[i]]),
  4755. "onclick": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010204TeacherDeskIconInfo[i]])
  4759. }, _frag); //
  4760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4763. }
  4764. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4765. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4766. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4767. continue
  4768. }
  4769. _content = $$("div", {
  4770. className: "U_MD_D_KO",
  4771. "onmousedown": U.UF.C.closure(function (obj) {
  4772. //防止拖动图标即打开了桌面应用
  4773. U.MD.D.click(this, obj);
  4774. }, [_x320101TeacherDeskIconInfo[i]]),
  4775. "onclick": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x320101TeacherDeskIconInfo[i]])
  4779. }, _frag); //
  4780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4783. }
  4784. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4785. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4786. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4787. continue
  4788. }
  4789. _content = $$("div", {
  4790. className: "U_MD_D_KO",
  4791. "onmousedown": U.UF.C.closure(function (obj) {
  4792. //防止拖动图标即打开了桌面应用
  4793. U.MD.D.click(this, obj);
  4794. }, [_trailTeacherDeskIconInfo[i]]),
  4795. "onclick": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_trailTeacherDeskIconInfo[i]])
  4799. }, _frag); //
  4800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4803. }
  4804. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4805. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4806. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4807. continue
  4808. }
  4809. _content = $$("div", {
  4810. className: "U_MD_D_KO",
  4811. "onmousedown": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_trialTeacherDeskIconInfo[i]]),
  4815. "onclick": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_trialTeacherDeskIconInfo[i]])
  4819. }, _frag); //
  4820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4823. }
  4824. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4825. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4826. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4827. continue
  4828. }
  4829. _content = $$("div", {
  4830. className: "U_MD_D_KO",
  4831. "onmousedown": U.UF.C.closure(function (obj) {
  4832. //防止拖动图标即打开了桌面应用
  4833. U.MD.D.click(this, obj);
  4834. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4835. "onclick": U.UF.C.closure(function (obj) {
  4836. //防止拖动图标即打开了桌面应用
  4837. U.MD.D.click(this, obj);
  4838. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4839. }, _frag); //
  4840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4843. }
  4844. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4845. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4846. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4847. continue
  4848. }
  4849. _content = $$("div", {
  4850. className: "U_MD_D_KO",
  4851. "onmousedown": U.UF.C.closure(function (obj) {
  4852. //防止拖动图标即打开了桌面应用
  4853. U.MD.D.click(this, obj);
  4854. }, [_szsyTeacherDeskIconInfo[i]]),
  4855. "onclick": U.UF.C.closure(function (obj) {
  4856. //防止拖动图标即打开了桌面应用
  4857. U.MD.D.click(this, obj);
  4858. }, [_szsyTeacherDeskIconInfo[i]])
  4859. }, _frag); //
  4860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4863. }
  4864. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4865. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4866. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4867. continue
  4868. }
  4869. _content = $$("div", {
  4870. className: "U_MD_D_KO",
  4871. "onmousedown": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_PREPAITeacherDeskIcon[i]]),
  4875. "onclick": U.UF.C.closure(function (obj) {
  4876. //防止拖动图标即打开了桌面应用
  4877. U.MD.D.click(this, obj);
  4878. }, [_PREPAITeacherDeskIcon[i]])
  4879. }, _frag); //
  4880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4883. }
  4884. } else if ((_type == 1 || _type == 4) && _oid == "17dbf412-92de-11f0-9838-005056924926") {
  4885. for (i = 0; i < _x010511TeacherDeskIcon.length; i++) {
  4886. if (_role === 0 && _x010511TeacherDeskIcon[i].Url == 'testTeacher') {
  4887. continue
  4888. }
  4889. _content = $$("div", {
  4890. className: "U_MD_D_KO",
  4891. "onmousedown": U.UF.C.closure(function (obj) {
  4892. //防止拖动图标即打开了桌面应用
  4893. U.MD.D.click(this, obj);
  4894. }, [_x010511TeacherDeskIcon[i]]),
  4895. "onclick": U.UF.C.closure(function (obj) {
  4896. //防止拖动图标即打开了桌面应用
  4897. U.MD.D.click(this, obj);
  4898. }, [_x010511TeacherDeskIcon[i]])
  4899. }, _frag); //
  4900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511TeacherDeskIcon[i].style }, _iconcontent);
  4902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511TeacherDeskIcon[i].Name }, _iconcontent);
  4903. }
  4904. } else if ((_type == 1 || _type == 4) && _oid == "31631344-92db-11f0-9838-005056924926") {
  4905. for (i = 0; i < _x010103TeacherDeskIcon.length; i++) {
  4906. if (_role === 0 && _x010103TeacherDeskIcon[i].Url == 'testTeacher') {
  4907. continue
  4908. }
  4909. _content = $$("div", {
  4910. className: "U_MD_D_KO",
  4911. "onmousedown": U.UF.C.closure(function (obj) {
  4912. //防止拖动图标即打开了桌面应用
  4913. U.MD.D.click(this, obj);
  4914. }, [_x010103TeacherDeskIcon[i]]),
  4915. "onclick": U.UF.C.closure(function (obj) {
  4916. //防止拖动图标即打开了桌面应用
  4917. U.MD.D.click(this, obj);
  4918. }, [_x010103TeacherDeskIcon[i]])
  4919. }, _frag); //
  4920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103TeacherDeskIcon[i].style }, _iconcontent);
  4922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103TeacherDeskIcon[i].Name }, _iconcontent);
  4923. }
  4924. } else if ((_type == 1 || _type == 4) && _org == "cf30095b-87d5-11f0-9c7b-005056924926") {
  4925. for (i = 0; i < _zlteacherDeskIconInfo.length; i++) {
  4926. if (_role === 0 && _zlteacherDeskIconInfo[i].Url == 'testTeacher') {
  4927. continue
  4928. }
  4929. _content = $$("div", {
  4930. className: "U_MD_D_KO",
  4931. "onmousedown": U.UF.C.closure(function (obj) {
  4932. //防止拖动图标即打开了桌面应用
  4933. U.MD.D.click(this, obj);
  4934. }, [_zlteacherDeskIconInfo[i]]),
  4935. "onclick": U.UF.C.closure(function (obj) {
  4936. //防止拖动图标即打开了桌面应用
  4937. U.MD.D.click(this, obj);
  4938. }, [_zlteacherDeskIconInfo[i]])
  4939. }, _frag); //
  4940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlteacherDeskIconInfo[i].style }, _iconcontent);
  4942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlteacherDeskIconInfo[i].Name }, _iconcontent);
  4943. }
  4944. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4945. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4946. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4947. continue
  4948. }
  4949. _content = $$("div", {
  4950. className: "U_MD_D_KO",
  4951. "onmousedown": U.UF.C.closure(function (obj) {
  4952. //防止拖动图标即打开了桌面应用
  4953. U.MD.D.click(this, obj);
  4954. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4955. "onclick": U.UF.C.closure(function (obj) {
  4956. //防止拖动图标即打开了桌面应用
  4957. U.MD.D.click(this, obj);
  4958. }, [_demoCocoTeacherDeskIconInfo[i]])
  4959. }, _frag); //
  4960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4963. }
  4964. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4965. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4966. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4967. continue
  4968. }
  4969. _content = $$("div", {
  4970. className: "U_MD_D_KO",
  4971. "onmousedown": U.UF.C.closure(function (obj) {
  4972. //防止拖动图标即打开了桌面应用
  4973. U.MD.D.click(this, obj);
  4974. }, [_x010608TeacherDeskIconInfo[i]]),
  4975. "onclick": U.UF.C.closure(function (obj) {
  4976. //防止拖动图标即打开了桌面应用
  4977. U.MD.D.click(this, obj);
  4978. }, [_x010608TeacherDeskIconInfo[i]])
  4979. }, _frag); //
  4980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4983. }
  4984. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4985. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4986. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4987. continue
  4988. }
  4989. _content = $$("div", {
  4990. className: "U_MD_D_KO",
  4991. "onmousedown": U.UF.C.closure(function (obj) {
  4992. //防止拖动图标即打开了桌面应用
  4993. U.MD.D.click(this, obj);
  4994. }, [_x010611TeacherDeskIconInfo[i]]),
  4995. "onclick": U.UF.C.closure(function (obj) {
  4996. //防止拖动图标即打开了桌面应用
  4997. U.MD.D.click(this, obj);
  4998. }, [_x010611TeacherDeskIconInfo[i]])
  4999. }, _frag); //
  5000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  5002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  5003. }
  5004. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  5005. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  5006. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  5007. continue
  5008. }
  5009. _content = $$("div", {
  5010. className: "U_MD_D_KO",
  5011. "onmousedown": U.UF.C.closure(function (obj) {
  5012. //防止拖动图标即打开了桌面应用
  5013. U.MD.D.click(this, obj);
  5014. }, [_x010612TeacherDeskIconInfo[i]]),
  5015. "onclick": U.UF.C.closure(function (obj) {
  5016. //防止拖动图标即打开了桌面应用
  5017. U.MD.D.click(this, obj);
  5018. }, [_x010612TeacherDeskIconInfo[i]])
  5019. }, _frag); //
  5020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  5022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  5023. }
  5024. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  5025. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  5026. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  5027. continue
  5028. }
  5029. _content = $$("div", {
  5030. className: "U_MD_D_KO",
  5031. "onmousedown": U.UF.C.closure(function (obj) {
  5032. //防止拖动图标即打开了桌面应用
  5033. U.MD.D.click(this, obj);
  5034. }, [_tianyuanTeacherDeskIconInfo[i]]),
  5035. "onclick": U.UF.C.closure(function (obj) {
  5036. //防止拖动图标即打开了桌面应用
  5037. U.MD.D.click(this, obj);
  5038. }, [_tianyuanTeacherDeskIconInfo[i]])
  5039. }, _frag); //
  5040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  5042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  5043. }
  5044. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  5045. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  5046. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  5047. continue
  5048. }
  5049. _content = $$("div", {
  5050. className: "U_MD_D_KO",
  5051. "onmousedown": U.UF.C.closure(function (obj) {
  5052. //防止拖动图标即打开了桌面应用
  5053. U.MD.D.click(this, obj);
  5054. }, [_MOAITeacherDeskIcon[i]]),
  5055. "onclick": U.UF.C.closure(function (obj) {
  5056. //防止拖动图标即打开了桌面应用
  5057. U.MD.D.click(this, obj);
  5058. }, [_MOAITeacherDeskIcon[i]])
  5059. }, _frag); //
  5060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  5062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  5063. }
  5064. } else {
  5065. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  5066. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  5067. continue
  5068. }
  5069. _content = $$("div", {
  5070. className: "U_MD_D_KO",
  5071. "onmousedown": U.UF.C.closure(function (obj) {
  5072. //防止拖动图标即打开了桌面应用
  5073. U.MD.D.click(this, obj);
  5074. }, [_teacherDesktopIconInfo[i]]),
  5075. "onclick": U.UF.C.closure(function (obj) {
  5076. //防止拖动图标即打开了桌面应用
  5077. U.MD.D.click(this, obj);
  5078. }, [_teacherDesktopIconInfo[i]])
  5079. }, _frag); //
  5080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  5082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  5083. }
  5084. }
  5085. } else {
  5086. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  5087. _content = $$("div", {
  5088. className: "U_MD_D_KO",
  5089. style: { 'width': '124px', 'height': '145px' },
  5090. "onmousedown": U.UF.C.closure(function (obj) {
  5091. //防止拖动图标即打开了桌面应用
  5092. U.MD.D.click(this, obj);
  5093. }, [_easyDesktopIconInfo[i]]),
  5094. "onclick": U.UF.C.closure(function (obj) {
  5095. //防止拖动图标即打开了桌面应用
  5096. U.MD.D.click(this, obj);
  5097. }, [_easyDesktopIconInfo[i]])
  5098. }, _frag); //
  5099. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  5100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  5101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  5102. }
  5103. }
  5104. if (type == 1) {
  5105. //加载好后给图标定位
  5106. U.MD.D.iconPostion($(_frag).Child());
  5107. } else {
  5108. //加载好后给图标定位
  5109. U.MD.D.iconPostion2($(_frag).Child());
  5110. }
  5111. //把图标加载到页面
  5112. el.appendChild(_frag);
  5113. if(_type == 2){
  5114. U.selectEl(".U_MD_D_RW").css("display", "none");
  5115. }
  5116. }
  5117. /**
  5118. * 显示任务栏
  5119. *
  5120. * @param {element} 桌面元素
  5121. */
  5122. U.MD.D.I.displayTaskbar = function (el) {
  5123. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  5124. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  5125. //任务栏位置变化
  5126. U.selectEl(el).css({ "bottom": "0px" });
  5127. //桌面位置变话
  5128. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  5129. }
  5130. }
  5131. //#region 桌面图标拖动逻辑
  5132. /**
  5133. * 桌面排列图标
  5134. *
  5135. * @param {element} 桌面元素
  5136. * @param {object} 上下相距的距离
  5137. * @param {object} 左右相距的距离
  5138. * @return {object} 命名空间
  5139. */
  5140. U.MD.D.iconPostion = function (childs, top, left) {
  5141. var i; //用于循环处理
  5142. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  5143. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  5144. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5145. for (i = 0; i < childs.length; i++) {
  5146. //如果竖排top超过了范围处理
  5147. if (top + 95 > US.height - 10) {
  5148. //left超过了页面范围处理,则向上重叠打印处理
  5149. if ((left + 180) > US.width) {
  5150. top -= 110;
  5151. left -= 90;
  5152. }
  5153. //没有超过范围,那么left+90添加到下一个竖排打印
  5154. else {
  5155. left += 90;
  5156. top = 15;
  5157. };
  5158. }
  5159. //给图标的位置赋值
  5160. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  5161. if (i < childs.length - 1) {
  5162. //页面图标每次向下加95
  5163. top += 95;
  5164. }
  5165. }
  5166. //返回最后调用的图标的位置
  5167. return [top, left];
  5168. }
  5169. /**
  5170. * 桌面排列图标
  5171. *
  5172. * @param {element} 桌面元素
  5173. * @param {object} 上下相距的距离
  5174. * @param {object} 左右相距的距离
  5175. * @return {object} 命名空间
  5176. */
  5177. U.MD.D.iconPostion2 = function (childs, top, left) {
  5178. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5179. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5180. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5181. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5182. for (i = 0; i < childs.length; i++) {
  5183. //如果竖排top超过了范围处理
  5184. if (left + 150 > US.width - 10) {
  5185. //left超过了页面范围处理,则向上重叠打印处理
  5186. if ((top + 180) > US.Height) {
  5187. top -= 150;
  5188. left -= 150;
  5189. }
  5190. //没有超过范围,那么left+90添加到下一个竖排打印
  5191. else {
  5192. top += 150;
  5193. left = ol;
  5194. };
  5195. }
  5196. //给图标的位置赋值
  5197. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5198. if (i < childs.length - 1) {
  5199. //页面图标每次向下加95
  5200. left += 150;
  5201. }
  5202. }
  5203. //返回最后调用的图标的位置
  5204. return [top, left];
  5205. }
  5206. /**
  5207. * 桌面点击事件逻辑
  5208. *
  5209. * @param {element} 桌面元素
  5210. * @param {object} 上下相距的距离
  5211. * @param {object} 左右相距的距离
  5212. * @return {object} 命名空间
  5213. */
  5214. U.MD.D.click = function (el, obj) {
  5215. var _buttonnumber = event.button; //点击的按钮的事件值
  5216. var _userinfo = US.userInfo;
  5217. U.UF.EV.stopBubble(); //阻止向上冒泡
  5218. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5219. if (_buttonnumber < 2) {
  5220. //如果是click事件的处理
  5221. if (event.type == "click") {
  5222. //如果元素在mousemove事件中没有移动则出发click事件
  5223. if (!U.MD.D.I.IsDrag) {
  5224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5225. U.alert("请先登录您的账号!");
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. //打开应用处理
  5231. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5232. }
  5233. }
  5234. }
  5235. //如果是mouse事件的处理
  5236. else {
  5237. if (US.Config.type == '1') {
  5238. //拖动处理,添加拖动和拖动结束事件
  5239. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5240. }
  5241. }
  5242. U.MD.D.I.IsDrag = false;
  5243. }
  5244. }
  5245. /**
  5246. * 拖动的处理
  5247. *
  5248. */
  5249. U.MD.D.iconMove = function () {
  5250. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5251. U.MD.D.I.IsDrag = true;
  5252. }
  5253. /**
  5254. * 拖动结束后,这里是定位处理,以网状的形式定位
  5255. *
  5256. * @param {element} 拖动的元素
  5257. * @return {object} 命名空间
  5258. */
  5259. U.MD.D.iconUp = function (el) {
  5260. var _top = 15,
  5261. _left = 20,
  5262. _margin,
  5263. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5264. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5265. if (_positioninfo["OT"] > 15) {
  5266. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5267. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5268. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5269. }
  5270. if (_positioninfo["OL"] > 20) {
  5271. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5272. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5273. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5274. }
  5275. //while循环判断么一个重叠的元素
  5276. do {
  5277. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5278. _top = _positioninfo[0] + 95; //得到定位后的top
  5279. _left = _positioninfo[1]; //得到定位后的left
  5280. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5281. }
  5282. /**
  5283. * 判断拖动后图标是否重叠
  5284. *
  5285. * @param {element} 拖动的元素
  5286. * @param {element} 桌面所有的元素
  5287. * @param {array} 拖动元素的位置
  5288. ----------[0] 上 top
  5289. ----------[1] 左 left
  5290. * @return {object} 命名空间
  5291. */
  5292. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5293. //循环所有的图标
  5294. for (var i = 0; i < childs.length; i++) {
  5295. //判断有没有和该图标诶子重叠的元素
  5296. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5297. return childs[i]; //如果有返回
  5298. }
  5299. }
  5300. }
  5301. //#endregion
  5302. //#endregion
  5303. //#region 桌面应用
  5304. /**
  5305. * 打开应用
  5306. *
  5307. * @param {string} 类型
  5308. -----------------Disk 网盘系统
  5309. -----------------PDisk 学习系统网盘
  5310. -----------------Poto 图片
  5311. -----------------Video 视频
  5312. -----------------Music 音乐
  5313. -----------------Word word
  5314. -----------------Excel excel
  5315. -----------------Txt 记事本
  5316. -----------------PB 学习系统
  5317. -----------------Blog 朋友圈系统
  5318. -----------------FTP ftp系统
  5319. -----------------Group 好友群
  5320. -----------------SY 首页系统
  5321. -----------------Set 个人设置
  5322. -----------------XSet 系统设置
  5323. -----------------App 我们所有的app
  5324. -----------------BC c.1473.cn 平台
  5325. -----------------CWeb d.1473.cn 变成平台
  5326. -----------------其他的外联系统 我们统一用iframe打开
  5327. * @param {array} 类型
  5328. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5329. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5330. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5331. 如果第一个参数为其他,则无第二个参数
  5332. * @returns {array}
  5333. */
  5334. window.addEventListener('message', function (e) { // 监听 message 事件
  5335. // alert(e.data.type);
  5336. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5337. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5338. //3是展示全部阶段 2学生 1老师 4专家
  5339. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5340. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5341. //3是展示全部阶段 2学生 1老师 4专家
  5342. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5343. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5344. //3是展示全部阶段 2学生 1老师 4专家
  5345. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5346. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5347. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5348. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5349. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5350. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5351. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5352. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5353. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5354. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5355. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5356. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5357. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5358. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5359. //3是展示全部阶段 2学生 1老师 4专家
  5360. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5361. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5362. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5363. U.MD.D.I.selectUser();
  5364. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5365. var _formel = document.getElementById("study");
  5366. U.UF.F.windowZooming(_formel);
  5367. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5368. var _formel = document.getElementById("studyDetail");
  5369. U.UF.F.windowZooming(_formel);
  5370. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5371. var _formel = document.getElementById("studyDetail");
  5372. U.UF.F.windowZooming(_formel);
  5373. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5374. var _formel = document.getElementById("studentStudy");
  5375. U.UF.F.windowZooming(_formel);
  5376. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5377. // var _formel = document.getElementById("study");
  5378. //如果最大化了,那么就把他缩小
  5379. // if (_formel.ismaximize) {
  5380. // return;
  5381. // }
  5382. // U.UF.F.windowZooming(_formel);
  5383. // U.UF.F.topWindow(_formel);
  5384. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5385. // var _formel = document.getElementById("studyDetail");
  5386. //如果最大化了,那么就把他缩小
  5387. // if (_formel.ismaximize) {
  5388. // return;
  5389. // }
  5390. // U.UF.F.windowZooming(_formel);
  5391. // U.UF.F.topWindow(_formel);
  5392. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5393. // var _formel = document.getElementById("studentStudy");
  5394. // if (_formel.ismaximize) {
  5395. // return;
  5396. // }
  5397. // U.UF.F.windowZooming(_formel);
  5398. // U.UF.F.topWindow(_formel);
  5399. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5400. var _formel = document.getElementById("study");
  5401. // if (_formel.ismaximize) {
  5402. // return;
  5403. // }
  5404. // U.UF.F.windowZooming(_formel);
  5405. U.UF.F.topWindow(_formel);
  5406. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5407. var _formel = document.getElementById("studentIndex");
  5408. U.UF.F.windowZooming(_formel);
  5409. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5410. var _formel = document.getElementById("studyDetailS");
  5411. U.UF.F.windowZooming(_formel);
  5412. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5413. var _formel = document.getElementById("studioIndex");
  5414. U.UF.F.windowZooming(_formel);
  5415. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5416. var _formel = document.getElementById("studyDetailStudio");
  5417. U.UF.F.windowZooming(_formel);
  5418. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5419. var _formel = document.getElementById("studyDetailStudio");
  5420. U.UF.F.windowZooming(_formel);
  5421. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5422. var _formel = document.getElementById("studyDetailNT");
  5423. U.UF.F.windowZooming(_formel);
  5424. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5425. var _formel = document.getElementById("studyDetailS");
  5426. U.UF.F.windowZooming(_formel);
  5427. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5428. var _formel = document.getElementById("studyDetailS");
  5429. U.UF.F.topWindow(_formel);
  5430. } else if (e.data.tools && e.data.tools == "1") {
  5431. // U.MD.D.I.openApplication("whiteboard")
  5432. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5433. } else if (e.data.tools && e.data.tools == "2") {
  5434. U.MD.D.I.openApplication("note")
  5435. } else if (e.data.tools && e.data.tools == "3") {
  5436. // U.MD.D.I.openApplication("mind")
  5437. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5438. } else if (e.data.tools && e.data.tools == "4") {
  5439. U.MD.D.I.openApplication("investigation")
  5440. } else if (e.data.tools && e.data.tools == "6") {
  5441. // U.MD.D.I.openApplication("doc")
  5442. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5443. } else if (e.data.tools && e.data.tools == "7") {
  5444. // U.MD.D.I.openApplication("mindNetwork")
  5445. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5446. } else if (e.data.tools && e.data.tools == "8") {
  5447. U.MD.D.I.openApplication("library")
  5448. } else if (e.data.tools && e.data.tools == "17") {
  5449. U.MD.D.I.openApplication("stuLibrary")
  5450. } else if (e.data.tools && e.data.tools == "18") {
  5451. U.MD.D.I.openApplication("train")
  5452. } else if (e.data.tools && e.data.tools == "21") {
  5453. U.MD.D.I.openApplication("program")
  5454. } else if (e.data.tools && e.data.tools == "22") {
  5455. U.MD.D.I.openApplication("AIprogram2")
  5456. } else if (e.data.tools && e.data.tools == "23") {
  5457. U.MD.D.I.openApplication("Pythonprogram")
  5458. } else if (e.data.tools && e.data.tools == "24") {
  5459. U.MD.D.I.openApplication("AIprogram")
  5460. } else if (e.data.tools && e.data.tools == "25") {
  5461. U.MD.D.I.openApplication("sys")
  5462. } else if (e.data.tools && e.data.tools == "26") {
  5463. // U.MD.D.I.openApplication("courseDesign")
  5464. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5465. } else if (e.data.tools && e.data.tools == "31") {
  5466. U.MD.D.I.openApplication("netWorkPanel")
  5467. } else if (e.data.tools && e.data.tools == "32") {
  5468. U.MD.D.I.openApplication("codeEdit")
  5469. } else if (e.data.tools && e.data.tools == "57") {
  5470. U.MD.D.I.openApplication("CocoPi")
  5471. } else if (e.data.tools && e.data.tools == "63") {
  5472. U.MD.D.I.openApplication("Wood")
  5473. } else if (e.data.tools && e.data.tools == "58") {
  5474. U.MD.D.I.openApplication("car")
  5475. } else if (e.data.tools && e.data.tools == "59") {
  5476. U.MD.D.I.openApplication("lineSearch")
  5477. } else if (e.data.tools && e.data.tools == "60") {
  5478. U.MD.D.I.openApplication("deepLearning")
  5479. } else if (e.data.tools && e.data.tools == "61") {
  5480. U.MD.D.I.openApplication("allHistory")
  5481. } else if (e.data.tools && e.data.tools == "28") {
  5482. U.MD.D.I.openApplication("translation")
  5483. } else if (e.data.tools && e.data.tools == "37") {
  5484. U.MD.D.I.openApplication("mohe")
  5485. } else if (e.data.tools && e.data.tools == "38") {
  5486. U.MD.D.I.openApplication("24game")
  5487. } else if (e.data.tools && e.data.tools == "39") {
  5488. U.MD.D.I.openApplication("GeoGebra")
  5489. } else if (e.data.tools && e.data.tools == "43") {
  5490. U.MD.D.I.openApplication("studentEvaluate")
  5491. } else if (e.data.tools && e.data.tools == "44") {
  5492. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5493. } else if (e.data.tools && e.data.tools == "46") {
  5494. U.MD.D.I.openApplication("project")
  5495. } else if (e.data.tools && e.data.tools == "71") {
  5496. U.MD.D.I.openApplication("aigptCourse")
  5497. } else if (e.data.tools && e.data.tools == "72") {
  5498. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5499. } else if (e.data.tools && e.data.tools == "1s") {
  5500. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5501. } else if (e.data.tools && e.data.tools == "3s") {
  5502. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5503. } else if (e.data.tools && e.data.tools == "6s") {
  5504. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5505. } else if (e.data.tools && e.data.tools == "1studio") {
  5506. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5507. } else if (e.data.tools && e.data.tools == "3studio") {
  5508. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5509. } else if (e.data.tools && e.data.tools == "6studio") {
  5510. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5511. } else if (e.data.tools && e.data.tools == "3y") {
  5512. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5513. } else if (e.data.tools && e.data.tools == "73y") {
  5514. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5515. } else if (e.data.tools && e.data.tools == "1y") {
  5516. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5517. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5518. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5519. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5520. U.MD.D.I.openApplication("AIAnalyse")
  5521. } else if (e.data.tools && e.data.tools == "1teacher") {
  5522. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5523. } else if (e.data.tools && e.data.tools == "3teacher") {
  5524. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5525. } else if (e.data.tools && e.data.tools == "7teacher") {
  5526. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5527. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5528. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5529. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5530. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5531. } else if (e.data.tools && e.data.tools == "1E") {
  5532. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5533. } else if (e.data.tools && e.data.tools == "3E") {
  5534. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5535. } else if (e.data.tools && e.data.tools == "57y") {
  5536. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5537. } else if (e.data.tools && e.data.tools == "57u") {
  5538. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5539. } else if (e.data.tools && e.data.tools == "57teacher") {
  5540. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5541. } else if (e.data.tools && e.data.tools == "64") {
  5542. U.MD.D.I.openApplication("AIChat")
  5543. } else if (e.data.tools && e.data.tools == "66") {
  5544. U.MD.D.I.openApplication("formulaEdi")
  5545. } else if (e.data.tools && e.data.tools == "67") {
  5546. U.MD.D.I.openApplication("molStr")
  5547. } else if (e.data.tools && e.data.tools == "68") {
  5548. U.MD.D.I.openApplication("timeAxis")
  5549. } else if (e.data.tools && e.data.tools == "openCourse") {
  5550. let _data = {
  5551. typea: e.data.typea || '',
  5552. typeb: e.data.typeb || '',
  5553. typed: e.data.typed || '',
  5554. }
  5555. U.MD.D.I.openInApplication("index", _data)
  5556. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5557. let _data = {
  5558. classid: e.data.classid || '',
  5559. }
  5560. U.MD.D.I.openInApplication("dataClass", _data)
  5561. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5562. let _data = {
  5563. cid: e.data.cid || '',
  5564. gid: e.data.gid || '',
  5565. }
  5566. U.MD.D.I.openInApplication("opencCscl", _data)
  5567. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5568. U.MD.D.I.openApplication("dataBoardTest")
  5569. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5570. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5571. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5572. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5573. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5574. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5575. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5576. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5577. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5578. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5579. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5580. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5581. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5582. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5583. } else if (e.data.tools && e.data.tools == "loginSz") {
  5584. U.MD.D.I.openInApplication("loginSz")
  5585. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5586. if ($('#classroom_observation_board')[0]) {
  5587. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5588. }
  5589. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5590. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5591. if ($('#classroom_observation_ob_comment')[0]) {
  5592. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5593. }
  5594. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5595. } else if (e.data.tools && e.data.tools == "logout") {
  5596. U.MD.U.LO.logoutSystem()
  5597. } else if (e.data.tools && e.data.tools == "getLogin") {
  5598. let _iframe = $('#UI_Login')[0];
  5599. if (_iframe) {
  5600. var userInfo = US.userInfo;
  5601. var type = 2
  5602. if (userInfo && userInfo.userid) {
  5603. type = 1
  5604. }
  5605. _contentWindow = _iframe.contentWindow;
  5606. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5607. }
  5608. }
  5609. });
  5610. U.MD.D.I.selectUser = function () {
  5611. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5612. if (res.value[0].length > 0) {
  5613. US.userInfo = res.value[0][0];
  5614. $(".userName")[0].innerHTML = US.userInfo.username;
  5615. }
  5616. }, [], { "type": "GET", "withCredentials": true });
  5617. }
  5618. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5619. var _userinfo = US.userInfo, //登录用户信息
  5620. _userid = US.userInfo.userid, //登录用户id
  5621. _oid = _userinfo.organizeid,
  5622. _type = US.userInfo.type,
  5623. _org = US.userInfo.org,
  5624. _role = US.userInfo.role,
  5625. _classId = US.userInfo.classid;
  5626. if (_type == 4) {
  5627. tType = 4
  5628. }
  5629. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5630. if (opArray.includes(str)) {
  5631. let _str = str
  5632. if (str == 'appStore') {
  5633. _str = "cocoFlow"
  5634. } else if (str == "futureClass") {
  5635. _str = "cocoNote"
  5636. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5637. _str = "IntelligentForm"
  5638. } else if (str == "testStudent" || str == "testStudentSies") {
  5639. _str = "TeacherCenter"
  5640. }
  5641. try {
  5642. if (data) {
  5643. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5644. } else {
  5645. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5646. }
  5647. } catch (error) {
  5648. console.log(error);
  5649. }
  5650. }
  5651. switch (str) {
  5652. case "studyDetailNT": //无终端模式
  5653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5654. setTimeout(() => {
  5655. U.MD.U.L.login();
  5656. }, 2000);
  5657. } else {
  5658. _formdiv = new U.UF.UI.form(
  5659. "课程详情",
  5660. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5661. "id": "studyDetailNT",
  5662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5668. break;
  5669. }
  5670. case "studyDetail":
  5671. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5672. setTimeout(() => {
  5673. U.MD.U.L.login();
  5674. }, 2000);
  5675. } else {
  5676. _formdiv = new U.UF.UI.form(
  5677. "课程详情",
  5678. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5679. "id": "studyDetail",
  5680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5686. break;
  5687. }
  5688. case "studyDetailTrain":
  5689. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5690. setTimeout(() => {
  5691. U.MD.U.L.login();
  5692. }, 2000);
  5693. } else {
  5694. _formdiv = new U.UF.UI.form(
  5695. "培训详情",
  5696. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5697. "id": "studyDetailTrain",
  5698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5704. break;
  5705. }
  5706. case "studyDetailS":
  5707. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5708. setTimeout(() => {
  5709. U.MD.U.L.login();
  5710. }, 2000);
  5711. } else {
  5712. _formdiv = new U.UF.UI.form(
  5713. "项目详情",
  5714. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5715. "id": "studyDetailS",
  5716. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. break;
  5723. }
  5724. case "studyDetailStudio":
  5725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5726. setTimeout(() => {
  5727. U.MD.U.L.login();
  5728. }, 2000);
  5729. } else {
  5730. _formdiv = new U.UF.UI.form(
  5731. "工作详情",
  5732. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5733. "id": "studyDetailStudio",
  5734. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5740. break;
  5741. }
  5742. case "studyDetailS5":
  5743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5744. setTimeout(() => {
  5745. U.MD.U.L.login();
  5746. }, 2000);
  5747. } else {
  5748. _formdiv = new U.UF.UI.form(
  5749. "项目详情",
  5750. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5751. "id": "studyDetailS",
  5752. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. }
  5760. case "studyDetailGM":
  5761. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5762. setTimeout(() => {
  5763. U.MD.U.L.login();
  5764. }, 2000);
  5765. } else {
  5766. _formdiv = new U.UF.UI.form(
  5767. "课程详情",
  5768. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5769. "id": "studyDetail",
  5770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5776. break;
  5777. }
  5778. case "hanUrl":
  5779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5780. setTimeout(() => {
  5781. U.MD.U.L.login();
  5782. }, 2000);
  5783. } else {
  5784. _formdiv = new U.UF.UI.form(
  5785. "汉字宫",
  5786. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5787. "id": "hanUrl",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5794. break;
  5795. }
  5796. case "index":
  5797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5798. setTimeout(() => {
  5799. U.MD.U.L.login();
  5800. }, 2000);
  5801. } else {
  5802. _formdiv = new U.UF.UI.form(
  5803. "课程中心",
  5804. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  5805. "id": "study",
  5806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5812. break;
  5813. }
  5814. case "dataClass":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "数据报告",
  5822. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5823. "id": "dataClass",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5830. break;
  5831. }
  5832. case "opencCscl":
  5833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5834. setTimeout(() => {
  5835. U.MD.U.L.login();
  5836. }, 2000);
  5837. } else {
  5838. _formdiv = new U.UF.UI.form(
  5839. "协同建构",
  5840. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5841. "id": "futureClass",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/futureClass.png)" }, "name": "协同建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5848. break;
  5849. }
  5850. case "opencCscl2":
  5851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5852. setTimeout(() => {
  5853. U.MD.U.L.login();
  5854. }, 2000);
  5855. } else {
  5856. _formdiv = new U.UF.UI.form(
  5857. "跨学科学习平台",
  5858. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5859. "id": "futureClass",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. }
  5868. case "openCourseUpdate":
  5869. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5870. setTimeout(() => {
  5871. U.MD.U.L.login();
  5872. }, 2000);
  5873. } else {
  5874. _formdiv = new U.UF.UI.form(
  5875. "课程管理",
  5876. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5877. "id": "openCourseUpdate",
  5878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. break;
  5884. }
  5885. case "openNewCourseUpdate":
  5886. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5887. setTimeout(() => {
  5888. U.MD.U.L.login();
  5889. }, 2000);
  5890. } else {
  5891. _formdiv = new U.UF.UI.form(
  5892. "课程管理",
  5893. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5894. "id": "openCourseUpdate",
  5895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. break;
  5901. }
  5902. case "openCoursePptUpdate":
  5903. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5904. setTimeout(() => {
  5905. U.MD.U.L.login();
  5906. }, 2000);
  5907. } else {
  5908. _formdiv = new U.UF.UI.form(
  5909. "课程管理",
  5910. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5911. "id": "openCourseUpdate",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. break;
  5918. }
  5919. case "openCourseEUpdate":
  5920. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5921. setTimeout(() => {
  5922. U.MD.U.L.login();
  5923. }, 2000);
  5924. } else {
  5925. _formdiv = new U.UF.UI.form(
  5926. "课程管理",
  5927. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5928. "id": "openCourseUpdate",
  5929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, { "style": { "height": "36px" } }).form; //创建窗体
  5934. break;
  5935. }
  5936. case "openCourseAiUpdate":
  5937. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5938. setTimeout(() => {
  5939. U.MD.U.L.login();
  5940. }, 2000);
  5941. } else {
  5942. _formdiv = new U.UF.UI.form(
  5943. "课程管理",
  5944. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5945. "id": "openCourseUpdate",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. break;
  5952. }
  5953. case "openCourseAiUpdate2":
  5954. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5955. setTimeout(() => {
  5956. U.MD.U.L.login();
  5957. }, 2000);
  5958. } else {
  5959. _formdiv = new U.UF.UI.form(
  5960. "课程管理",
  5961. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5962. "id": "openCourseUpdate",
  5963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. break;
  5969. }
  5970. case "openCourseNewUpdate":
  5971. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5972. setTimeout(() => {
  5973. U.MD.U.L.login();
  5974. }, 2000);
  5975. } else {
  5976. _formdiv = new U.UF.UI.form(
  5977. "课程管理",
  5978. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5979. "id": "openCourseUpdate",
  5980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5981. "onresize": function () { }
  5982. }, {
  5983. closecallback: function () { }
  5984. }, { "style": { "height": "36px" } }).form; //创建窗体
  5985. break;
  5986. }
  5987. case "inviteLoginSz":
  5988. _formdiv = new U.UF.UI.form(
  5989. "随机码登录",
  5990. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5991. "id": "loginSz",
  5992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5993. "onresize": function () { }
  5994. }, {
  5995. closecallback: function () { }
  5996. }, { "style": { "height": "36px" } }).form; //创建窗体
  5997. break;
  5998. case "loginSz":
  5999. _formdiv = new U.UF.UI.form(
  6000. "教师登录",
  6001. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  6002. "id": "loginSz",
  6003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. break;
  6009. case "teacher":
  6010. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6011. setTimeout(() => {
  6012. U.MD.U.L.login();
  6013. }, 2000);
  6014. } else {
  6015. _formdiv = new U.UF.UI.form(
  6016. "教师管理",
  6017. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6018. "id": "teacher",
  6019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. break;
  6025. }
  6026. case "dataBoardSZArea":
  6027. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6028. setTimeout(() => {
  6029. U.MD.U.L.login();
  6030. }, 2000);
  6031. } else {
  6032. _formdiv = new U.UF.UI.form(
  6033. "综合数据看板",
  6034. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6035. "id": "dataBoardSZArea",
  6036. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6037. "onresize": function () { }
  6038. }, {
  6039. closecallback: function () { }
  6040. }, { "style": { "height": "36px" } }).form; //创建窗体
  6041. break;
  6042. }
  6043. case "dataBoardSZCity":
  6044. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6045. setTimeout(() => {
  6046. U.MD.U.L.login();
  6047. }, 2000);
  6048. } else {
  6049. _formdiv = new U.UF.UI.form(
  6050. "综合数据看板",
  6051. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6052. "id": "dataBoardSZCity",
  6053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. break;
  6059. }
  6060. case "classroom_observation_board":
  6061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6062. setTimeout(() => {
  6063. U.MD.U.L.login();
  6064. }, 2000);
  6065. } else {
  6066. _formdiv = new U.UF.UI.form(
  6067. "课堂观察",
  6068. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid=" + data }), {
  6069. "id": "classroom_observation_board",
  6070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6071. "onresize": function () { }
  6072. }, {
  6073. closecallback: function () { }
  6074. }, { "style": { "height": "36px" } }).form; //创建窗体
  6075. break;
  6076. }
  6077. case "classroom_observation_ob_comment":
  6078. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6079. setTimeout(() => {
  6080. U.MD.U.L.login();
  6081. }, 2000);
  6082. } else {
  6083. _formdiv = new U.UF.UI.form(
  6084. "课堂审核",
  6085. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid=" + data }), {
  6086. "id": "classroom_observation_ob_comment",
  6087. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. break;
  6093. }
  6094. case "gptConfig":
  6095. _formdiv = new U.UF.UI.form(
  6096. data.name ? data.name : "应用中心",
  6097. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  6098. "id": "gptConfig" + data.id,
  6099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. break;
  6105. case "testDetail":
  6106. _formdiv = new U.UF.UI.form(
  6107. "表单填写",
  6108. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  6109. "id": "testDetail" + data,
  6110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. break;
  6116. }
  6117. }
  6118. U.MD.D.I.openApplication = function (str, obj, info) {
  6119. obj = obj || {};
  6120. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6121. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6122. _userinfo = US.userInfo, //登录用户信息
  6123. _userid = obj.userid || US.userInfo.userid, //登录用户id
  6124. _oid = obj.organizeid || _userinfo.organizeid,
  6125. _type = US.userInfo.type,
  6126. _org = obj.org || US.userInfo.org,
  6127. _role = US.userInfo.role,
  6128. _classId = US.userInfo.classid,
  6129. _TscreenType = 1
  6130. _screenType = 2,
  6131. _SscreenType = 3;
  6132. let iframeBool = true
  6133. if (U.UF.UI.form.allForm[str]) {
  6134. iframeBool = false
  6135. }
  6136. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6137. return;
  6138. }
  6139. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6140. if (opArray.includes(str)) {
  6141. let _str = str
  6142. if (str == 'appStore') {
  6143. _str = "cocoFlow"
  6144. } else if (str == "futureClass") {
  6145. _str = "cocoNote"
  6146. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6147. _str = "IntelligentForm"
  6148. } else if (str == "testStudent" || str == "testStudentSies") {
  6149. _str = "TeacherCenter"
  6150. }
  6151. try {
  6152. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6153. } catch (error) {
  6154. console.log(error);
  6155. }
  6156. }
  6157. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6158. switch (str) {
  6159. case "studnetProject": //好友打开
  6160. _formdiv = new U.UF.UI.form(
  6161. "我的项目",
  6162. $$("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 }), {
  6163. "id": "studnetProject",
  6164. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "studentEvaluate": //好友打开
  6172. _formdiv = new U.UF.UI.form(
  6173. "我的评价",
  6174. $$("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 }), {
  6175. "id": "studentEvaluate",
  6176. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "my":
  6184. _formdiv = new U.UF.UI.form(
  6185. "我的资料",
  6186. $$("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 }), {
  6187. "id": "my",
  6188. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "program":
  6196. _formdiv = new U.UF.UI.form(
  6197. "编程平台",
  6198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6199. "id": "program",
  6200. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _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); } }
  6206. break;
  6207. case "library":
  6208. _formdiv = new U.UF.UI.form(
  6209. "素材库",
  6210. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6211. "id": "library",
  6212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. _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); } }
  6218. break;
  6219. case "whiteboard":
  6220. _formdiv = new U.UF.UI.form(
  6221. "电子白板",
  6222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6223. "id": "whiteboard",
  6224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _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); } }
  6230. break;
  6231. case "investigation":
  6232. _formdiv = new U.UF.UI.form(
  6233. "问卷调查",
  6234. $$("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 }), {
  6235. "id": "investigation",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _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); } }
  6242. break;
  6243. case "note":
  6244. _formdiv = new U.UF.UI.form(
  6245. "便签分类",
  6246. $$("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 }), {
  6247. "id": "note",
  6248. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6249. "onresize": function () { }
  6250. }, {
  6251. closecallback: function () { }
  6252. }, { "style": { "height": "36px" } }).form; //创建窗体
  6253. _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); } }
  6254. break;
  6255. // case "score":
  6256. // _formdiv = new U.UF.UI.form(
  6257. // "量规评分",
  6258. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6259. // "id": "score",
  6260. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6261. // "onresize": function() {}
  6262. // }, {
  6263. // closecallback: function() {}
  6264. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6265. // _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); } }
  6266. // break;
  6267. case "mind":
  6268. _formdiv = new U.UF.UI.form(
  6269. "思维导图",
  6270. $$("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"
  6271. "id": "mind",
  6272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6273. "onresize": function () { }
  6274. }, {
  6275. closecallback: function () { }
  6276. }, { "style": { "height": "36px" } }).form; //创建窗体
  6277. _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); } }
  6278. break;
  6279. case "doc":
  6280. // U.MD.D.I.isRoom();
  6281. _formdiv = new U.UF.UI.form(
  6282. "协同文档",
  6283. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6284. "id": "doc",
  6285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6291. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6292. // })
  6293. _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); } }
  6294. break;
  6295. case "studentStudy":
  6296. _formdiv = new U.UF.UI.form(
  6297. "课程中心",
  6298. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6299. "id": "studentStudy",
  6300. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //创建窗体
  6305. _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); } }
  6306. break;
  6307. case "train": //好友打开
  6308. _formdiv = new U.UF.UI.form(
  6309. "训练平台",
  6310. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6311. "id": "train",
  6312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //创建窗体
  6317. _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); } }
  6318. break;
  6319. case "mindNetwork": //好友打开
  6320. _formdiv = new U.UF.UI.form(
  6321. "思维网格",
  6322. $$("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 }), {
  6323. "id": "mindNetwork",
  6324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //创建窗体
  6329. _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); } }
  6330. break;
  6331. case "studentClassRoom": //好友打开
  6332. _formdiv = new U.UF.UI.form(
  6333. "实时课堂",
  6334. $$("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 }), {
  6335. "id": "studentClassRoom",
  6336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6342. setTimeout(() => {
  6343. U.UF.F.windowZooming(_formdiv)
  6344. }, 0);
  6345. break;
  6346. }
  6347. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6348. switch (str) {
  6349. case "studnetProject": //好友打开
  6350. _formdiv = new U.UF.UI.form(
  6351. "我的项目",
  6352. $$("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 }), {
  6353. "id": "studnetProject",
  6354. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. case "studentEvaluate": //好友打开
  6362. _formdiv = new U.UF.UI.form(
  6363. "我的评价",
  6364. $$("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 }), {
  6365. "id": "studentEvaluate",
  6366. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _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); } }
  6372. break;
  6373. case "my":
  6374. _formdiv = new U.UF.UI.form(
  6375. "我的资料",
  6376. $$("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 }), {
  6377. "id": "my",
  6378. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. case "program":
  6386. _formdiv = new U.UF.UI.form(
  6387. "编程平台",
  6388. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6389. "id": "program",
  6390. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. case "library":
  6398. _formdiv = new U.UF.UI.form(
  6399. "素材库",
  6400. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6401. "id": "library",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _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); } }
  6408. break;
  6409. case "whiteboard":
  6410. _formdiv = new U.UF.UI.form(
  6411. "电子白板",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6413. "id": "whiteboard",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. _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); } }
  6420. break;
  6421. case "investigation":
  6422. _formdiv = new U.UF.UI.form(
  6423. "问卷调查",
  6424. $$("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 }), {
  6425. "id": "investigation",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //创建窗体
  6431. _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); } }
  6432. break;
  6433. case "note":
  6434. _formdiv = new U.UF.UI.form(
  6435. "便签分类",
  6436. $$("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 }), {
  6437. "id": "note",
  6438. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6439. "onresize": function () { }
  6440. }, {
  6441. closecallback: function () { }
  6442. }, { "style": { "height": "36px" } }).form; //创建窗体
  6443. _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); } }
  6444. break;
  6445. // case "score":
  6446. // _formdiv = new U.UF.UI.form(
  6447. // "量规评分",
  6448. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6449. // "id": "score",
  6450. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6451. // "onresize": function() {}
  6452. // }, {
  6453. // closecallback: function() {}
  6454. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. // _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); } }
  6456. // break;
  6457. case "mind":
  6458. _formdiv = new U.UF.UI.form(
  6459. "思维导图",
  6460. $$("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"
  6461. "id": "mind",
  6462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _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); } }
  6468. break;
  6469. case "doc":
  6470. // U.MD.D.I.isRoom();
  6471. _formdiv = new U.UF.UI.form(
  6472. "协同文档",
  6473. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6474. "id": "doc",
  6475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //创建窗体
  6480. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6481. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6482. })
  6483. _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); } }
  6484. break;
  6485. case "train": //好友打开
  6486. _formdiv = new U.UF.UI.form(
  6487. "训练平台",
  6488. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6489. "id": "train",
  6490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _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); } }
  6496. break;
  6497. case "studentStudy":
  6498. _formdiv = new U.UF.UI.form(
  6499. "课程中心",
  6500. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6501. "id": "studentStudy",
  6502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _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); } }
  6508. break;
  6509. case "mindNetwork": //好友打开
  6510. _formdiv = new U.UF.UI.form(
  6511. "思维网格",
  6512. $$("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 }), {
  6513. "id": "mindNetwork",
  6514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. _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); } }
  6520. break;
  6521. case "studentClassRoom": //好友打开
  6522. _formdiv = new U.UF.UI.form(
  6523. "实时课堂",
  6524. $$("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 }), {
  6525. "id": "studentClassRoom",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. setTimeout(() => {
  6533. U.UF.F.windowZooming(_formdiv)
  6534. }, 0);
  6535. break;
  6536. }
  6537. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6538. //选择应用处理
  6539. switch (str) {
  6540. case "project": //好友打开
  6541. _formdiv = new U.UF.UI.form(
  6542. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6543. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6544. "id": "project",
  6545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6551. break;
  6552. case "student":
  6553. _formdiv = new U.UF.UI.form(
  6554. "学生管理",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6556. "id": "student",
  6557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6563. break;
  6564. case "evaluate":
  6565. _formdiv = new U.UF.UI.form(
  6566. "学生评价",
  6567. $$("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 }), {
  6568. "id": "evaluate",
  6569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6575. break;
  6576. case "sys":
  6577. _formdiv = new U.UF.UI.form(
  6578. "目标管理",
  6579. $$("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 }), {
  6580. "id": "sys",
  6581. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6587. break;
  6588. case "courseDesign":
  6589. _formdiv = new U.UF.UI.form(
  6590. "项目设计",
  6591. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6592. "id": "courseDesign",
  6593. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6599. break;
  6600. case "program":
  6601. _formdiv = new U.UF.UI.form(
  6602. "编程平台",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6604. "id": "program",
  6605. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6611. break;
  6612. case "class":
  6613. _formdiv = new U.UF.UI.form(
  6614. "班级管理",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6616. "id": "class",
  6617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6623. break;
  6624. case "Grade":
  6625. _formdiv = new U.UF.UI.form(
  6626. "年级管理",
  6627. $$("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 }), {
  6628. "id": "Grade",
  6629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6635. break;
  6636. case "teacherOffice":
  6637. _formdiv = new U.UF.UI.form(
  6638. "教研室",
  6639. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6640. "id": "teacherOffice",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6647. break;
  6648. case "my":
  6649. _formdiv = new U.UF.UI.form(
  6650. "我的资料",
  6651. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6652. "id": "my",
  6653. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6659. break;
  6660. case "notice":
  6661. _formdiv = new U.UF.UI.form(
  6662. "通知公告",
  6663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6664. "id": "notice",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6671. break;
  6672. case "library":
  6673. _formdiv = new U.UF.UI.form(
  6674. "素材库",
  6675. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6676. "id": "library",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6683. break;
  6684. case "whiteboard":
  6685. _formdiv = new U.UF.UI.form(
  6686. "电子白板",
  6687. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6688. "id": "whiteboard",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6695. break;
  6696. case "investigation":
  6697. _formdiv = new U.UF.UI.form(
  6698. "问卷调查",
  6699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6700. "id": "investigation",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6707. break;
  6708. case "note":
  6709. _formdiv = new U.UF.UI.form(
  6710. "便签分类",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6712. "id": "note",
  6713. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. // case "score":
  6721. // _formdiv = new U.UF.UI.form(
  6722. // "量规评分",
  6723. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6724. // "id": "score",
  6725. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6726. // "onresize": function() {}
  6727. // }, {
  6728. // closecallback: function() {}
  6729. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6731. // break;
  6732. case "mind":
  6733. _formdiv = new U.UF.UI.form(
  6734. "思维导图",
  6735. $$("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"
  6736. "id": "mind",
  6737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6743. break;
  6744. case "doc":
  6745. // U.MD.D.I.isRoom();
  6746. _formdiv = new U.UF.UI.form(
  6747. "协同文档",
  6748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6749. "id": "doc",
  6750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6756. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6757. })
  6758. _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); } }
  6759. break;
  6760. case "study":
  6761. _formdiv = new U.UF.UI.form(
  6762. "课程中心",
  6763. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6764. "id": "study",
  6765. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6766. "onresize": function () { }
  6767. }, {
  6768. closecallback: function () { }
  6769. }, { "style": { "height": "36px" } }).form; //创建窗体
  6770. _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); } }
  6771. break;
  6772. case "mindNetwork": //好友打开
  6773. _formdiv = new U.UF.UI.form(
  6774. "思维网格",
  6775. $$("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 }), {
  6776. "id": "mindNetwork",
  6777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6778. "onresize": function () { }
  6779. }, {
  6780. closecallback: function () { }
  6781. }, { "style": { "height": "36px" } }).form; //创建窗体
  6782. _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); } }
  6783. break;
  6784. case "train": //好友打开
  6785. _formdiv = new U.UF.UI.form(
  6786. "训练平台",
  6787. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6788. "id": "mindNetwork",
  6789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6790. "onresize": function () { }
  6791. }, {
  6792. closecallback: function () { }
  6793. }, { "style": { "height": "36px" } }).form; //创建窗体
  6794. _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); } }
  6795. break;
  6796. case "teacherClassRoom": //好友打开
  6797. _formdiv = new U.UF.UI.form(
  6798. "实时课堂",
  6799. $$("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 }), {
  6800. "id": "teacherClassRoom",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. setTimeout(() => {
  6808. U.UF.F.windowZooming(_formdiv)
  6809. }, 0);
  6810. break;
  6811. }
  6812. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6813. switch (str) {
  6814. case "project": //好友打开
  6815. _formdiv = new U.UF.UI.form(
  6816. "课程管理",
  6817. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6818. "id": "project",
  6819. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6825. break;
  6826. case "evaluate":
  6827. _formdiv = new U.UF.UI.form(
  6828. "学生评价",
  6829. $$("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 }), {
  6830. "id": "evaluate",
  6831. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6837. break;
  6838. case "notice":
  6839. _formdiv = new U.UF.UI.form(
  6840. "通知公告",
  6841. $$("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 }), {
  6842. "id": "notice",
  6843. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6849. break;
  6850. case "stuLibrary":
  6851. _formdiv = new U.UF.UI.form(
  6852. "学习资料",
  6853. $$("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 }), {
  6854. "id": "stuLibrary",
  6855. "style": { "width": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6861. break;
  6862. case "program":
  6863. _formdiv = new U.UF.UI.form(
  6864. "编程平台",
  6865. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6866. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6873. break;
  6874. case "whiteboard":
  6875. _formdiv = new U.UF.UI.form(
  6876. "电子白板",
  6877. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6878. "id": "whiteboard",
  6879. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6885. break;
  6886. case "investigation":
  6887. _formdiv = new U.UF.UI.form(
  6888. "问卷调查",
  6889. $$("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 }), {
  6890. "id": "investigation",
  6891. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6897. break;
  6898. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6902. "id": "mind",
  6903. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6909. break;
  6910. case "doc":
  6911. // U.MD.D.I.isRoom();
  6912. _formdiv = new U.UF.UI.form(
  6913. "协同文档",
  6914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6915. "id": "doc",
  6916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6922. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6923. })
  6924. _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); } }
  6925. break;
  6926. case "study":
  6927. _formdiv = new U.UF.UI.form(
  6928. "课程中心",
  6929. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6930. "id": "study",
  6931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //创建窗体
  6936. _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); } }
  6937. break;
  6938. case "mindNetwork": //好友打开
  6939. _formdiv = new U.UF.UI.form(
  6940. "思维网格",
  6941. $$("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 }), {
  6942. "id": "mindNetwork",
  6943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, { "style": { "height": "36px" } }).form; //创建窗体
  6948. _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); } }
  6949. break;
  6950. case "train": //好友打开
  6951. _formdiv = new U.UF.UI.form(
  6952. "训练平台",
  6953. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6954. "id": "train",
  6955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6956. "onresize": function () { }
  6957. }, {
  6958. closecallback: function () { }
  6959. }, { "style": { "height": "36px" } }).form; //创建窗体
  6960. _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); } }
  6961. break;
  6962. case "sys":
  6963. _formdiv = new U.UF.UI.form(
  6964. "目标管理",
  6965. $$("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 }), {
  6966. "id": "sys",
  6967. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6968. "onresize": function () { }
  6969. }, {
  6970. closecallback: function () { }
  6971. }, { "style": { "height": "36px" } }).form; //创建窗体
  6972. _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); } }
  6973. break;
  6974. case "courseDesign":
  6975. _formdiv = new U.UF.UI.form(
  6976. "项目设计",
  6977. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6978. "id": "courseDesign",
  6979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6980. "onresize": function () { }
  6981. }, {
  6982. closecallback: function () { }
  6983. }, { "style": { "height": "36px" } }).form; //创建窗体
  6984. _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); } }
  6985. break;
  6986. }
  6987. } else if (!_type) {
  6988. switch (str) {
  6989. case "my":
  6990. _formdiv = new U.UF.UI.form(
  6991. "我的资料",
  6992. $$("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 }), {
  6993. "id": "my",
  6994. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7000. break;
  7001. }
  7002. }
  7003. switch (str) {
  7004. // AIprogram2 AI体验 aihub.cocorobo.cn
  7005. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  7006. // AIprogram AI编程 ai-blockly.cocorobo.cn
  7007. case "formulaEdi": //公式编辑
  7008. _formdiv = new U.UF.UI.form(
  7009. "公式编辑",
  7010. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  7011. "id": "formulaEdi",
  7012. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _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); } }
  7018. break;
  7019. case "molStr": //分子结构
  7020. _formdiv = new U.UF.UI.form(
  7021. "分子结构",
  7022. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  7023. "id": "molStr",
  7024. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //创建窗体
  7029. _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); } }
  7030. break;
  7031. case "timeAxis": //时间轴
  7032. _formdiv = new U.UF.UI.form(
  7033. "时间轴",
  7034. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  7035. "id": "timeAxis",
  7036. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //创建窗体
  7041. _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); } }
  7042. break;
  7043. case "AIprogram2": //AI体验
  7044. _formdiv = new U.UF.UI.form(
  7045. "AI体验",
  7046. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  7047. "id": "AIprogram2",
  7048. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, { "style": { "height": "36px" } }).form; //创建窗体
  7053. _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); } }
  7054. break;
  7055. case "Pythonprogram": //python编程
  7056. _formdiv = new U.UF.UI.form(
  7057. "Python编程",
  7058. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  7059. "id": "Pythonprogram",
  7060. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7061. "onresize": function () { }
  7062. }, {
  7063. closecallback: function () { }
  7064. }, { "style": { "height": "36px" } }).form; //创建窗体
  7065. _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); } }
  7066. break;
  7067. case "AIprogram": //ai编程
  7068. _formdiv = new U.UF.UI.form(
  7069. "AI编程平台",
  7070. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  7071. "id": "AIprogram",
  7072. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7073. "onresize": function () { }
  7074. }, {
  7075. closecallback: function () { }
  7076. }, { "style": { "height": "36px" } }).form; //创建窗体
  7077. _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); } }
  7078. break;
  7079. case "CocoPi": //CocoPi
  7080. _formdiv = new U.UF.UI.form(
  7081. "CocoPi",
  7082. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  7083. "id": "CocoPi",
  7084. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "Wood": //Wood
  7092. _formdiv = new U.UF.UI.form(
  7093. "海龟编程",
  7094. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  7095. "id": "Wood",
  7096. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7102. break;
  7103. case "car": //模拟驾驶
  7104. _formdiv = new U.UF.UI.form(
  7105. "模拟驾驶",
  7106. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  7107. "id": "car",
  7108. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7114. break;
  7115. case "lineSearch": //路径搜索
  7116. _formdiv = new U.UF.UI.form(
  7117. "路径搜索",
  7118. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  7119. "id": "lineSearch",
  7120. "style": { "width": "70%", "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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7126. break;
  7127. case "deepLearning": //深度学习
  7128. _formdiv = new U.UF.UI.form(
  7129. "深度学习",
  7130. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  7131. "id": "deepLearning",
  7132. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7138. break;
  7139. case "allHistory": //深度学习
  7140. _formdiv = new U.UF.UI.form(
  7141. "全历史",
  7142. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  7143. "id": "allHistory",
  7144. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7150. break;
  7151. case "chatPDF": //ai编程
  7152. _formdiv = new U.UF.UI.form(
  7153. "chatPDF",
  7154. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7155. "id": "chatPDF",
  7156. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, { "style": { "height": "36px" } }).form; //创建窗体
  7161. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7162. break;
  7163. case "resources": //国家教育
  7164. _formdiv = new U.UF.UI.form(
  7165. "国家教育",
  7166. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7167. "id": "resources",
  7168. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, { "style": { "height": "36px" } }).form; //创建窗体
  7173. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7174. break;
  7175. case "codeEdit": //源码编辑
  7176. _formdiv = new U.UF.UI.form(
  7177. "源码编辑",
  7178. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7179. "id": "codeEdit",
  7180. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7181. "onresize": function () { }
  7182. }, {
  7183. closecallback: function () { }
  7184. }, { "style": { "height": "36px" } }).form; //创建窗体
  7185. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7186. break; //
  7187. case "MindMap": //MindMap
  7188. _formdiv = new U.UF.UI.form(
  7189. "MindMap",
  7190. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7191. "id": "MindMap",
  7192. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7193. "onresize": function () { }
  7194. }, {
  7195. closecallback: function () { }
  7196. }, { "style": { "height": "36px" } }).form; //创建窗体
  7197. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7198. break;
  7199. case "netWorkPanel": //netWorkPanel
  7200. _formdiv = new U.UF.UI.form(
  7201. "netWorkPanel",
  7202. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7203. "id": "netWorkPanel",
  7204. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7205. "onresize": function () { }
  7206. }, {
  7207. closecallback: function () { }
  7208. }, { "style": { "height": "36px" } }).form; //创建窗体
  7209. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7210. break;
  7211. case "GeoGebra": //GeoGebra
  7212. _formdiv = new U.UF.UI.form(
  7213. "GeoGebra",
  7214. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  7215. "id": "GeoGebra",
  7216. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7217. "onresize": function () { }
  7218. }, {
  7219. closecallback: function () { }
  7220. }, { "style": { "height": "36px" } }).form; //创建窗体
  7221. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7222. break;
  7223. case "translation": //翻译
  7224. _formdiv = new U.UF.UI.form(
  7225. "翻译",
  7226. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7227. "id": "translation",
  7228. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7229. "onresize": function () { }
  7230. }, {
  7231. closecallback: function () { }
  7232. }, { "style": { "height": "36px" } }).form; //创建窗体
  7233. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7234. break;
  7235. case "mohe": //魔盒
  7236. _formdiv = new U.UF.UI.form(
  7237. "魔盒识字",
  7238. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7239. "id": "mohe",
  7240. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, { "style": { "height": "36px" } }).form; //创建窗体
  7245. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7246. break;
  7247. case "24game": //24点
  7248. _formdiv = new U.UF.UI.form(
  7249. "24点",
  7250. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7251. "id": "24game",
  7252. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, { "style": { "height": "36px" } }).form; //创建窗体
  7257. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7258. break;
  7259. case "case":
  7260. _formdiv = new U.UF.UI.form(
  7261. "课程进展",
  7262. $$("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 }), {
  7263. "id": "case",
  7264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7265. "onresize": function () { }
  7266. }, {
  7267. closecallback: function () { }
  7268. }, { "style": { "height": "36px" } }).form; //创建窗体
  7269. _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); } }
  7270. break;
  7271. case "snf":
  7272. _formdiv = new U.UF.UI.form(
  7273. "赛诺梵",
  7274. $$("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" }), {
  7275. "id": "snf",
  7276. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7277. "onresize": function () { }
  7278. }, {
  7279. closecallback: function () { }
  7280. }, { "style": { "height": "36px" } }).form; //创建窗体
  7281. _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); } }
  7282. break;
  7283. case "hanFamily":
  7284. _formdiv = new U.UF.UI.form(
  7285. "汉字家族",
  7286. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7287. "id": "hanFamily",
  7288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, { "style": { "height": "36px" } }).form; //创建窗体
  7293. _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); } }
  7294. break;
  7295. case "hanClassics":
  7296. _formdiv = new U.UF.UI.form(
  7297. "国学经典",
  7298. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7299. "id": "hanClassics",
  7300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7301. "onresize": function () { }
  7302. }, {
  7303. closecallback: function () { }
  7304. }, { "style": { "height": "36px" } }).form; //创建窗体
  7305. _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); } }
  7306. break;
  7307. case "hanTraining":
  7308. _formdiv = new U.UF.UI.form(
  7309. "笔画训练",
  7310. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7311. "id": "hanTraining",
  7312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7313. "onresize": function () { }
  7314. }, {
  7315. closecallback: function () { }
  7316. }, { "style": { "height": "36px" } }).form; //创建窗体
  7317. _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); } }
  7318. break;
  7319. case "hanClass":
  7320. _formdiv = new U.UF.UI.form(
  7321. "书法课堂",
  7322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7323. "id": "hanClass",
  7324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //创建窗体
  7329. _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); } }
  7330. break;
  7331. case "han":
  7332. _formdiv = new U.UF.UI.form(
  7333. "汉字宫",
  7334. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7335. "id": "han",
  7336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () { }
  7340. }, { "style": { "height": "36px" } }).form; //创建窗体
  7341. _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); } }
  7342. break;
  7343. case "projectGM": //课程管理
  7344. _formdiv = new U.UF.UI.form(
  7345. "课程管理",
  7346. $$("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 }), {
  7347. "id": "projectGM",
  7348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () { }
  7352. }, { "style": { "height": "36px" } }).form; //创建窗体
  7353. _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); } }
  7354. break;
  7355. case "studyGM": //课程中心
  7356. _formdiv = new U.UF.UI.form(
  7357. "课程中心",
  7358. $$("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
  7359. "id": "study",
  7360. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7361. "onresize": function () { }
  7362. }, {
  7363. closecallback: function () { }
  7364. }, { "style": { "height": "36px" } }).form; //创建窗体
  7365. _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); } }
  7366. break;
  7367. // studentGM
  7368. case "studentGM": //学生管理
  7369. _formdiv = new U.UF.UI.form(
  7370. "学生管理",
  7371. $$("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 }), {
  7372. "id": "studentGM",
  7373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7374. "onresize": function () { }
  7375. }, {
  7376. closecallback: function () { }
  7377. }, { "style": { "height": "36px" } }).form; //创建窗体
  7378. _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); } }
  7379. break;
  7380. case "evaluateGM": //学生评价
  7381. _formdiv = new U.UF.UI.form(
  7382. "学生评价",
  7383. $$("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 }), {
  7384. "id": "evaluateGM",
  7385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, { "style": { "height": "36px" } }).form; //创建窗体
  7390. _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); } }
  7391. break;
  7392. // classGM
  7393. case "classGM": //班级管理
  7394. _formdiv = new U.UF.UI.form(
  7395. "班级管理",
  7396. $$("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 }), {
  7397. "id": "classGM",
  7398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7399. "onresize": function () { }
  7400. }, {
  7401. closecallback: function () { }
  7402. }, { "style": { "height": "36px" } }).form; //创建窗体
  7403. _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); } }
  7404. break;
  7405. // dataGM
  7406. case "dataGM":
  7407. _formdiv = new U.UF.UI.form(
  7408. "我的资料",
  7409. $$("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 }), {
  7410. "id": "dataGM",
  7411. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7412. "onresize": function () { }
  7413. }, {
  7414. closecallback: function () { }
  7415. }, { "style": { "height": "36px" } }).form; //创建窗体
  7416. _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); } }
  7417. break;
  7418. // caseGM
  7419. case "caseGM": //课程进展
  7420. _formdiv = new U.UF.UI.form(
  7421. "课程进展",
  7422. $$("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 }), {
  7423. "id": "caseGM",
  7424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7425. "onresize": function () { }
  7426. }, {
  7427. closecallback: function () { }
  7428. }, { "style": { "height": "36px" } }).form; //创建窗体
  7429. _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); } }
  7430. break;
  7431. // meterialGM
  7432. case "meterialGM": //素材库
  7433. _formdiv = new U.UF.UI.form(
  7434. "素材库",
  7435. $$("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 }), {
  7436. "id": "meterialGM",
  7437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7438. "onresize": function () { }
  7439. }, {
  7440. closecallback: function () { }
  7441. }, { "style": { "height": "36px" } }).form; //创建窗体
  7442. _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); } }
  7443. break;
  7444. // evaluateSGM
  7445. case "evaluateSGM": //我的评价
  7446. _formdiv = new U.UF.UI.form(
  7447. "我的评价",
  7448. $$("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 }), {
  7449. "id": "evaluateSGM",
  7450. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7451. "onresize": function () { }
  7452. }, {
  7453. closecallback: function () { }
  7454. }, { "style": { "height": "36px" } }).form; //创建窗体
  7455. _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); } }
  7456. break;
  7457. case "jupyter": //jupyter
  7458. _formdiv = new U.UF.UI.form(
  7459. "jupyter",
  7460. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7461. "id": "jupyter",
  7462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7463. "onresize": function () { }
  7464. }, {
  7465. closecallback: function () { }
  7466. }, { "style": { "height": "36px" } }).form; //创建窗体
  7467. _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); } }
  7468. break;
  7469. case "number": //数字实验室
  7470. _formdiv = new U.UF.UI.form(
  7471. "数字实验室",
  7472. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7473. "id": "number",
  7474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7475. "onresize": function () { }
  7476. }, {
  7477. closecallback: function () { }
  7478. }, { "style": { "height": "36px" } }).form; //创建窗体
  7479. _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); } }
  7480. break;
  7481. case "studentCourse": //项目管理 学生
  7482. _formdiv = new U.UF.UI.form(
  7483. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7484. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7485. "id": "studentCourse",
  7486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7487. "onresize": function () { }
  7488. }, {
  7489. closecallback: function () { }
  7490. }, { "style": { "height": "36px" } }).form; //创建窗体
  7491. _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); } }
  7492. break;
  7493. case "studentCourseS": //项目管理 老师
  7494. _formdiv = new U.UF.UI.form(
  7495. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7496. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7497. "id": "studentCourseS",
  7498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7499. "onresize": function () { }
  7500. }, {
  7501. closecallback: function () { }
  7502. }, { "style": { "height": "36px" } }).form; //创建窗体
  7503. _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); } }
  7504. break;
  7505. case "studentIndex": //项目中心
  7506. _formdiv = new U.UF.UI.form(
  7507. "项目中心",
  7508. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7509. "id": "studentIndex",
  7510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7511. "onresize": function () { }
  7512. }, {
  7513. closecallback: function () { }
  7514. }, { "style": { "height": "36px" } }).form; //创建窗体
  7515. _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); } }
  7516. break;
  7517. case "CaseDesignS":
  7518. _formdiv = new U.UF.UI.form(
  7519. "项目进展",
  7520. $$("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 }), {
  7521. "id": "case",
  7522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7523. "onresize": function () { }
  7524. }, {
  7525. closecallback: function () { }
  7526. }, { "style": { "height": "36px" } }).form; //创建窗体
  7527. _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); } }
  7528. break;
  7529. case "tcStudent": //腾讯学生管理
  7530. _formdiv = new U.UF.UI.form(
  7531. "学生管理",
  7532. $$("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 }), {
  7533. "id": "tcStudent",
  7534. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7535. "onresize": function () { }
  7536. }, {
  7537. closecallback: function () { }
  7538. }, { "style": { "height": "36px" } }).form; //创建窗体
  7539. _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); } }
  7540. break;
  7541. case "tcSchool": //腾讯学校管理
  7542. _formdiv = new U.UF.UI.form(
  7543. "学校管理",
  7544. $$("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 }), {
  7545. "id": "tcSchool",
  7546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7547. "onresize": function () { }
  7548. }, {
  7549. closecallback: function () { }
  7550. }, { "style": { "height": "36px" } }).form; //创建窗体
  7551. _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); } }
  7552. break;
  7553. case "tcTeacher": //腾讯学校管理
  7554. _formdiv = new U.UF.UI.form(
  7555. "教师管理",
  7556. $$("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 }), {
  7557. "id": "tcTeacher",
  7558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7559. "onresize": function () { }
  7560. }, {
  7561. closecallback: function () { }
  7562. }, { "style": { "height": "36px" } }).form; //创建窗体
  7563. _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); } }
  7564. break;
  7565. case "teacher":
  7566. _formdiv = new U.UF.UI.form(
  7567. "教师管理",
  7568. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7569. "id": "teacher",
  7570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7571. "onresize": function () { }
  7572. }, {
  7573. closecallback: function () { }
  7574. }, { "style": { "height": "36px" } }).form; //创建窗体
  7575. _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); } }
  7576. break;
  7577. case "tcData": //腾讯我的资料
  7578. _formdiv = new U.UF.UI.form(
  7579. "我的资料",
  7580. $$("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 }), {
  7581. "id": "tcData",
  7582. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7583. "onresize": function () { }
  7584. }, {
  7585. closecallback: function () { }
  7586. }, { "style": { "height": "36px" } }).form; //创建窗体
  7587. _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); } }
  7588. break;
  7589. case "tcNotice": //腾讯消息通知
  7590. _formdiv = new U.UF.UI.form(
  7591. "消息通知",
  7592. $$("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 }), {
  7593. "id": "tcNotice",
  7594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7595. "onresize": function () { }
  7596. }, {
  7597. closecallback: function () { }
  7598. }, { "style": { "height": "36px" } }).form; //创建窗体
  7599. _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); } }
  7600. break;
  7601. case "myReport": //好友打开
  7602. _formdiv = new U.UF.UI.form(
  7603. "我的评价",
  7604. $$("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 }), {
  7605. "id": "myReport",
  7606. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7607. "onresize": function () { }
  7608. }, {
  7609. closecallback: function () { }
  7610. }, { "style": { "height": "36px" } }).form; //创建窗体
  7611. _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); } }
  7612. break;
  7613. case "learnAna": //好友打开
  7614. _formdiv = new U.UF.UI.form(
  7615. "学习分析",
  7616. $$("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 }), {
  7617. "id": "learnAna",
  7618. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7619. "onresize": function () { }
  7620. }, {
  7621. closecallback: function () { }
  7622. }, { "style": { "height": "36px" } }).form; //创建窗体
  7623. _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); } }
  7624. break;
  7625. case "AIChat": //AI共创
  7626. _formdiv = new U.UF.UI.form(
  7627. "AI共创",
  7628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7629. "id": "AIChat",
  7630. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7631. "onresize": function () { }
  7632. }, {
  7633. istop: true,
  7634. closecallback: function () { $("#aichat_icon").remove(); },
  7635. narrowcallback: function () {
  7636. if (!$("#aichat_icon")[0]) {
  7637. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7638. }
  7639. },
  7640. }, { "style": { "height": "36px" } }).form; //创建窗体
  7641. _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); } }
  7642. break;
  7643. case "ainew": //AI共创
  7644. _formdiv = new U.UF.UI.form(
  7645. "AI协同",
  7646. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7647. "id": "ainew",
  7648. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7649. "onresize": function () { }
  7650. }, {
  7651. closecallback: function () { }
  7652. }, { "style": { "height": "36px" } }).form; //创建窗体
  7653. _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); } }
  7654. break;
  7655. case "gpt4": //gpt4
  7656. _formdiv = new U.UF.UI.form(
  7657. "AI助手",
  7658. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7659. "id": "gpt4",
  7660. "style": { "width": "100%", "height": "100%", "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/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7666. break;
  7667. case "aigpt": //gpt4
  7668. _formdiv = new U.UF.UI.form(
  7669. "AI助手+",
  7670. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7671. "id": "aigpt",
  7672. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7673. "onresize": function () { }
  7674. }, {
  7675. closecallback: function () {
  7676. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7677. }
  7678. }, { "style": { "height": "36px" } }).form; //创建窗体
  7679. _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); } }
  7680. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7681. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7682. })
  7683. break;
  7684. case "aiKnowledge": //aiKnowledge
  7685. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7686. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7687. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7688. }
  7689. _formdiv = new U.UF.UI.form(
  7690. "知识建构",
  7691. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7692. "id": "aiKnowledge",
  7693. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, { "style": { "height": "36px" } }).form; //创建窗体
  7698. _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); } }
  7699. break;
  7700. case "futureClass": //AI共创
  7701. _formdiv = new U.UF.UI.form(
  7702. "协同建构",
  7703. $$("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
  7704. "id": "synergyCourse",
  7705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7706. "onresize": function () { }
  7707. }, {
  7708. closecallback: function () {
  7709. $("iframe", _formdiv)[0].contentWindow.loginout();
  7710. }
  7711. }, { "style": { "height": "36px" } }).form; //创建窗体
  7712. _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); } }
  7713. break;
  7714. case "aiagent": //ai agent
  7715. _formdiv = new U.UF.UI.form(
  7716. "AI Agent",
  7717. $$("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" }), {
  7718. "id": "AIAgent",
  7719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7720. "onresize": function () { }
  7721. }, {
  7722. closecallback: function () { }
  7723. }, { "style": { "height": "36px" } }).form; //创建窗体
  7724. _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); } }
  7725. break;
  7726. case "dataBoard": //数据看板
  7727. _formdiv = new U.UF.UI.form(
  7728. "数据看板",
  7729. $$("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 }), {
  7730. "id": "dataBoard",
  7731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7732. "onresize": function () { }
  7733. }, {
  7734. closecallback: function () { }
  7735. }, { "style": { "height": "36px" } }).form; //创建窗体
  7736. _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); } }
  7737. break;
  7738. case "dataBoardSies": //数据融合
  7739. _formdiv = new U.UF.UI.form(
  7740. "数据融合",
  7741. $$("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 }), {
  7742. "id": "dataBoardSies",
  7743. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7744. "onresize": function () { }
  7745. }, {
  7746. closecallback: function () { }
  7747. }, { "style": { "height": "36px" } }).form; //创建窗体
  7748. _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); } }
  7749. break;
  7750. case "dataBoardNew": //数据看板
  7751. _formdiv = new U.UF.UI.form(
  7752. "综合看板",
  7753. $$("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 }), {
  7754. "id": "dataBoardNew",
  7755. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7756. "onresize": function () { }
  7757. }, {
  7758. closecallback: function () { }
  7759. }, { "style": { "height": "36px" } }).form; //创建窗体
  7760. _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); } }
  7761. break;
  7762. case "dataBoardTest": //数据看板
  7763. _formdiv = new U.UF.UI.form(
  7764. "评测看板",
  7765. $$("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 }), {
  7766. "id": "dataBoardTest",
  7767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7768. "onresize": function () { }
  7769. }, {
  7770. closecallback: function () { }
  7771. }, { "style": { "height": "36px" } }).form; //创建窗体
  7772. _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); } }
  7773. break;
  7774. case "AIAnalyse": //AI共创
  7775. _formdiv = new U.UF.UI.form(
  7776. "AI分析",
  7777. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7778. "id": "AIAnalyse",
  7779. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7780. "onresize": function () { }
  7781. }, {
  7782. closecallback: function () { }
  7783. }, { "style": { "height": "36px" } }).form; //创建窗体
  7784. _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); } }
  7785. break;
  7786. case "studioCourse": //AI共创
  7787. _formdiv = new U.UF.UI.form(
  7788. "工作管理",
  7789. $$("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 }), {
  7790. "id": "studioCourse",
  7791. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7792. "onresize": function () { }
  7793. }, {
  7794. closecallback: function () { }
  7795. }, { "style": { "height": "36px" } }).form; //创建窗体
  7796. _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); } }
  7797. break;
  7798. case "studioIndex": //AI共创
  7799. _formdiv = new U.UF.UI.form(
  7800. "工作中心",
  7801. $$("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 }), {
  7802. "id": "studioIndex",
  7803. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7804. "onresize": function () { }
  7805. }, {
  7806. closecallback: function () { }
  7807. }, { "style": { "height": "36px" } }).form; //创建窗体
  7808. _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); } }
  7809. break;
  7810. case "source":
  7811. _formdiv = new U.UF.UI.form(
  7812. "教学资源",
  7813. $$("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 }), {
  7814. "id": "source",
  7815. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7816. "onresize": function () { }
  7817. }, {
  7818. closecallback: function () { }
  7819. }, { "style": { "height": "36px" } }).form; //创建窗体
  7820. _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); } }
  7821. break;
  7822. case "testTeacher":
  7823. _formdiv = new U.UF.UI.form(
  7824. "智能表单",
  7825. $$("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 }), {
  7826. "id": "testTeacher",
  7827. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7828. "onresize": function () { }
  7829. }, {
  7830. closecallback: function () { }
  7831. }, { "style": { "height": "36px" } }).form; //创建窗体
  7832. _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); } }
  7833. break;
  7834. case "testStudent":
  7835. _formdiv = new U.UF.UI.form(
  7836. "教师中心",
  7837. $$("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 }), {
  7838. "id": "testStudent",
  7839. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7840. "onresize": function () { }
  7841. }, {
  7842. closecallback: function () { }
  7843. }, { "style": { "height": "36px" } }).form; //创建窗体
  7844. _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); } }
  7845. break;
  7846. case "testTeacherSies":
  7847. _formdiv = new U.UF.UI.form(
  7848. "教师管理",
  7849. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7850. "id": "testTeacherSies",
  7851. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7852. "onresize": function () { }
  7853. }, {
  7854. closecallback: function () { }
  7855. }, { "style": { "height": "36px" } }).form; //创建窗体
  7856. _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); } }
  7857. break;
  7858. case "testStudentSies":
  7859. _formdiv = new U.UF.UI.form(
  7860. "教师中心",
  7861. $$("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 }), {
  7862. "id": "testStudentSies",
  7863. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7864. "onresize": function () { }
  7865. }, {
  7866. closecallback: function () { }
  7867. }, { "style": { "height": "36px" } }).form; //创建窗体
  7868. _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); } }
  7869. break;
  7870. case "ytpbl": //消息通知
  7871. _formdiv = new U.UF.UI.form(
  7872. "案例征集",
  7873. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7874. "id": "ytpbl",
  7875. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7876. "onresize": function () { }
  7877. }, {
  7878. closecallback: function () { }
  7879. }, { "style": { "height": "36px" } }).form; //创建窗体
  7880. _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); } }
  7881. // 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");
  7882. break;
  7883. case "aiCourseResource": //人工智能窗体
  7884. _formdiv = new U.UF.UI.form(
  7885. false,
  7886. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7887. "id": "aiCourseResource",
  7888. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7889. "onresize": function () { },
  7890. "isdrag": false,
  7891. }, {
  7892. closecallback: function () { }
  7893. }, { "style": { "height": "36px" } }).form; //创建窗体
  7894. _taskbar = ''
  7895. break;
  7896. case "szdjgCocooroboX": //图形化编程
  7897. _formdiv = new U.UF.UI.form(
  7898. "图形化编程",
  7899. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7900. "id": "szdjgCocooroboX",
  7901. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7902. "onresize": function () { }
  7903. }, {
  7904. closecallback: function () { }
  7905. }, { "style": { "height": "36px" } }).form; //创建窗体
  7906. _taskbar = ''
  7907. break;
  7908. case "szdjgPython": //python编程
  7909. _formdiv = new U.UF.UI.form(
  7910. "Python编程",
  7911. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7912. "id": "szdjgPython",
  7913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7914. "onresize": function () { }
  7915. }, {
  7916. closecallback: function () { }
  7917. }, { "style": { "height": "36px" } }).form; //创建窗体
  7918. _taskbar = ''
  7919. break;
  7920. case "Record":
  7921. _formdiv = new U.UF.UI.form(
  7922. "观察记录",
  7923. $$("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 }), {
  7924. "id": "Record",
  7925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7926. "onresize": function () { }
  7927. }, {
  7928. closecallback: function () { }
  7929. }, { "style": { "height": "36px" } }).form; //创建窗体
  7930. _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); } }
  7931. break;
  7932. case "aigptCourse":
  7933. _formdiv = new U.UF.UI.form(
  7934. "AI智能体",
  7935. $$("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' }), {
  7936. "id": "aigptCourse",
  7937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7938. "onresize": function () { }
  7939. }, {
  7940. closecallback: function () { }
  7941. }, { "style": { "height": "36px" } }).form; //创建窗体
  7942. _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); } }
  7943. break;
  7944. case "classroomObservation":
  7945. _formdiv = new U.UF.UI.form(
  7946. "课堂观察",
  7947. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7948. "id": "classroomObservation",
  7949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7950. "onresize": function () { }
  7951. }, {
  7952. closecallback: function () { }
  7953. }, { "style": { "height": "36px" } }).form; //创建窗体
  7954. _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); } }
  7955. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7956. break;
  7957. case "pblCourse":
  7958. _formdiv = new U.UF.UI.form(
  7959. "学生PBL",
  7960. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7961. "id": "pblCourse",
  7962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7963. "onresize": function () { }
  7964. }, {
  7965. closecallback: function () { }
  7966. }, { "style": { "height": "36px" } }).form; //创建窗体
  7967. _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); } }
  7968. break;
  7969. case "appStore":
  7970. U.MD.D.addOp('', 'cocoflowOpen', '')
  7971. _formdiv = new U.UF.UI.form(
  7972. "CocoFlow",
  7973. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7974. "id": "appStore",
  7975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7976. "onresize": function () { }
  7977. }, {
  7978. closecallback: function () { }
  7979. }, { "style": { "height": "36px" } }).form; //创建窗体
  7980. _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); } }
  7981. break;
  7982. case "sassPlatform":
  7983. _formdiv = new U.UF.UI.form(
  7984. "Sass通用后台管理",
  7985. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7986. "id": "sassPlatform",
  7987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7988. "onresize": function () { }
  7989. }, {
  7990. closecallback: function () { }
  7991. }, { "style": { "height": "36px" } }).form; //创建窗体
  7992. _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); } }
  7993. break;
  7994. case "EDU":
  7995. _formdiv = new U.UF.UI.form(
  7996. "EDU",
  7997. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7998. "id": "EDU",
  7999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  8000. "onresize": function () { }
  8001. }, {
  8002. closecallback: function () { }
  8003. }, { "style": { "height": "36px" } }).form; //创建窗体
  8004. _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); } }
  8005. break;
  8006. case "knowledge":
  8007. _formdiv = new U.UF.UI.form(
  8008. "知识库",
  8009. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  8010. "id": "knowledge",
  8011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  8012. "onresize": function () { }
  8013. }, {
  8014. closecallback: function () { }
  8015. }, { "style": { "height": "36px" } }).form; //创建窗体
  8016. _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); } }
  8017. break;
  8018. case "userExamine":
  8019. _formdiv = new U.UF.UI.form(
  8020. "账号申请",
  8021. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  8022. "id": "userExamine",
  8023. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  8024. "onresize": function () { }
  8025. }, {
  8026. closecallback: function () { }
  8027. }, { "style": { "height": "36px" } }).form; //创建窗体
  8028. break;
  8029. case "cocoflowDeskTop": //cocoflowDeskTop
  8030. _formdiv = new U.UF.UI.form(
  8031. false,
  8032. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  8033. "id": "cocoflowDeskTop",
  8034. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8035. "onresize": function () { },
  8036. }, {
  8037. closecallback: function () { },
  8038. "isdrag": false,
  8039. }, { "style": { "height": "36px" } }).form; //创建窗体
  8040. _taskbar = ''
  8041. break;
  8042. case "liyuanLogin": //liyuanLogin
  8043. _formdiv = new U.UF.UI.form(
  8044. false,
  8045. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid + (obj.type ? `&type=${obj.type}` : '') + (obj.courseid ? `&courseid=${obj.courseid}` : '') }), {
  8046. "id": "liyuanLogin",
  8047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8048. "onresize": function () { },
  8049. }, {
  8050. closecallback: function () { },
  8051. isdrag: false,
  8052. isstretching: false,
  8053. isenlarge: false,
  8054. isnarrow: false
  8055. }, { "style": { "height": "36px" } }).form; //创建窗体
  8056. _taskbar = ''
  8057. break;
  8058. case "updatePaDialog":
  8059. _formdiv = new U.UF.UI.form(
  8060. "密码修改",
  8061. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  8062. "id": "updatePaDialog",
  8063. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  8064. "onresize": function () { },
  8065. }, {
  8066. closecallback: function () { },
  8067. isclose: false,
  8068. isdrag: false,
  8069. isstretching: false,
  8070. isenlarge: false,
  8071. isnarrow: false
  8072. }, { "style": { "height": "36px" } }).form; //创建窗体
  8073. break;
  8074. }
  8075. //U.MD.D.I.openClick(str);
  8076. //如果有任务栏信息
  8077. if (_taskbar) {
  8078. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8079. }
  8080. if (iframeBool) {
  8081. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  8082. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  8083. // console.log("iframe进入");
  8084. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8085. // };
  8086. setTimeout(() => {
  8087. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8088. }, 2000);
  8089. }
  8090. }
  8091. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  8092. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  8093. _userinfo = US.userInfo, //登录用户信息
  8094. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  8095. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  8096. let iframeBool = true;
  8097. let queryString = ''
  8098. if (array && array.length) {
  8099. const paramsMap = {
  8100. userid: _userid,
  8101. org: _org,
  8102. oid: _oid,
  8103. type: _type,
  8104. role: _role,
  8105. classId: _classId,
  8106. TscreenType: _TscreenType,
  8107. SscreenType: _SscreenType
  8108. };
  8109. const canshu = array
  8110. .filter(param => paramsMap[param] !== undefined)
  8111. .map(param => `${param}=${paramsMap[param]}`);
  8112. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  8113. }
  8114. let _url = url + queryString
  8115. if (U.UF.UI.form.allForm[id]) {
  8116. iframeBool = false
  8117. }
  8118. _formdiv = new U.UF.UI.form(
  8119. false,
  8120. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  8121. {
  8122. "id": id,
  8123. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  8124. "onresize": function () { },
  8125. },
  8126. {
  8127. closecallback: function () { },
  8128. isdrag: false,
  8129. isstretching: false,
  8130. isenlarge: false,
  8131. isnarrow: false
  8132. },
  8133. { "style": { "height": "36px" } },
  8134. undefined,
  8135. undefined,
  8136. dom
  8137. ).form
  8138. }
  8139. // U.MD.D.I.openClick = function(str){
  8140. // var click = '';
  8141. // switch(str){
  8142. // case 'friend':
  8143. // click = '我的好友';
  8144. // break;
  8145. // case 'domain':
  8146. // click = '域名管理';
  8147. // break;
  8148. // case 'disk':
  8149. // click = '我的云盘';
  8150. // break;
  8151. // case 'word':
  8152. // click = 'Word';
  8153. // break;
  8154. // case 'excel':
  8155. // click = 'Execl';
  8156. // break;
  8157. // case 'txt':
  8158. // click = '文本文件';
  8159. // break;
  8160. // case 'lookupFriend':
  8161. // click = '查找好友';
  8162. // break;
  8163. // case 'ftp':
  8164. // click = 'FTP';
  8165. // break;
  8166. // case 'group':
  8167. // click = '群组';
  8168. // break;
  8169. // case 'set':
  8170. // click = '我的设置';
  8171. // break;
  8172. // case 'systemSet':
  8173. // click = '系统设置';
  8174. // break;
  8175. // case 'boomYun':
  8176. // click = '互联办公';
  8177. // break;
  8178. // case 'xz':
  8179. // click = '云端下载';
  8180. // break;
  8181. // case 'client':
  8182. // click = '有思浏览器';
  8183. // break;
  8184. // case 'backEndProgramming':
  8185. // click = '在线后台编程';
  8186. // break;
  8187. // case 'frontEndProgramming':
  8188. // click = '在线前端编程';
  8189. // break;
  8190. // default: break;
  8191. // }
  8192. // if(U.MD.D.I.Ip && click){
  8193. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8194. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8195. // })
  8196. // }
  8197. // }
  8198. /**
  8199. *函数作用:ajax简易函数,使用post格式
  8200. *@param url {data} 后台地址
  8201. *@param data {data} 参数json
  8202. *@param fn {data} 回调函数
  8203. *
  8204. */
  8205. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8206. // var xhr = new XMLHttpRequest();
  8207. // xhr.open("GET",url,true);
  8208. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8209. // xhr.onreadystatechange = function(){
  8210. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8211. // fn.call(this,xhr.responseText);
  8212. // }
  8213. // };
  8214. // xhr.send();
  8215. // }
  8216. /*判断是否是内网IP*/
  8217. // U.MD.D.I.isInnerIPFn = function(str){
  8218. // var curPageUrl = str;
  8219. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8220. // curPageUrl =curPageUrl.replace(reg1,'');
  8221. // // console.log('curPageUrl-1 '+curPageUrl);
  8222. // var reg2 = /\:+/g;//替换冒号为一点
  8223. // curPageUrl =curPageUrl.replace(reg2,'.');
  8224. // // console.log('curPageUrl-2 '+curPageUrl);
  8225. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8226. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8227. // if(curPageUrl[2] != '16'){
  8228. // return ipAddress;
  8229. // }else{
  8230. // return false;
  8231. // }
  8232. // }
  8233. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8234. // //compatibility for firefox and chrome
  8235. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8236. // var pc = new myPeerConnection({
  8237. // iceServers: []
  8238. // }),
  8239. // noop = function() {},
  8240. // localIPs = {},
  8241. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8242. // key;
  8243. // function iterateIP(ip) {
  8244. // if (!localIPs[ip]) onNewIP(ip);
  8245. // localIPs[ip] = true;
  8246. // }
  8247. // //create a bogus data channel
  8248. // pc.createDataChannel("");
  8249. // // create offer and set local description
  8250. // pc.createOffer().then(function(sdp) {
  8251. // sdp.sdp.split('\n').forEach(function(line) {
  8252. // if (line.indexOf('candidate') < 0) return;
  8253. // line.match(ipRegex).forEach(iterateIP);
  8254. // });
  8255. // pc.setLocalDescription(sdp, noop, noop);
  8256. // }).catch(function(reason) {
  8257. // // An error occurred, so handle the failure to connect
  8258. // });
  8259. // //sten for candidate events
  8260. // pc.onicecandidate = function(ice) {
  8261. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8262. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8263. // };
  8264. // }
  8265. // U.MD.D.I.getUserIpBool = function(callback){
  8266. // U.MD.D.I.getUserIP(function(ip){
  8267. // alert("Got IP! :" + ip);
  8268. // });
  8269. //}
  8270. //#endregion
  8271. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8272. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8273. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8274. _userinfo = US.userInfo, //登录用户信息
  8275. _userid = US.userInfo.userid //登录用户id
  8276. let _iframe;
  8277. let _cid = cid,
  8278. _stage = stage,
  8279. _task = task,
  8280. _tool = tool;
  8281. var _jie = $$("div", {
  8282. "style": {
  8283. "position": "absolute",
  8284. "bottom": "50px",
  8285. "right": "50px",
  8286. "zIndex": "9999",
  8287. "backgroundColor": "#2268bc",
  8288. "color": "#fff",
  8289. "padding": "12px 20px",
  8290. "cursor": "pointer",
  8291. "borderRadius": "4px",
  8292. },
  8293. "innerHTML": "提交作业"
  8294. })
  8295. let aTool = ''
  8296. let _loading = document.createElement('div')
  8297. _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;"
  8298. // _loading.id = "";
  8299. let _lchild = document.createElement('div')
  8300. let _limg = document.createElement('img')
  8301. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8302. _limg.style = "width: 26px;margin-right: 10px;"
  8303. _lchild.appendChild(_limg)
  8304. let _lspan = document.createElement('span')
  8305. _lspan.innerHTML = "上传中..."
  8306. _lchild.appendChild(_lspan)
  8307. _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%);"
  8308. _loading.appendChild(_lchild)
  8309. var _box = $$('div', {
  8310. "style": {
  8311. "position": "relative",
  8312. "width": "100%",
  8313. "height": "100%",
  8314. },
  8315. })
  8316. _box.appendChild(_loading)
  8317. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8318. switch (str) {
  8319. case "whiteboard":
  8320. aTool = 1;
  8321. _iframe = $$("iframe", {
  8322. "frameborder": "no",
  8323. "border": "0",
  8324. "scrolling ": "no",
  8325. "style": {
  8326. "cssText": "border:0;width:100%;height:100%"
  8327. },
  8328. "src": "https://beta.iwb.cocorobo.cn/"
  8329. })
  8330. _box.appendChild(_iframe);
  8331. _box.appendChild(_jie);
  8332. _formdiv = new U.UF.UI.form(
  8333. "电子白板",
  8334. _box, {
  8335. "id": "whiteboard" + cid + stage + task + tool,
  8336. "style": {
  8337. "width": "90%",
  8338. "height": "90%",
  8339. "overflow": 'hidden'
  8340. },
  8341. "onresize": function () { }
  8342. }, {
  8343. closecallback: function () { }
  8344. }, {
  8345. "style": {
  8346. "height": "36px"
  8347. }
  8348. }).form; //创建窗体
  8349. _taskbar = {
  8350. "id": str + _formdiv.id,
  8351. "style": {
  8352. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8353. },
  8354. "name": "电子白板",
  8355. "forms": _formdiv,
  8356. "click": function () {
  8357. U.MD.D.I.openApplication(str, obj, info);
  8358. }
  8359. }
  8360. break;
  8361. case "mind":
  8362. aTool = 3;
  8363. _iframe = $$("iframe", {
  8364. "frameborder": "no",
  8365. "border": "0",
  8366. "scrolling ": "no",
  8367. "style": {
  8368. "cssText": "border:0;width:100%;height:100%"
  8369. },
  8370. "src": "/kityminder-editor/dist/index.html"
  8371. })
  8372. _box.appendChild(_iframe);
  8373. _box.appendChild(_jie);
  8374. _formdiv = new U.UF.UI.form(
  8375. "思维导图",
  8376. _box, { //"/jsmind/example/demo.html"
  8377. "id": "mind" + cid + stage + task + tool,
  8378. "style": {
  8379. "width": "90%",
  8380. "height": "90%",
  8381. "overflow": 'hidden'
  8382. },
  8383. "onresize": function () { }
  8384. }, {
  8385. closecallback: function () { }
  8386. }, {
  8387. "style": {
  8388. "height": "36px"
  8389. }
  8390. }).form; //创建窗体
  8391. _taskbar = {
  8392. "id": str + _formdiv.id,
  8393. "style": {
  8394. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8395. },
  8396. "name": "思维导图",
  8397. "forms": _formdiv,
  8398. "click": function () {
  8399. U.MD.D.I.openApplication(str, obj, info);
  8400. }
  8401. }
  8402. break;
  8403. case "MindMap":
  8404. aTool = 3;
  8405. _iframe = $$("iframe", {
  8406. "frameborder": "no",
  8407. "border": "0",
  8408. "scrolling ": "no",
  8409. "style": {
  8410. "cssText": "border:0;width:100%;height:100%"
  8411. },
  8412. "src": "//cloud.cocorobo.cn/mind/"
  8413. })
  8414. _box.appendChild(_iframe);
  8415. _box.appendChild(_jie);
  8416. _formdiv = new U.UF.UI.form(
  8417. "思维导图",
  8418. _box, { //"/jsmind/example/demo.html"
  8419. "id": "mind" + cid + stage + task + tool,
  8420. "style": {
  8421. "width": "90%",
  8422. "height": "90%",
  8423. "overflow": 'hidden'
  8424. },
  8425. "onresize": function () { }
  8426. }, {
  8427. closecallback: function () { }
  8428. }, {
  8429. "style": {
  8430. "height": "36px"
  8431. }
  8432. }).form; //创建窗体
  8433. _taskbar = {
  8434. "id": str + _formdiv.id,
  8435. "style": {
  8436. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8437. },
  8438. "name": "思维导图",
  8439. "forms": _formdiv,
  8440. "click": function () {
  8441. U.MD.D.I.openApplication(str, obj, info);
  8442. }
  8443. }
  8444. break;
  8445. case "doc":
  8446. aTool = 6;
  8447. _iframe = $$("iframe", {
  8448. "frameborder": "no",
  8449. "border": "0",
  8450. "scrolling ": "no",
  8451. "style": {
  8452. "cssText": "border:0;width:100%;height:100%"
  8453. },
  8454. "src": "/Office/Word/WordEditArea.htm"
  8455. })
  8456. _box.appendChild(_iframe);
  8457. _box.appendChild(_jie);
  8458. _formdiv = new U.UF.UI.form(
  8459. "协同文档",
  8460. _box, {
  8461. "id": "doc" + cid + stage + task + tool,
  8462. "style": {
  8463. "width": "90%",
  8464. "height": "90%",
  8465. "overflow": 'hidden'
  8466. },
  8467. "onresize": function () { }
  8468. }, {
  8469. closecallback: function () { }
  8470. }, {
  8471. "style": {
  8472. "height": "36px"
  8473. }
  8474. }).form; //创建窗体
  8475. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8476. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8477. })
  8478. _taskbar = {
  8479. "id": str + _formdiv.id,
  8480. "style": {
  8481. "backgroundImage": "url(/img/icon/doc.png)"
  8482. },
  8483. "name": "协同文档",
  8484. "forms": _formdiv,
  8485. "click": function () {
  8486. U.MD.D.I.openApplication(str, obj, info);
  8487. }
  8488. }
  8489. break;
  8490. case "mindNetwork": //好友打开
  8491. aTool = 7;
  8492. _iframe = $$("iframe", {
  8493. "webkitallowfullscreen": "",
  8494. "mozallowfullscreen": "",
  8495. "allowfullscreen": "",
  8496. "frameborder": "no",
  8497. "border": "0",
  8498. "scrolling ": "no",
  8499. "style": {
  8500. "cssText": "border:0; width:100%; height:100%;"
  8501. },
  8502. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8503. })
  8504. _box.appendChild(_iframe);
  8505. _box.appendChild(_jie);
  8506. _formdiv = new U.UF.UI.form(
  8507. "思维网格",
  8508. _box, {
  8509. "id": "mindNetwork" + cid + stage + task + tool,
  8510. "style": {
  8511. "width": "90%",
  8512. "height": "90%",
  8513. "overflow": 'hidden'
  8514. },
  8515. "onresize": function () { }
  8516. }, {
  8517. closecallback: function () { }
  8518. }, {
  8519. "style": {
  8520. "height": "36px"
  8521. }
  8522. }).form; //创建窗体
  8523. _taskbar = {
  8524. "id": str + _formdiv.id,
  8525. "style": {
  8526. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8527. },
  8528. "name": "思维网格",
  8529. "forms": _formdiv,
  8530. "click": function () {
  8531. U.MD.D.I.openApplication(str, obj, info);
  8532. }
  8533. }
  8534. break;
  8535. case "courseDesign":
  8536. _iframe = $$("iframe", {
  8537. "webkitallowfullscreen": "",
  8538. "mozallowfullscreen": "",
  8539. "allowfullscreen": "",
  8540. "frameborder": "no",
  8541. "border": "0",
  8542. "scrolling ": "no",
  8543. "style": {
  8544. "cssText": "border:0; width:100%; height:100%;"
  8545. },
  8546. "src": "/course-design-vue"
  8547. })
  8548. _box.appendChild(_iframe);
  8549. _box.appendChild(_jie);
  8550. _formdiv = new U.UF.UI.form(
  8551. "项目设计",
  8552. _box, {
  8553. "id": "courseDesign" + cid + stage + task + tool,
  8554. "style": {
  8555. "width": "90%",
  8556. "height": "90%",
  8557. "overflow": 'hidden'
  8558. },
  8559. "onresize": function () { }
  8560. }, {
  8561. closecallback: function () { }
  8562. }, {
  8563. "style": {
  8564. "height": "36px"
  8565. }
  8566. }).form; //创建窗体
  8567. _taskbar = {
  8568. "id": str + _formdiv.id,
  8569. "style": {
  8570. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8571. },
  8572. "name": "项目设计",
  8573. "forms": _formdiv,
  8574. "click": function () {
  8575. U.MD.D.I.openApplication(str, obj, info);
  8576. }
  8577. }
  8578. break;
  8579. }
  8580. const script1 = document.createElement("script");
  8581. script1.type = "text/javascript";
  8582. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8583. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8584. const script2 = document.createElement("script");
  8585. script2.type = "text/javascript";
  8586. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8587. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8588. const script3 = document.createElement("script");
  8589. script3.type = "text/javascript";
  8590. script3.charset = "UTF-8";
  8591. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8592. const script4 = document.createElement("script");
  8593. script4.type = "text/javascript";
  8594. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8595. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8596. if (_iframe) {
  8597. if (str == 'doc') {
  8598. _iframe = _formdiv.querySelector('iframe')
  8599. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8600. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8601. _iframe.contentWindow.document.body.appendChild(script1);
  8602. _iframe.contentWindow.document.body.appendChild(script2);
  8603. // _iframe.contentWindow.document.body.appendChild(script3);
  8604. _iframe.contentWindow.document.body.appendChild(script4);
  8605. })
  8606. if (onloadListener) {
  8607. _iframe.contentDocument.location.reload()
  8608. } else {
  8609. _iframe.contentDocument.location.reload()
  8610. }
  8611. } else if (str == 'courseDesign') {
  8612. U.UF.DL.iframeLoad(_iframe, function () {
  8613. // _iframe.contentWindow.U.MD.O.W.load();
  8614. // _iframe.contentWindow.document.body.appendChild(script1);
  8615. _iframe.contentWindow.document.body.appendChild(script2);
  8616. _iframe.contentWindow.document.body.appendChild(script4);
  8617. })
  8618. } else if (str == 'mind') {
  8619. _iframe = _formdiv.querySelector('iframe')
  8620. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8621. //
  8622. _iframe.contentWindow.document.body.appendChild(script1);
  8623. _iframe.contentWindow.document.body.appendChild(script2);
  8624. _iframe.contentWindow.document.body.appendChild(script4);
  8625. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8626. })
  8627. if (onloadListener) {
  8628. _iframe.contentDocument.location.reload()
  8629. } else {
  8630. _iframe.contentDocument.location.reload()
  8631. }
  8632. } else if (str == 'whiteboard') {
  8633. _iframe = _formdiv.querySelector('iframe')
  8634. let onloadListener = _iframe.onload = () => {
  8635. _iframe.contentWindow.document.body.appendChild(script1);
  8636. _iframe.contentWindow.document.body.appendChild(script2);
  8637. _iframe.contentWindow.document.body.appendChild(script4);
  8638. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8639. };
  8640. // if (onloadListener) {
  8641. // try {
  8642. // _iframe.src += "?cocorobo="+new Date().getTime()
  8643. // _iframe.contentWindow.document.location.reload()
  8644. // } catch (error) {
  8645. // }
  8646. // } else {
  8647. // _iframe.contentDocument.location.reload()
  8648. // }
  8649. } else {
  8650. _iframe.onload = () => {
  8651. _iframe.contentWindow.document.body.appendChild(script1);
  8652. _iframe.contentWindow.document.body.appendChild(script2);
  8653. // _iframe.contentWindow.document.body.appendChild(script3);
  8654. _iframe.contentWindow.document.body.appendChild(script4);
  8655. };
  8656. }
  8657. _jie.onclick = async () => {
  8658. let text = ''
  8659. if (aTool == 1) {
  8660. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8661. text = _iframe.contentWindow.h.app.scene.elements
  8662. let files = _iframe.contentWindow.h.app.files
  8663. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  8664. return
  8665. } else if (aTool == 6) {
  8666. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8667. } else if (aTool == 3) {
  8668. text = await U.MD.D.I.getEditorContent(_iframe);
  8669. }
  8670. _loading.style.display = 'flex'
  8671. console.log(_loading);
  8672. var _ajs = _iframe.contentWindow.document.createElement("script");
  8673. _ajs.type = "text/javascript";
  8674. _ajs.innerHTML =
  8675. // 'console.log(' + _loading + ');\n' +
  8676. 'var _js = document.createElement("script");\n' +
  8677. '_js.type="text/javascript";\n' +
  8678. '_js.charset="UTF-8";\n' +
  8679. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8680. "_js.onload = function(){\n" +
  8681. ' var a = document.getElementsByTagName("img")\n' +
  8682. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8683. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8684. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8685. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8686. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8687. "beforeUpload_shishi(file," +
  8688. "'" +
  8689. _userid +
  8690. "'" +
  8691. ", " +
  8692. "'" +
  8693. _cid +
  8694. "'" +
  8695. ", " +
  8696. "'" +
  8697. _stage +
  8698. "'" +
  8699. ", " +
  8700. "'" +
  8701. _task +
  8702. "'" +
  8703. ", " +
  8704. "'" +
  8705. _tool +
  8706. "'" +
  8707. ", " +
  8708. "'" +
  8709. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8710. "'" +
  8711. ", " +
  8712. "'" +
  8713. aTool +
  8714. "'" +
  8715. ", " +
  8716. "`" +
  8717. text +
  8718. "`" +
  8719. ")\n" +
  8720. " });\n" +
  8721. "}\n" +
  8722. "document.head.appendChild(_js);\n";
  8723. _iframe.contentWindow.document.head.appendChild(_ajs);
  8724. }
  8725. }
  8726. //U.MD.D.I.openClick(str);
  8727. //如果有任务栏信息
  8728. // if (_taskbar) {
  8729. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8730. // }
  8731. }
  8732. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8733. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8734. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8735. _userinfo = US.userInfo, //登录用户信息
  8736. _userid = US.userInfo.userid //登录用户id
  8737. let _iframe;
  8738. let _cid = cid,
  8739. _stage = stage,
  8740. _task = task,
  8741. _tool = tool;
  8742. var _jie = $$("div", {
  8743. "style": {
  8744. "position": "absolute",
  8745. "bottom": "50px",
  8746. "right": "50px",
  8747. "zIndex": "9999",
  8748. "backgroundColor": "#2268bc",
  8749. "color": "#fff",
  8750. "padding": "12px 20px",
  8751. "cursor": "pointer",
  8752. "borderRadius": "4px",
  8753. },
  8754. "innerHTML": "提交作业"
  8755. })
  8756. let aTool = ''
  8757. let _loading = document.createElement('div')
  8758. _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;"
  8759. // _loading.id = "";
  8760. let _lchild = document.createElement('div')
  8761. let _limg = document.createElement('img')
  8762. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8763. _limg.style = "width: 26px;margin-right: 10px;"
  8764. _lchild.appendChild(_limg)
  8765. let _lspan = document.createElement('span')
  8766. _lspan.innerHTML = "上传中..."
  8767. _lchild.appendChild(_lspan)
  8768. _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%);"
  8769. _loading.appendChild(_lchild)
  8770. let _box = $$('div', {
  8771. "style": {
  8772. "position": "relative",
  8773. "width": "100%",
  8774. "height": "100%",
  8775. },
  8776. })
  8777. _box.appendChild(_loading)
  8778. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8779. switch (str) {
  8780. case "whiteboard":
  8781. aTool = 1;
  8782. _iframe = $$("iframe", {
  8783. "frameborder": "no",
  8784. "border": "0",
  8785. "scrolling ": "no",
  8786. "style": {
  8787. "cssText": "border:0;width:100%;height:100%"
  8788. },
  8789. "src": "https://beta.iwb.cocorobo.cn/"
  8790. })
  8791. _box.appendChild(_iframe);
  8792. _box.appendChild(_jie);
  8793. _formdiv = new U.UF.UI.form(
  8794. "电子白板",
  8795. _box, {
  8796. "id": "whiteboard" + cid + stage + task + tool,
  8797. "style": {
  8798. "width": "90%",
  8799. "height": "90%",
  8800. "overflow": 'hidden'
  8801. },
  8802. "onresize": function () { }
  8803. }, {
  8804. closecallback: function () { }
  8805. }, {
  8806. "style": {
  8807. "height": "36px"
  8808. }
  8809. }).form; //创建窗体
  8810. _taskbar = {
  8811. "id": str + _formdiv.id,
  8812. "style": {
  8813. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8814. },
  8815. "name": "电子白板",
  8816. "forms": _formdiv,
  8817. "click": function () {
  8818. U.MD.D.I.openApplication(str, obj, info);
  8819. }
  8820. }
  8821. break;
  8822. case "mind":
  8823. aTool = 3;
  8824. _iframe = $$("iframe", {
  8825. "frameborder": "no",
  8826. "border": "0",
  8827. "scrolling ": "no",
  8828. "style": {
  8829. "cssText": "border:0;width:100%;height:100%"
  8830. },
  8831. "src": "/kityminder-editor/dist/index.html"
  8832. })
  8833. _box.appendChild(_iframe);
  8834. _box.appendChild(_jie);
  8835. _formdiv = new U.UF.UI.form(
  8836. "思维导图",
  8837. _box, { //"/jsmind/example/demo.html"
  8838. "id": "mind" + cid + stage + task + tool,
  8839. "style": {
  8840. "width": "90%",
  8841. "height": "90%",
  8842. "overflow": 'hidden'
  8843. },
  8844. "onresize": function () { }
  8845. }, {
  8846. closecallback: function () { }
  8847. }, {
  8848. "style": {
  8849. "height": "36px"
  8850. }
  8851. }).form; //创建窗体
  8852. _taskbar = {
  8853. "id": str + _formdiv.id,
  8854. "style": {
  8855. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8856. },
  8857. "name": "思维导图",
  8858. "forms": _formdiv,
  8859. "click": function () {
  8860. U.MD.D.I.openApplication(str, obj, info);
  8861. }
  8862. }
  8863. break;
  8864. case "MindMap":
  8865. aTool = 3;
  8866. _iframe = $$("iframe", {
  8867. "frameborder": "no",
  8868. "border": "0",
  8869. "scrolling ": "no",
  8870. "style": {
  8871. "cssText": "border:0;width:100%;height:100%"
  8872. },
  8873. "src": "//cloud.cocorobo.cn/mind/"
  8874. })
  8875. _box.appendChild(_iframe);
  8876. _box.appendChild(_jie);
  8877. _formdiv = new U.UF.UI.form(
  8878. "思维导图",
  8879. _box, { //"/jsmind/example/demo.html"
  8880. "id": "mind" + cid + stage + task + tool,
  8881. "style": {
  8882. "width": "90%",
  8883. "height": "90%",
  8884. "overflow": 'hidden'
  8885. },
  8886. "onresize": function () { }
  8887. }, {
  8888. closecallback: function () { }
  8889. }, {
  8890. "style": {
  8891. "height": "36px"
  8892. }
  8893. }).form; //创建窗体
  8894. _taskbar = {
  8895. "id": str + _formdiv.id,
  8896. "style": {
  8897. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8898. },
  8899. "name": "思维导图",
  8900. "forms": _formdiv,
  8901. "click": function () {
  8902. U.MD.D.I.openApplication(str, obj, info);
  8903. }
  8904. }
  8905. break;
  8906. case "doc":
  8907. aTool = 6;
  8908. _iframe = $$("iframe", {
  8909. "frameborder": "no",
  8910. "border": "0",
  8911. "scrolling ": "no",
  8912. "style": {
  8913. "cssText": "border:0;width:100%;height:100%"
  8914. },
  8915. "src": "/Office/Word/WordEditArea.htm"
  8916. })
  8917. _box.appendChild(_iframe);
  8918. _box.appendChild(_jie);
  8919. _formdiv = new U.UF.UI.form(
  8920. "协同文档",
  8921. _box, {
  8922. "id": "doc" + cid + stage + task + tool,
  8923. "style": {
  8924. "width": "90%",
  8925. "height": "90%",
  8926. "overflow": 'hidden'
  8927. },
  8928. "onresize": function () { }
  8929. }, {
  8930. closecallback: function () { }
  8931. }, {
  8932. "style": {
  8933. "height": "36px"
  8934. }
  8935. }).form; //创建窗体
  8936. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8937. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8938. })
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/doc.png)"
  8943. },
  8944. "name": "协同文档",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "mindNetwork": //好友打开
  8952. aTool = 7;
  8953. _iframe = $$("iframe", {
  8954. "webkitallowfullscreen": "",
  8955. "mozallowfullscreen": "",
  8956. "allowfullscreen": "",
  8957. "frameborder": "no",
  8958. "border": "0",
  8959. "scrolling ": "no",
  8960. "style": {
  8961. "cssText": "border:0; width:100%; height:100%;"
  8962. },
  8963. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8964. })
  8965. _box.appendChild(_iframe);
  8966. _box.appendChild(_jie);
  8967. _formdiv = new U.UF.UI.form(
  8968. "思维网格",
  8969. _box, {
  8970. "id": "mindNetwork" + cid + stage + task + tool,
  8971. "style": {
  8972. "width": "90%",
  8973. "height": "90%",
  8974. "overflow": 'hidden'
  8975. },
  8976. "onresize": function () { }
  8977. }, {
  8978. closecallback: function () { }
  8979. }, {
  8980. "style": {
  8981. "height": "36px"
  8982. }
  8983. }).form; //创建窗体
  8984. _taskbar = {
  8985. "id": str + _formdiv.id,
  8986. "style": {
  8987. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8988. },
  8989. "name": "思维网格",
  8990. "forms": _formdiv,
  8991. "click": function () {
  8992. U.MD.D.I.openApplication(str, obj, info);
  8993. }
  8994. }
  8995. break;
  8996. case "courseDesign":
  8997. _iframe = $$("iframe", {
  8998. "webkitallowfullscreen": "",
  8999. "mozallowfullscreen": "",
  9000. "allowfullscreen": "",
  9001. "frameborder": "no",
  9002. "border": "0",
  9003. "scrolling ": "no",
  9004. "style": {
  9005. "cssText": "border:0; width:100%; height:100%;"
  9006. },
  9007. "src": "/course-design-vue"
  9008. })
  9009. _box.appendChild(_iframe);
  9010. _box.appendChild(_jie);
  9011. _formdiv = new U.UF.UI.form(
  9012. "项目设计",
  9013. _box, {
  9014. "id": "courseDesign" + cid + stage + task + tool,
  9015. "style": {
  9016. "width": "90%",
  9017. "height": "90%",
  9018. "overflow": 'hidden'
  9019. },
  9020. "onresize": function () { }
  9021. }, {
  9022. closecallback: function () { }
  9023. }, {
  9024. "style": {
  9025. "height": "36px"
  9026. }
  9027. }).form; //创建窗体
  9028. _taskbar = {
  9029. "id": str + _formdiv.id,
  9030. "style": {
  9031. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9032. },
  9033. "name": "项目设计",
  9034. "forms": _formdiv,
  9035. "click": function () {
  9036. U.MD.D.I.openApplication(str, obj, info);
  9037. }
  9038. }
  9039. break;
  9040. }
  9041. const script1 = document.createElement("script");
  9042. script1.type = "text/javascript";
  9043. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9044. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9045. const script2 = document.createElement("script");
  9046. script2.type = "text/javascript";
  9047. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9048. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9049. const script3 = document.createElement("script");
  9050. script3.type = "text/javascript";
  9051. script3.charset = "UTF-8";
  9052. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9053. const script4 = document.createElement("script");
  9054. script4.type = "text/javascript";
  9055. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9056. script4.src = window.origin + "/js/Common/jietu2E.js";
  9057. if (_iframe) {
  9058. if (str == 'doc') {
  9059. _iframe = _formdiv.querySelector('iframe')
  9060. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9061. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9062. _iframe.contentWindow.document.body.appendChild(script1);
  9063. _iframe.contentWindow.document.body.appendChild(script2);
  9064. // _iframe.contentWindow.document.body.appendChild(script3);
  9065. _iframe.contentWindow.document.body.appendChild(script4);
  9066. })
  9067. if (onloadListener) {
  9068. _iframe.contentDocument.location.reload()
  9069. } else {
  9070. _iframe.contentDocument.location.reload()
  9071. }
  9072. } else if (str == 'courseDesign') {
  9073. U.UF.DL.iframeLoad(_iframe, function () {
  9074. // _iframe.contentWindow.U.MD.O.W.load();
  9075. // _iframe.contentWindow.document.body.appendChild(script1);
  9076. _iframe.contentWindow.document.body.appendChild(script2);
  9077. _iframe.contentWindow.document.body.appendChild(script4);
  9078. })
  9079. } else if (str == 'mind') {
  9080. _iframe = _formdiv.querySelector('iframe')
  9081. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9082. //
  9083. _iframe.contentWindow.document.body.appendChild(script1);
  9084. _iframe.contentWindow.document.body.appendChild(script2);
  9085. _iframe.contentWindow.document.body.appendChild(script4);
  9086. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9087. })
  9088. if (onloadListener) {
  9089. _iframe.contentDocument.location.reload()
  9090. } else {
  9091. _iframe.contentDocument.location.reload()
  9092. }
  9093. } else if (str == 'whiteboard') {
  9094. _iframe = _formdiv.querySelector('iframe')
  9095. let onloadListener = _iframe.onload = () => {
  9096. _iframe.contentWindow.document.body.appendChild(script1);
  9097. _iframe.contentWindow.document.body.appendChild(script2);
  9098. _iframe.contentWindow.document.body.appendChild(script4);
  9099. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9100. };
  9101. // if (onloadListener) {
  9102. // try {
  9103. // _iframe.src += "?cocorobo="+new Date().getTime()
  9104. // _iframe.contentWindow.document.location.reload()
  9105. // } catch (error) {
  9106. // }
  9107. // } else {
  9108. // _iframe.contentDocument.location.reload()
  9109. // }
  9110. } else {
  9111. _iframe.onload = () => {
  9112. _iframe.contentWindow.document.body.appendChild(script1);
  9113. _iframe.contentWindow.document.body.appendChild(script2);
  9114. // _iframe.contentWindow.document.body.appendChild(script3);
  9115. _iframe.contentWindow.document.body.appendChild(script4);
  9116. };
  9117. }
  9118. _jie.onclick = async () => {
  9119. let text = ''
  9120. if (aTool == 1) {
  9121. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9122. text = _iframe.contentWindow.h.app.scene.elements
  9123. let files = _iframe.contentWindow.h.app.files
  9124. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  9125. return
  9126. } else if (aTool == 6) {
  9127. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9128. } else if (aTool == 3) {
  9129. text = await U.MD.D.I.getEditorContent(_iframe);
  9130. }
  9131. _loading.style.display = 'flex'
  9132. console.log(_loading);
  9133. var _ajs = _iframe.contentWindow.document.createElement("script");
  9134. _ajs.type = "text/javascript";
  9135. _ajs.innerHTML =
  9136. // 'console.log(' + _loading + ');\n' +
  9137. 'var _js = document.createElement("script");\n' +
  9138. '_js.type="text/javascript";\n' +
  9139. '_js.charset="UTF-8";\n' +
  9140. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9141. "_js.onload = function(){\n" +
  9142. ' var a = document.getElementsByTagName("img")\n' +
  9143. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9144. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9145. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9146. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9147. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9148. "beforeUpload_shishi(file," +
  9149. "'" +
  9150. _userid +
  9151. "'" +
  9152. ", " +
  9153. "'" +
  9154. _cid +
  9155. "'" +
  9156. ", " +
  9157. "'" +
  9158. _stage +
  9159. "'" +
  9160. ", " +
  9161. "'" +
  9162. _task +
  9163. "'" +
  9164. ", " +
  9165. "'" +
  9166. _tool +
  9167. "'" +
  9168. ", " +
  9169. "'" +
  9170. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9171. "'" +
  9172. ", " +
  9173. "'" +
  9174. aTool +
  9175. "'" +
  9176. ", " +
  9177. "`" +
  9178. text +
  9179. "`" +
  9180. ")\n" +
  9181. " });\n" +
  9182. "}\n" +
  9183. "document.head.appendChild(_js);\n";
  9184. _iframe.contentWindow.document.head.appendChild(_ajs);
  9185. }
  9186. }
  9187. //U.MD.D.I.openClick(str);
  9188. //如果有任务栏信息
  9189. // if (_taskbar) {
  9190. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9191. // }
  9192. }
  9193. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9194. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9195. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9196. _userid = student.userid, //登录用户id
  9197. _username = student.student //用户名字
  9198. let _iframe;
  9199. let _cid = cid,
  9200. _stage = stage,
  9201. _task = task,
  9202. _tool = tool;
  9203. var _jie = $$("div", {
  9204. "style": {
  9205. "position": "absolute",
  9206. "bottom": "50px",
  9207. "right": "50px",
  9208. "zIndex": "9999",
  9209. "backgroundColor": "#2268bc",
  9210. "color": "#fff",
  9211. "padding": "12px 20px",
  9212. "cursor": "pointer",
  9213. "borderRadius": "4px",
  9214. },
  9215. "innerHTML": "提交作业"
  9216. })
  9217. let aTool = ''
  9218. let _loading = document.createElement('div')
  9219. _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;"
  9220. // _loading.id = "";
  9221. let _lchild = document.createElement('div')
  9222. let _limg = document.createElement('img')
  9223. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9224. _limg.style = "width: 26px;margin-right: 10px;"
  9225. _lchild.appendChild(_limg)
  9226. let _lspan = document.createElement('span')
  9227. _lspan.innerHTML = "上传中..."
  9228. _lchild.appendChild(_lspan)
  9229. _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%);"
  9230. _loading.appendChild(_lchild)
  9231. var _box = $$('div', {
  9232. "style": {
  9233. "position": "relative",
  9234. "width": "100%",
  9235. "height": "100%",
  9236. },
  9237. })
  9238. _box.appendChild(_loading)
  9239. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9240. switch (str) {
  9241. case "whiteboard":
  9242. aTool = 1;
  9243. _iframe = $$("iframe", {
  9244. "frameborder": "no",
  9245. "border": "0",
  9246. "scrolling ": "no",
  9247. "style": {
  9248. "cssText": "border:0;width:100%;height:100%"
  9249. },
  9250. "src": "https://beta.iwb.cocorobo.cn/"
  9251. })
  9252. _box.appendChild(_iframe);
  9253. _box.appendChild(_jie);
  9254. _formdiv = new U.UF.UI.form(
  9255. "电子白板-" + _username,
  9256. _box, {
  9257. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9258. "style": {
  9259. "width": "90%",
  9260. "height": "90%",
  9261. "overflow": 'hidden'
  9262. },
  9263. "onresize": function () { }
  9264. }, {
  9265. closecallback: function () { }
  9266. }, {
  9267. "style": {
  9268. "height": "36px"
  9269. }
  9270. }).form; //创建窗体
  9271. _taskbar = {
  9272. "id": str + _formdiv.id,
  9273. "style": {
  9274. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9275. },
  9276. "name": "电子白板",
  9277. "forms": _formdiv,
  9278. "click": function () {
  9279. U.MD.D.I.openApplication(str, obj, info);
  9280. }
  9281. }
  9282. break;
  9283. case "mind":
  9284. aTool = 3;
  9285. _iframe = $$("iframe", {
  9286. "frameborder": "no",
  9287. "border": "0",
  9288. "scrolling ": "no",
  9289. "style": {
  9290. "cssText": "border:0;width:100%;height:100%"
  9291. },
  9292. "src": "/kityminder-editor/dist/index.html"
  9293. })
  9294. _box.appendChild(_iframe);
  9295. _box.appendChild(_jie);
  9296. _formdiv = new U.UF.UI.form(
  9297. "思维导图-" + _username,
  9298. _box, { //"/jsmind/example/demo.html"
  9299. "id": "mind" + cid + stage + task + tool + _userid,
  9300. "style": {
  9301. "width": "90%",
  9302. "height": "90%",
  9303. "overflow": 'hidden'
  9304. },
  9305. "onresize": function () { }
  9306. }, {
  9307. closecallback: function () { }
  9308. }, {
  9309. "style": {
  9310. "height": "36px"
  9311. }
  9312. }).form; //创建窗体
  9313. _taskbar = {
  9314. "id": str + _formdiv.id,
  9315. "style": {
  9316. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9317. },
  9318. "name": "思维导图",
  9319. "forms": _formdiv,
  9320. "click": function () {
  9321. U.MD.D.I.openApplication(str, obj, info);
  9322. }
  9323. }
  9324. break;
  9325. case "MindMap":
  9326. aTool = 3;
  9327. _iframe = $$("iframe", {
  9328. "frameborder": "no",
  9329. "border": "0",
  9330. "scrolling ": "no",
  9331. "style": {
  9332. "cssText": "border:0;width:100%;height:100%"
  9333. },
  9334. "src": "//cloud.cocorobo.cn/mind/"
  9335. })
  9336. _box.appendChild(_iframe);
  9337. _box.appendChild(_jie);
  9338. _formdiv = new U.UF.UI.form(
  9339. "思维导图-" + _username,
  9340. _box, { //"/jsmind/example/demo.html"
  9341. "id": "mind" + cid + stage + task + tool + _userid,
  9342. "style": {
  9343. "width": "90%",
  9344. "height": "90%",
  9345. "overflow": 'hidden'
  9346. },
  9347. "onresize": function () { }
  9348. }, {
  9349. closecallback: function () { }
  9350. }, {
  9351. "style": {
  9352. "height": "36px"
  9353. }
  9354. }).form; //创建窗体
  9355. _taskbar = {
  9356. "id": str + _formdiv.id,
  9357. "style": {
  9358. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9359. },
  9360. "name": "思维导图",
  9361. "forms": _formdiv,
  9362. "click": function () {
  9363. U.MD.D.I.openApplication(str, obj, info);
  9364. }
  9365. }
  9366. break;
  9367. case "doc":
  9368. aTool = 6;
  9369. _iframe = $$("iframe", {
  9370. "frameborder": "no",
  9371. "border": "0",
  9372. "scrolling ": "no",
  9373. "style": {
  9374. "cssText": "border:0;width:100%;height:100%"
  9375. },
  9376. "src": "/Office/Word/WordEditArea.htm"
  9377. })
  9378. _box.appendChild(_iframe);
  9379. _box.appendChild(_jie);
  9380. _formdiv = new U.UF.UI.form(
  9381. "协同文档-" + _username,
  9382. _box, {
  9383. "id": "doc" + cid + stage + task + tool + _userid,
  9384. "style": {
  9385. "width": "90%",
  9386. "height": "90%",
  9387. "overflow": 'hidden'
  9388. },
  9389. "onresize": function () { }
  9390. }, {
  9391. closecallback: function () { }
  9392. }, {
  9393. "style": {
  9394. "height": "36px"
  9395. }
  9396. }).form; //创建窗体
  9397. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9398. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9399. })
  9400. _taskbar = {
  9401. "id": str + _formdiv.id,
  9402. "style": {
  9403. "backgroundImage": "url(/img/icon/doc.png)"
  9404. },
  9405. "name": "协同文档",
  9406. "forms": _formdiv,
  9407. "click": function () {
  9408. U.MD.D.I.openApplication(str, obj, info);
  9409. }
  9410. }
  9411. break;
  9412. case "mindNetwork": //好友打开
  9413. aTool = 7;
  9414. _iframe = $$("iframe", {
  9415. "webkitallowfullscreen": "",
  9416. "mozallowfullscreen": "",
  9417. "allowfullscreen": "",
  9418. "frameborder": "no",
  9419. "border": "0",
  9420. "scrolling ": "no",
  9421. "style": {
  9422. "cssText": "border:0; width:100%; height:100%;"
  9423. },
  9424. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9425. })
  9426. _box.appendChild(_iframe);
  9427. _box.appendChild(_jie);
  9428. _formdiv = new U.UF.UI.form(
  9429. "思维网格-" + _username,
  9430. _box, {
  9431. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9432. "style": {
  9433. "width": "90%",
  9434. "height": "90%",
  9435. "overflow": 'hidden'
  9436. },
  9437. "onresize": function () { }
  9438. }, {
  9439. closecallback: function () { }
  9440. }, {
  9441. "style": {
  9442. "height": "36px"
  9443. }
  9444. }).form; //创建窗体
  9445. _taskbar = {
  9446. "id": str + _formdiv.id,
  9447. "style": {
  9448. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9449. },
  9450. "name": "思维网格",
  9451. "forms": _formdiv,
  9452. "click": function () {
  9453. U.MD.D.I.openApplication(str, obj, info);
  9454. }
  9455. }
  9456. break;
  9457. case "courseDesign":
  9458. _iframe = $$("iframe", {
  9459. "webkitallowfullscreen": "",
  9460. "mozallowfullscreen": "",
  9461. "allowfullscreen": "",
  9462. "frameborder": "no",
  9463. "border": "0",
  9464. "scrolling ": "no",
  9465. "style": {
  9466. "cssText": "border:0; width:100%; height:100%;"
  9467. },
  9468. "src": "/course-design-vue"
  9469. })
  9470. _box.appendChild(_iframe);
  9471. _box.appendChild(_jie);
  9472. _formdiv = new U.UF.UI.form(
  9473. "项目设计-" + _username,
  9474. _box, {
  9475. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9476. "style": {
  9477. "width": "90%",
  9478. "height": "90%",
  9479. "overflow": 'hidden'
  9480. },
  9481. "onresize": function () { }
  9482. }, {
  9483. closecallback: function () { }
  9484. }, {
  9485. "style": {
  9486. "height": "36px"
  9487. }
  9488. }).form; //创建窗体
  9489. _taskbar = {
  9490. "id": str + _formdiv.id,
  9491. "style": {
  9492. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9493. },
  9494. "name": "项目设计",
  9495. "forms": _formdiv,
  9496. "click": function () {
  9497. U.MD.D.I.openApplication(str, obj, info);
  9498. }
  9499. }
  9500. break;
  9501. }
  9502. const script1 = document.createElement("script");
  9503. script1.type = "text/javascript";
  9504. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9505. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9506. const script2 = document.createElement("script");
  9507. script2.type = "text/javascript";
  9508. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9509. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9510. const script3 = document.createElement("script");
  9511. script3.type = "text/javascript";
  9512. script3.charset = "UTF-8";
  9513. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9514. const script4 = document.createElement("script");
  9515. script4.type = "text/javascript";
  9516. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9517. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9518. if (_iframe) {
  9519. if (str == 'doc') {
  9520. _iframe = _formdiv.querySelector('iframe')
  9521. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9522. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9523. _iframe.contentWindow.document.body.appendChild(script1);
  9524. _iframe.contentWindow.document.body.appendChild(script2);
  9525. // _iframe.contentWindow.document.body.appendChild(script3);
  9526. _iframe.contentWindow.document.body.appendChild(script4);
  9527. })
  9528. if (onloadListener) {
  9529. _iframe.contentDocument.location.reload()
  9530. } else {
  9531. _iframe.contentDocument.location.reload()
  9532. }
  9533. } else if (str == 'courseDesign') {
  9534. U.UF.DL.iframeLoad(_iframe, function () {
  9535. // _iframe.contentWindow.U.MD.O.W.load();
  9536. // _iframe.contentWindow.document.body.appendChild(script1);
  9537. _iframe.contentWindow.document.body.appendChild(script2);
  9538. _iframe.contentWindow.document.body.appendChild(script4);
  9539. })
  9540. } else if (str == 'mind') {
  9541. _iframe = _formdiv.querySelector('iframe')
  9542. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9543. //
  9544. _iframe.contentWindow.document.body.appendChild(script1);
  9545. _iframe.contentWindow.document.body.appendChild(script2);
  9546. _iframe.contentWindow.document.body.appendChild(script4);
  9547. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9548. })
  9549. if (onloadListener) {
  9550. _iframe.contentDocument.location.reload()
  9551. } else {
  9552. _iframe.contentDocument.location.reload()
  9553. }
  9554. } else if (str == 'whiteboard') {
  9555. _iframe = _formdiv.querySelector('iframe')
  9556. let onloadListener = _iframe.onload = () => {
  9557. _iframe.contentWindow.document.body.appendChild(script1);
  9558. _iframe.contentWindow.document.body.appendChild(script2);
  9559. _iframe.contentWindow.document.body.appendChild(script4);
  9560. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9561. };
  9562. // if (onloadListener) {
  9563. // try {
  9564. // _iframe.src += "?cocorobo="+new Date().getTime()
  9565. // _iframe.contentWindow.document.location.reload()
  9566. // } catch (error) {
  9567. // }
  9568. // } else {
  9569. // _iframe.contentDocument.location.reload()
  9570. // }
  9571. } else {
  9572. _iframe.onload = () => {
  9573. _iframe.contentWindow.document.body.appendChild(script1);
  9574. _iframe.contentWindow.document.body.appendChild(script2);
  9575. // _iframe.contentWindow.document.body.appendChild(script3);
  9576. _iframe.contentWindow.document.body.appendChild(script4);
  9577. };
  9578. }
  9579. _jie.onclick = async () => {
  9580. let text = ''
  9581. if (aTool == 1) {
  9582. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9583. } else if (aTool == 6) {
  9584. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9585. } else if (aTool == 3) {
  9586. text = await U.MD.D.I.getEditorContent(_iframe);
  9587. }
  9588. _loading.style.display = 'flex'
  9589. console.log(_loading);
  9590. var _ajs = _iframe.contentWindow.document.createElement("script");
  9591. _ajs.type = "text/javascript";
  9592. _ajs.innerHTML =
  9593. // 'console.log(' + _loading + ');\n' +
  9594. 'var _js = document.createElement("script");\n' +
  9595. '_js.type="text/javascript";\n' +
  9596. '_js.charset="UTF-8";\n' +
  9597. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9598. "_js.onload = function(){\n" +
  9599. ' var a = document.getElementsByTagName("img")\n' +
  9600. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9601. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9602. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9603. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9604. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9605. "beforeUpload_shishi(file," +
  9606. "'" +
  9607. _userid +
  9608. "'" +
  9609. ", " +
  9610. "'" +
  9611. _cid +
  9612. "'" +
  9613. ", " +
  9614. "'" +
  9615. _stage +
  9616. "'" +
  9617. ", " +
  9618. "'" +
  9619. _task +
  9620. "'" +
  9621. ", " +
  9622. "'" +
  9623. _tool +
  9624. "'" +
  9625. ", " +
  9626. "'" +
  9627. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9628. "'" +
  9629. ", " +
  9630. "'" +
  9631. aTool +
  9632. "'" +
  9633. ", " +
  9634. "`" +
  9635. text +
  9636. "`" +
  9637. ")\n" +
  9638. " });\n" +
  9639. "}\n" +
  9640. "document.head.appendChild(_js);\n";
  9641. _iframe.contentWindow.document.head.appendChild(_ajs);
  9642. }
  9643. }
  9644. }
  9645. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9646. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9647. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9648. _userid = student.userid, //登录用户id
  9649. _username = student.student //用户名字
  9650. let _iframe;
  9651. let _cid = cid,
  9652. _stage = stage,
  9653. _task = task,
  9654. _tool = tool;
  9655. var _jie = $$("div", {
  9656. "style": {
  9657. "position": "absolute",
  9658. "bottom": "50px",
  9659. "right": "50px",
  9660. "zIndex": "9999",
  9661. "backgroundColor": "#2268bc",
  9662. "color": "#fff",
  9663. "padding": "12px 20px",
  9664. "cursor": "pointer",
  9665. "borderRadius": "4px",
  9666. },
  9667. "innerHTML": "提交作业"
  9668. })
  9669. let aTool = ''
  9670. let _loading = document.createElement('div')
  9671. _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;"
  9672. // _loading.id = "";
  9673. let _lchild = document.createElement('div')
  9674. let _limg = document.createElement('img')
  9675. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9676. _limg.style = "width: 26px;margin-right: 10px;"
  9677. _lchild.appendChild(_limg)
  9678. let _lspan = document.createElement('span')
  9679. _lspan.innerHTML = "上传中..."
  9680. _lchild.appendChild(_lspan)
  9681. _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%);"
  9682. _loading.appendChild(_lchild)
  9683. var _box = $$('div', {
  9684. "style": {
  9685. "position": "relative",
  9686. "width": "100%",
  9687. "height": "100%",
  9688. },
  9689. })
  9690. _box.appendChild(_loading)
  9691. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9692. switch (str) {
  9693. case "whiteboard":
  9694. aTool = 1;
  9695. _iframe = $$("iframe", {
  9696. "frameborder": "no",
  9697. "border": "0",
  9698. "scrolling ": "no",
  9699. "style": {
  9700. "cssText": "border:0;width:100%;height:100%"
  9701. },
  9702. "src": "https://beta.iwb.cocorobo.cn/"
  9703. })
  9704. _box.appendChild(_iframe);
  9705. _box.appendChild(_jie);
  9706. _formdiv = new U.UF.UI.form(
  9707. "电子白板-" + _username,
  9708. _box, {
  9709. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9710. "style": {
  9711. "width": "90%",
  9712. "height": "90%",
  9713. "overflow": 'hidden'
  9714. },
  9715. "onresize": function () { }
  9716. }, {
  9717. closecallback: function () { }
  9718. }, {
  9719. "style": {
  9720. "height": "36px"
  9721. }
  9722. }).form; //创建窗体
  9723. _taskbar = {
  9724. "id": str + _formdiv.id,
  9725. "style": {
  9726. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9727. },
  9728. "name": "电子白板",
  9729. "forms": _formdiv,
  9730. "click": function () {
  9731. U.MD.D.I.openApplication(str, obj, info);
  9732. }
  9733. }
  9734. break;
  9735. case "mind":
  9736. aTool = 3;
  9737. _iframe = $$("iframe", {
  9738. "frameborder": "no",
  9739. "border": "0",
  9740. "scrolling ": "no",
  9741. "style": {
  9742. "cssText": "border:0;width:100%;height:100%"
  9743. },
  9744. "src": "/kityminder-editor/dist/index.html"
  9745. })
  9746. _box.appendChild(_iframe);
  9747. _box.appendChild(_jie);
  9748. _formdiv = new U.UF.UI.form(
  9749. "思维导图-" + _username,
  9750. _box, { //"/jsmind/example/demo.html"
  9751. "id": "mind" + cid + stage + task + tool + _userid,
  9752. "style": {
  9753. "width": "90%",
  9754. "height": "90%",
  9755. "overflow": 'hidden'
  9756. },
  9757. "onresize": function () { }
  9758. }, {
  9759. closecallback: function () { }
  9760. }, {
  9761. "style": {
  9762. "height": "36px"
  9763. }
  9764. }).form; //创建窗体
  9765. _taskbar = {
  9766. "id": str + _formdiv.id,
  9767. "style": {
  9768. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9769. },
  9770. "name": "思维导图",
  9771. "forms": _formdiv,
  9772. "click": function () {
  9773. U.MD.D.I.openApplication(str, obj, info);
  9774. }
  9775. }
  9776. break;
  9777. case "MindMap":
  9778. aTool = 3;
  9779. _iframe = $$("iframe", {
  9780. "frameborder": "no",
  9781. "border": "0",
  9782. "scrolling ": "no",
  9783. "style": {
  9784. "cssText": "border:0;width:100%;height:100%"
  9785. },
  9786. "src": "//cloud.cocorobo.cn/mind/"
  9787. })
  9788. _box.appendChild(_iframe);
  9789. _box.appendChild(_jie);
  9790. _formdiv = new U.UF.UI.form(
  9791. "思维导图-" + _username,
  9792. _box, { //"/jsmind/example/demo.html"
  9793. "id": "mind" + cid + stage + task + tool + _userid,
  9794. "style": {
  9795. "width": "90%",
  9796. "height": "90%",
  9797. "overflow": 'hidden'
  9798. },
  9799. "onresize": function () { }
  9800. }, {
  9801. closecallback: function () { }
  9802. }, {
  9803. "style": {
  9804. "height": "36px"
  9805. }
  9806. }).form; //创建窗体
  9807. _taskbar = {
  9808. "id": str + _formdiv.id,
  9809. "style": {
  9810. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9811. },
  9812. "name": "思维导图",
  9813. "forms": _formdiv,
  9814. "click": function () {
  9815. U.MD.D.I.openApplication(str, obj, info);
  9816. }
  9817. }
  9818. break;
  9819. case "doc":
  9820. aTool = 6;
  9821. _iframe = $$("iframe", {
  9822. "frameborder": "no",
  9823. "border": "0",
  9824. "scrolling ": "no",
  9825. "style": {
  9826. "cssText": "border:0;width:100%;height:100%"
  9827. },
  9828. "src": "/Office/Word/WordEditArea.htm"
  9829. })
  9830. _box.appendChild(_iframe);
  9831. _box.appendChild(_jie);
  9832. _formdiv = new U.UF.UI.form(
  9833. "协同文档-" + _username,
  9834. _box, {
  9835. "id": "doc" + cid + stage + task + tool + _userid,
  9836. "style": {
  9837. "width": "90%",
  9838. "height": "90%",
  9839. "overflow": 'hidden'
  9840. },
  9841. "onresize": function () { }
  9842. }, {
  9843. closecallback: function () { }
  9844. }, {
  9845. "style": {
  9846. "height": "36px"
  9847. }
  9848. }).form; //创建窗体
  9849. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9850. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9851. })
  9852. _taskbar = {
  9853. "id": str + _formdiv.id,
  9854. "style": {
  9855. "backgroundImage": "url(/img/icon/doc.png)"
  9856. },
  9857. "name": "协同文档",
  9858. "forms": _formdiv,
  9859. "click": function () {
  9860. U.MD.D.I.openApplication(str, obj, info);
  9861. }
  9862. }
  9863. break;
  9864. case "mindNetwork": //好友打开
  9865. aTool = 7;
  9866. _iframe = $$("iframe", {
  9867. "webkitallowfullscreen": "",
  9868. "mozallowfullscreen": "",
  9869. "allowfullscreen": "",
  9870. "frameborder": "no",
  9871. "border": "0",
  9872. "scrolling ": "no",
  9873. "style": {
  9874. "cssText": "border:0; width:100%; height:100%;"
  9875. },
  9876. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9877. })
  9878. _box.appendChild(_iframe);
  9879. _box.appendChild(_jie);
  9880. _formdiv = new U.UF.UI.form(
  9881. "思维网格-" + _username,
  9882. _box, {
  9883. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9884. "style": {
  9885. "width": "90%",
  9886. "height": "90%",
  9887. "overflow": 'hidden'
  9888. },
  9889. "onresize": function () { }
  9890. }, {
  9891. closecallback: function () { }
  9892. }, {
  9893. "style": {
  9894. "height": "36px"
  9895. }
  9896. }).form; //创建窗体
  9897. _taskbar = {
  9898. "id": str + _formdiv.id,
  9899. "style": {
  9900. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9901. },
  9902. "name": "思维网格",
  9903. "forms": _formdiv,
  9904. "click": function () {
  9905. U.MD.D.I.openApplication(str, obj, info);
  9906. }
  9907. }
  9908. break;
  9909. case "courseDesign":
  9910. _iframe = $$("iframe", {
  9911. "webkitallowfullscreen": "",
  9912. "mozallowfullscreen": "",
  9913. "allowfullscreen": "",
  9914. "frameborder": "no",
  9915. "border": "0",
  9916. "scrolling ": "no",
  9917. "style": {
  9918. "cssText": "border:0; width:100%; height:100%;"
  9919. },
  9920. "src": "/course-design-vue"
  9921. })
  9922. _box.appendChild(_iframe);
  9923. _box.appendChild(_jie);
  9924. _formdiv = new U.UF.UI.form(
  9925. "项目设计-" + _username,
  9926. _box, {
  9927. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9928. "style": {
  9929. "width": "90%",
  9930. "height": "90%",
  9931. "overflow": 'hidden'
  9932. },
  9933. "onresize": function () { }
  9934. }, {
  9935. closecallback: function () { }
  9936. }, {
  9937. "style": {
  9938. "height": "36px"
  9939. }
  9940. }).form; //创建窗体
  9941. _taskbar = {
  9942. "id": str + _formdiv.id,
  9943. "style": {
  9944. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9945. },
  9946. "name": "项目设计",
  9947. "forms": _formdiv,
  9948. "click": function () {
  9949. U.MD.D.I.openApplication(str, obj, info);
  9950. }
  9951. }
  9952. break;
  9953. }
  9954. const script1 = document.createElement("script");
  9955. script1.type = "text/javascript";
  9956. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9957. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9958. const script2 = document.createElement("script");
  9959. script2.type = "text/javascript";
  9960. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9961. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9962. const script3 = document.createElement("script");
  9963. script3.type = "text/javascript";
  9964. script3.charset = "UTF-8";
  9965. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9966. const script4 = document.createElement("script");
  9967. script4.type = "text/javascript";
  9968. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9969. script4.src = window.origin + "/js/Common/jietu2E.js";
  9970. if (_iframe) {
  9971. if (str == 'doc') {
  9972. _iframe = _formdiv.querySelector('iframe')
  9973. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9974. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9975. _iframe.contentWindow.document.body.appendChild(script1);
  9976. _iframe.contentWindow.document.body.appendChild(script2);
  9977. // _iframe.contentWindow.document.body.appendChild(script3);
  9978. _iframe.contentWindow.document.body.appendChild(script4);
  9979. })
  9980. if (onloadListener) {
  9981. _iframe.contentDocument.location.reload()
  9982. } else {
  9983. _iframe.contentDocument.location.reload()
  9984. }
  9985. } else if (str == 'courseDesign') {
  9986. U.UF.DL.iframeLoad(_iframe, function () {
  9987. // _iframe.contentWindow.U.MD.O.W.load();
  9988. // _iframe.contentWindow.document.body.appendChild(script1);
  9989. _iframe.contentWindow.document.body.appendChild(script2);
  9990. _iframe.contentWindow.document.body.appendChild(script4);
  9991. })
  9992. } else if (str == 'mind') {
  9993. _iframe = _formdiv.querySelector('iframe')
  9994. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9995. //
  9996. _iframe.contentWindow.document.body.appendChild(script1);
  9997. _iframe.contentWindow.document.body.appendChild(script2);
  9998. _iframe.contentWindow.document.body.appendChild(script4);
  9999. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  10000. })
  10001. if (onloadListener) {
  10002. _iframe.contentDocument.location.reload()
  10003. } else {
  10004. _iframe.contentDocument.location.reload()
  10005. }
  10006. } else if (str == 'whiteboard') {
  10007. _iframe = _formdiv.querySelector('iframe')
  10008. let onloadListener = _iframe.onload = () => {
  10009. _iframe.contentWindow.document.body.appendChild(script1);
  10010. _iframe.contentWindow.document.body.appendChild(script2);
  10011. _iframe.contentWindow.document.body.appendChild(script4);
  10012. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  10013. };
  10014. // if (onloadListener) {
  10015. // try {
  10016. // _iframe.src += "?cocorobo="+new Date().getTime()
  10017. // _iframe.contentWindow.document.location.reload()
  10018. // } catch (error) {
  10019. // }
  10020. // } else {
  10021. // _iframe.contentDocument.location.reload()
  10022. // }
  10023. } else {
  10024. _iframe.onload = () => {
  10025. _iframe.contentWindow.document.body.appendChild(script1);
  10026. _iframe.contentWindow.document.body.appendChild(script2);
  10027. // _iframe.contentWindow.document.body.appendChild(script3);
  10028. _iframe.contentWindow.document.body.appendChild(script4);
  10029. };
  10030. }
  10031. _jie.onclick = async () => {
  10032. let text = ''
  10033. if (aTool == 1) {
  10034. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10035. } else if (aTool == 6) {
  10036. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10037. } else if (aTool == 3) {
  10038. text = await U.MD.D.I.getEditorContent(_iframe);
  10039. }
  10040. _loading.style.display = 'flex'
  10041. console.log(_loading);
  10042. var _ajs = _iframe.contentWindow.document.createElement("script");
  10043. _ajs.type = "text/javascript";
  10044. _ajs.innerHTML =
  10045. // 'console.log(' + _loading + ');\n' +
  10046. 'var _js = document.createElement("script");\n' +
  10047. '_js.type="text/javascript";\n' +
  10048. '_js.charset="UTF-8";\n' +
  10049. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10050. "_js.onload = function(){\n" +
  10051. ' var a = document.getElementsByTagName("img")\n' +
  10052. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10053. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10054. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10055. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10056. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10057. "beforeUpload_shishi(file," +
  10058. "'" +
  10059. _userid +
  10060. "'" +
  10061. ", " +
  10062. "'" +
  10063. _cid +
  10064. "'" +
  10065. ", " +
  10066. "'" +
  10067. _stage +
  10068. "'" +
  10069. ", " +
  10070. "'" +
  10071. _task +
  10072. "'" +
  10073. ", " +
  10074. "'" +
  10075. _tool +
  10076. "'" +
  10077. ", " +
  10078. "'" +
  10079. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  10080. "'" +
  10081. ", " +
  10082. "'" +
  10083. aTool +
  10084. "'" +
  10085. ", " +
  10086. "`" +
  10087. text +
  10088. "`" +
  10089. ")\n" +
  10090. " });\n" +
  10091. "}\n" +
  10092. "document.head.appendChild(_js);\n";
  10093. _iframe.contentWindow.document.head.appendChild(_ajs);
  10094. }
  10095. }
  10096. }
  10097. U.MD.D.I.getEditorContent = function (iframe) {
  10098. return new Promise((resolve, reject) => {
  10099. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  10100. console.log(content);
  10101. resolve(content)
  10102. });
  10103. });
  10104. }
  10105. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  10106. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  10107. // if (res.value[0].length > 0) {
  10108. // // resolve(res.value[0][0].text);
  10109. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  10110. // $(fileInput).val('');
  10111. // });
  10112. // }
  10113. // }, [], { "type": "GET", "withCredentials": true });
  10114. var xmlhttp;
  10115. var Mac, Sn, DeviceId
  10116. if (window.XMLHttpRequest) {
  10117. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10118. xmlhttp = new XMLHttpRequest();
  10119. } else {
  10120. // IE6, IE5 浏览器执行代码
  10121. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10122. }
  10123. xmlhttp.onreadystatechange = function () {
  10124. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10125. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10126. // resolve(res.value[0][0].text);
  10127. if (type == '2') {
  10128. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10129. } else if (type == '3') {
  10130. // iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10131. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  10132. // 如果是数组或含有 elements 并且 elements 是数组
  10133. let updateSceneData;
  10134. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  10135. if (Array.isArray(text)) {
  10136. // 兼容原有结构:仅为数组时
  10137. updateSceneData = { elements: text };
  10138. } else {
  10139. // 有 elements 和可能的 files 字段时,直接传递整个对象
  10140. updateSceneData = { ...text };
  10141. }
  10142. } else if (text && (text.elements || text.files)) {
  10143. updateSceneData = { ...text };
  10144. } else {
  10145. // fallback 兼容早期意外结构,作为 elements
  10146. updateSceneData = { elements: text };
  10147. }
  10148. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  10149. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  10150. const files = updateSceneData.files;
  10151. const fileKeys = Object.keys(files);
  10152. let promises = [];
  10153. let needConvert = false;
  10154. fileKeys.forEach(key => {
  10155. let file = files[key];
  10156. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  10157. // 是网络地址,需转换
  10158. needConvert = true;
  10159. let p = fetch(file.dataURL)
  10160. .then(res => res.blob())
  10161. .then(blob => {
  10162. return new Promise(resolve => {
  10163. const reader = new FileReader();
  10164. reader.onloadend = function () {
  10165. // data:[mime];base64,...
  10166. const base64 = reader.result;
  10167. file.dataURL = base64;
  10168. resolve();
  10169. };
  10170. reader.readAsDataURL(blob);
  10171. });
  10172. });
  10173. promises.push(p);
  10174. }
  10175. });
  10176. if (needConvert && promises.length > 0) {
  10177. Promise.all(promises).then(() => {
  10178. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10179. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  10180. });
  10181. } else {
  10182. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10183. }
  10184. } else {
  10185. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10186. }
  10187. }
  10188. } else {
  10189. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  10190. }
  10191. }
  10192. }
  10193. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10194. xmlhttp.send();
  10195. }
  10196. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10197. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10198. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10199. _userinfo = US.userInfo, //登录用户信息
  10200. _userid = US.userInfo.userid //登录用户id
  10201. let _iframe;
  10202. let _cid = cid,
  10203. _stage = stage,
  10204. _task = task,
  10205. _tool = tool;
  10206. var _jie = $$("div", {
  10207. "style": {
  10208. "position": "absolute",
  10209. "bottom": "50px",
  10210. "right": "50px",
  10211. "zIndex": "9999",
  10212. "backgroundColor": "#2268bc",
  10213. "color": "#fff",
  10214. "padding": "12px 20px",
  10215. "cursor": "pointer",
  10216. "borderRadius": "4px",
  10217. },
  10218. "innerHTML": "确认并提交"
  10219. })
  10220. let aTool = ''
  10221. let _loading = document.createElement('div')
  10222. _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;"
  10223. // _loading.id = "";
  10224. let _lchild = document.createElement('div')
  10225. let _limg = document.createElement('img')
  10226. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10227. _limg.style = "width: 26px;margin-right: 10px;"
  10228. _lchild.appendChild(_limg)
  10229. let _lspan = document.createElement('span')
  10230. _lspan.innerHTML = "上传中..."
  10231. _lchild.appendChild(_lspan)
  10232. _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%);"
  10233. _loading.appendChild(_lchild)
  10234. var _box = $$('div', {
  10235. "style": {
  10236. "position": "relative",
  10237. "width": "100%",
  10238. "height": "100%",
  10239. },
  10240. })
  10241. _box.appendChild(_loading)
  10242. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10243. switch (str) {
  10244. case "whiteboard":
  10245. aTool = 1;
  10246. _iframe = $$("iframe", {
  10247. "frameborder": "no",
  10248. "border": "0",
  10249. "scrolling ": "no",
  10250. "style": {
  10251. "cssText": "border:0;width:100%;height:100%"
  10252. },
  10253. "src": "https://beta.iwb.cocorobo.cn/"
  10254. })
  10255. _box.appendChild(_iframe);
  10256. _box.appendChild(_jie);
  10257. _formdiv = new U.UF.UI.form(
  10258. "电子白板",
  10259. _box, {
  10260. "id": "whiteboards" + cid + stage + task + tool,
  10261. "style": {
  10262. "width": "90%",
  10263. "height": "90%",
  10264. "overflow": 'hidden'
  10265. },
  10266. "onresize": function () { }
  10267. }, {
  10268. closecallback: function () { }
  10269. }, {
  10270. "style": {
  10271. "height": "36px"
  10272. }
  10273. }).form; //创建窗体
  10274. _taskbar = {
  10275. "id": str + _formdiv.id,
  10276. "style": {
  10277. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10278. },
  10279. "name": "电子白板",
  10280. "forms": _formdiv,
  10281. "click": function () {
  10282. U.MD.D.I.openApplication(str, obj, info);
  10283. }
  10284. }
  10285. break;
  10286. case "mind":
  10287. aTool = 3;
  10288. _iframe = $$("iframe", {
  10289. "frameborder": "no",
  10290. "border": "0",
  10291. "scrolling ": "no",
  10292. "style": {
  10293. "cssText": "border:0;width:100%;height:100%"
  10294. },
  10295. "src": "/kityminder-editor/dist/index.html"
  10296. });
  10297. _box.appendChild(_iframe);
  10298. _box.appendChild(_jie);
  10299. _formdiv = new U.UF.UI.form(
  10300. "思维导图",
  10301. _box, { //"/jsmind/example/demo.html"
  10302. "id": "minds" + cid + stage + task + tool,
  10303. "style": {
  10304. "width": "90%",
  10305. "height": "90%",
  10306. "overflow": 'hidden'
  10307. },
  10308. "onresize": function () { }
  10309. }, {
  10310. closecallback: function () { }
  10311. }, {
  10312. "style": {
  10313. "height": "36px"
  10314. }
  10315. }).form; //创建窗体
  10316. _taskbar = {
  10317. "id": str + _formdiv.id,
  10318. "style": {
  10319. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10320. },
  10321. "name": "思维导图",
  10322. "forms": _formdiv,
  10323. "click": function () {
  10324. U.MD.D.I.openApplication(str, obj, info);
  10325. }
  10326. }
  10327. break;
  10328. case "doc":
  10329. aTool = 6;
  10330. _iframe = $$("iframe", {
  10331. "frameborder": "no",
  10332. "border": "0",
  10333. "scrolling ": "no",
  10334. "style": {
  10335. "cssText": "border:0;width:100%;height:100%"
  10336. },
  10337. "src": "/Office/Word/WordEditArea.htm"
  10338. })
  10339. _box.appendChild(_iframe);
  10340. _box.appendChild(_jie);
  10341. _formdiv = new U.UF.UI.form(
  10342. "协同文档",
  10343. _box, {
  10344. "id": "docs" + cid + stage + task + tool,
  10345. "style": {
  10346. "width": "90%",
  10347. "height": "90%",
  10348. "overflow": 'hidden'
  10349. },
  10350. "onresize": function () { }
  10351. }, {
  10352. closecallback: function () { }
  10353. }, {
  10354. "style": {
  10355. "height": "36px"
  10356. }
  10357. }).form; //创建窗体
  10358. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10359. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10360. })
  10361. _taskbar = {
  10362. "id": str + _formdiv.id,
  10363. "style": {
  10364. "backgroundImage": "url(/img/icon/doc.png)"
  10365. },
  10366. "name": "协同文档",
  10367. "forms": _formdiv,
  10368. "click": function () {
  10369. U.MD.D.I.openApplication(str, obj, info);
  10370. }
  10371. }
  10372. break;
  10373. }
  10374. const script1 = document.createElement("script");
  10375. script1.type = "text/javascript";
  10376. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10377. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10378. const script2 = document.createElement("script");
  10379. script2.type = "text/javascript";
  10380. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10381. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10382. const script3 = document.createElement("script");
  10383. script3.type = "text/javascript";
  10384. script3.charset = "UTF-8";
  10385. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10386. const script4 = document.createElement("script");
  10387. script4.type = "text/javascript";
  10388. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10389. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10390. if (_iframe) {
  10391. if (str == 'doc') {
  10392. _iframe = _formdiv.querySelector('iframe')
  10393. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10394. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10395. _iframe.contentWindow.document.body.appendChild(script1);
  10396. _iframe.contentWindow.document.body.appendChild(script2);
  10397. // _iframe.contentWindow.document.body.appendChild(script3);
  10398. _iframe.contentWindow.document.body.appendChild(script4);
  10399. })
  10400. if (onloadListener) {
  10401. _iframe.contentDocument.location.reload()
  10402. } else {
  10403. _iframe.contentDocument.location.reload()
  10404. }
  10405. } else if (str == 'mind') {
  10406. _iframe = _formdiv.querySelector('iframe')
  10407. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10408. _iframe.contentWindow.document.body.appendChild(script1);
  10409. _iframe.contentWindow.document.body.appendChild(script2);
  10410. _iframe.contentWindow.document.body.appendChild(script4);
  10411. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10412. })
  10413. if (onloadListener) {
  10414. _iframe.contentDocument.location.reload()
  10415. } else {
  10416. _iframe.contentDocument.location.reload()
  10417. }
  10418. } else {
  10419. _iframe.onload = () => {
  10420. _iframe.contentWindow.document.body.appendChild(script1);
  10421. _iframe.contentWindow.document.body.appendChild(script2);
  10422. // _iframe.contentWindow.document.body.appendChild(script3);
  10423. _iframe.contentWindow.document.body.appendChild(script4);
  10424. };
  10425. }
  10426. _jie.onclick = async () => {
  10427. let text = ''
  10428. if (aTool == 6) {
  10429. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10430. } else if (aTool == 3) {
  10431. text = await U.MD.D.I.getEditorContent(_iframe);
  10432. }
  10433. _loading.style.display = 'flex'
  10434. console.log(_loading);
  10435. var _ajs = _iframe.contentWindow.document.createElement("script");
  10436. _ajs.type = "text/javascript";
  10437. _ajs.innerHTML =
  10438. // 'console.log(' + _loading + ');\n' +
  10439. 'var _js = document.createElement("script");\n' +
  10440. '_js.type="text/javascript";\n' +
  10441. '_js.charset="UTF-8";\n' +
  10442. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10443. "_js.onload = function(){\n" +
  10444. ' var a = document.getElementsByTagName("img")\n' +
  10445. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10446. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10447. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10448. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10449. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10450. "beforeUpload_shishi(file," +
  10451. "'" +
  10452. _userid +
  10453. "'" +
  10454. ", " +
  10455. "'" +
  10456. _cid +
  10457. "'" +
  10458. ", " +
  10459. "'" +
  10460. _stage +
  10461. "'" +
  10462. ", " +
  10463. "'" +
  10464. _task +
  10465. "'" +
  10466. ", " +
  10467. "'" +
  10468. _tool +
  10469. "'" +
  10470. ", " +
  10471. "'" +
  10472. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10473. "'" +
  10474. ", " +
  10475. "'" +
  10476. aTool +
  10477. "'" +
  10478. ", " +
  10479. "`" +
  10480. text +
  10481. "`" +
  10482. ")\n" +
  10483. " });\n" +
  10484. "}\n" +
  10485. "document.head.appendChild(_js);\n";
  10486. _iframe.contentWindow.document.head.appendChild(_ajs);
  10487. }
  10488. }
  10489. //U.MD.D.I.openClick(str);
  10490. //如果有任务栏信息
  10491. // if (_taskbar) {
  10492. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10493. // }
  10494. }
  10495. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10496. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10497. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10498. _userinfo = US.userInfo, //登录用户信息
  10499. _userid = US.userInfo.userid //登录用户id
  10500. let _iframe;
  10501. let _cid = cid,
  10502. _stage = stage,
  10503. _task = task,
  10504. _tool = tool;
  10505. var _jie = $$("div", {
  10506. "style": {
  10507. "position": "absolute",
  10508. "bottom": "50px",
  10509. "right": "50px",
  10510. "zIndex": "9999",
  10511. "backgroundColor": "#2268bc",
  10512. "color": "#fff",
  10513. "padding": "12px 20px",
  10514. "cursor": "pointer",
  10515. "borderRadius": "4px",
  10516. },
  10517. "innerHTML": "确认并提交"
  10518. })
  10519. let aTool = ''
  10520. let _loading = document.createElement('div')
  10521. _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;"
  10522. // _loading.id = "";
  10523. let _lchild = document.createElement('div')
  10524. let _limg = document.createElement('img')
  10525. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10526. _limg.style = "width: 26px;margin-right: 10px;"
  10527. _lchild.appendChild(_limg)
  10528. let _lspan = document.createElement('span')
  10529. _lspan.innerHTML = "上传中..."
  10530. _lchild.appendChild(_lspan)
  10531. _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%);"
  10532. _loading.appendChild(_lchild)
  10533. var _box = $$('div', {
  10534. "style": {
  10535. "position": "relative",
  10536. "width": "100%",
  10537. "height": "100%",
  10538. },
  10539. })
  10540. _box.appendChild(_loading)
  10541. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10542. switch (str) {
  10543. case "whiteboard":
  10544. aTool = 1;
  10545. _iframe = $$("iframe", {
  10546. "frameborder": "no",
  10547. "border": "0",
  10548. "scrolling ": "no",
  10549. "style": {
  10550. "cssText": "border:0;width:100%;height:100%"
  10551. },
  10552. "src": "https://beta.iwb.cocorobo.cn/"
  10553. })
  10554. _box.appendChild(_iframe);
  10555. _box.appendChild(_jie);
  10556. _formdiv = new U.UF.UI.form(
  10557. "电子白板",
  10558. _box, {
  10559. "id": "whiteboards" + cid + stage + task + tool,
  10560. "style": {
  10561. "width": "90%",
  10562. "height": "90%",
  10563. "overflow": 'hidden'
  10564. },
  10565. "onresize": function () { }
  10566. }, {
  10567. closecallback: function () { }
  10568. }, {
  10569. "style": {
  10570. "height": "36px"
  10571. }
  10572. }).form; //创建窗体
  10573. _taskbar = {
  10574. "id": str + _formdiv.id,
  10575. "style": {
  10576. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10577. },
  10578. "name": "电子白板",
  10579. "forms": _formdiv,
  10580. "click": function () {
  10581. U.MD.D.I.openApplication(str, obj, info);
  10582. }
  10583. }
  10584. break;
  10585. case "mind":
  10586. aTool = 3;
  10587. _iframe = $$("iframe", {
  10588. "frameborder": "no",
  10589. "border": "0",
  10590. "scrolling ": "no",
  10591. "style": {
  10592. "cssText": "border:0;width:100%;height:100%"
  10593. },
  10594. "src": "/kityminder-editor/dist/index.html"
  10595. });
  10596. _box.appendChild(_iframe);
  10597. _box.appendChild(_jie);
  10598. _formdiv = new U.UF.UI.form(
  10599. "思维导图",
  10600. _box, { //"/jsmind/example/demo.html"
  10601. "id": "minds" + cid + stage + task + tool,
  10602. "style": {
  10603. "width": "90%",
  10604. "height": "90%",
  10605. "overflow": 'hidden'
  10606. },
  10607. "onresize": function () { }
  10608. }, {
  10609. closecallback: function () { }
  10610. }, {
  10611. "style": {
  10612. "height": "36px"
  10613. }
  10614. }).form; //创建窗体
  10615. _taskbar = {
  10616. "id": str + _formdiv.id,
  10617. "style": {
  10618. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10619. },
  10620. "name": "思维导图",
  10621. "forms": _formdiv,
  10622. "click": function () {
  10623. U.MD.D.I.openApplication(str, obj, info);
  10624. }
  10625. }
  10626. break;
  10627. case "doc":
  10628. aTool = 6;
  10629. _iframe = $$("iframe", {
  10630. "frameborder": "no",
  10631. "border": "0",
  10632. "scrolling ": "no",
  10633. "style": {
  10634. "cssText": "border:0;width:100%;height:100%"
  10635. },
  10636. "src": "/Office/Word/WordEditArea.htm"
  10637. })
  10638. _box.appendChild(_iframe);
  10639. _box.appendChild(_jie);
  10640. _formdiv = new U.UF.UI.form(
  10641. "协同文档",
  10642. _box, {
  10643. "id": "docs" + cid + stage + task + tool,
  10644. "style": {
  10645. "width": "90%",
  10646. "height": "90%",
  10647. "overflow": 'hidden'
  10648. },
  10649. "onresize": function () { }
  10650. }, {
  10651. closecallback: function () { }
  10652. }, {
  10653. "style": {
  10654. "height": "36px"
  10655. }
  10656. }).form; //创建窗体
  10657. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10658. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10659. })
  10660. _taskbar = {
  10661. "id": str + _formdiv.id,
  10662. "style": {
  10663. "backgroundImage": "url(/img/icon/doc.png)"
  10664. },
  10665. "name": "协同文档",
  10666. "forms": _formdiv,
  10667. "click": function () {
  10668. U.MD.D.I.openApplication(str, obj, info);
  10669. }
  10670. }
  10671. break;
  10672. }
  10673. const script1 = document.createElement("script");
  10674. script1.type = "text/javascript";
  10675. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10676. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10677. const script2 = document.createElement("script");
  10678. script2.type = "text/javascript";
  10679. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10680. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10681. const script3 = document.createElement("script");
  10682. script3.type = "text/javascript";
  10683. script3.charset = "UTF-8";
  10684. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10685. const script4 = document.createElement("script");
  10686. script4.type = "text/javascript";
  10687. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10688. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  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. _iframe.contentWindow.document.body.appendChild(script1);
  10695. _iframe.contentWindow.document.body.appendChild(script2);
  10696. // _iframe.contentWindow.document.body.appendChild(script3);
  10697. _iframe.contentWindow.document.body.appendChild(script4);
  10698. })
  10699. if (onloadListener) {
  10700. _iframe.contentDocument.location.reload()
  10701. } else {
  10702. _iframe.contentDocument.location.reload()
  10703. }
  10704. } else if (str == 'mind') {
  10705. _iframe = _formdiv.querySelector('iframe')
  10706. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10707. _iframe.contentWindow.document.body.appendChild(script1);
  10708. _iframe.contentWindow.document.body.appendChild(script2);
  10709. _iframe.contentWindow.document.body.appendChild(script4);
  10710. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10711. })
  10712. if (onloadListener) {
  10713. _iframe.contentDocument.location.reload()
  10714. } else {
  10715. _iframe.contentDocument.location.reload()
  10716. }
  10717. } else {
  10718. _iframe.onload = () => {
  10719. _iframe.contentWindow.document.body.appendChild(script1);
  10720. _iframe.contentWindow.document.body.appendChild(script2);
  10721. // _iframe.contentWindow.document.body.appendChild(script3);
  10722. _iframe.contentWindow.document.body.appendChild(script4);
  10723. };
  10724. }
  10725. _jie.onclick = async () => {
  10726. let text = ''
  10727. if (aTool == 6) {
  10728. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10729. } else if (aTool == 3) {
  10730. text = await U.MD.D.I.getEditorContent(_iframe);
  10731. }
  10732. _loading.style.display = 'flex'
  10733. console.log(_loading);
  10734. var _ajs = _iframe.contentWindow.document.createElement("script");
  10735. _ajs.type = "text/javascript";
  10736. _ajs.innerHTML =
  10737. // 'console.log(' + _loading + ');\n' +
  10738. 'var _js = document.createElement("script");\n' +
  10739. '_js.type="text/javascript";\n' +
  10740. '_js.charset="UTF-8";\n' +
  10741. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10742. "_js.onload = function(){\n" +
  10743. ' var a = document.getElementsByTagName("img")\n' +
  10744. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10745. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10746. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10747. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10748. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10749. "beforeUpload_shishi(file," +
  10750. "'" +
  10751. _userid +
  10752. "'" +
  10753. ", " +
  10754. "'" +
  10755. _cid +
  10756. "'" +
  10757. ", " +
  10758. "'" +
  10759. _stage +
  10760. "'" +
  10761. ", " +
  10762. "'" +
  10763. _task +
  10764. "'" +
  10765. ", " +
  10766. "'" +
  10767. _tool +
  10768. "'" +
  10769. ", " +
  10770. "'" +
  10771. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10772. "'" +
  10773. ", " +
  10774. "'" +
  10775. aTool +
  10776. "'" +
  10777. ", " +
  10778. "`" +
  10779. text +
  10780. "`" +
  10781. ")\n" +
  10782. " });\n" +
  10783. "}\n" +
  10784. "document.head.appendChild(_js);\n";
  10785. _iframe.contentWindow.document.head.appendChild(_ajs);
  10786. }
  10787. }
  10788. //U.MD.D.I.openClick(str);
  10789. //如果有任务栏信息
  10790. // if (_taskbar) {
  10791. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10792. // }
  10793. }
  10794. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10795. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10796. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10797. _userinfo = US.userInfo, //登录用户信息
  10798. _userid = US.userInfo.userid //登录用户id
  10799. let _iframe;
  10800. let _cid = cid,
  10801. _stage = stage,
  10802. _task = task,
  10803. _tool = tool;
  10804. var _jie = $$("div", {
  10805. "style": {
  10806. "position": "absolute",
  10807. "bottom": "50px",
  10808. "right": "50px",
  10809. "zIndex": "9999",
  10810. "backgroundColor": "#2268bc",
  10811. "color": "#fff",
  10812. "padding": "12px 20px",
  10813. "cursor": "pointer",
  10814. "borderRadius": "4px",
  10815. },
  10816. "innerHTML": "上传模板"
  10817. })
  10818. let aTool = ''
  10819. let _loading = document.createElement('div')
  10820. _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;"
  10821. // _loading.id = "";
  10822. let _lchild = document.createElement('div')
  10823. let _limg = document.createElement('img')
  10824. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10825. _limg.style = "width: 26px;margin-right: 10px;"
  10826. _lchild.appendChild(_limg)
  10827. let _lspan = document.createElement('span')
  10828. _lspan.innerHTML = "上传中..."
  10829. _lchild.appendChild(_lspan)
  10830. _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%);"
  10831. _loading.appendChild(_lchild)
  10832. var _box = $$('div', {
  10833. "style": {
  10834. "position": "relative",
  10835. "width": "100%",
  10836. "height": "100%",
  10837. },
  10838. })
  10839. _box.appendChild(_loading)
  10840. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10841. switch (str) {
  10842. case "whiteboard":
  10843. aTool = 1;
  10844. _iframe = $$("iframe", {
  10845. "frameborder": "no",
  10846. "border": "0",
  10847. "scrolling ": "no",
  10848. "style": {
  10849. "cssText": "border:0;width:100%;height:100%"
  10850. },
  10851. "src": "https://beta.iwb.cocorobo.cn/"
  10852. })
  10853. _box.appendChild(_iframe);
  10854. _box.appendChild(_jie);
  10855. _formdiv = new U.UF.UI.form(
  10856. "电子白板",
  10857. _box, {
  10858. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10859. "style": {
  10860. "width": "90%",
  10861. "height": "90%",
  10862. "overflow": 'hidden'
  10863. },
  10864. "onresize": function () { }
  10865. }, {
  10866. closecallback: function () { }
  10867. }, {
  10868. "style": {
  10869. "height": "36px"
  10870. }
  10871. }).form; //创建窗体
  10872. _taskbar = {
  10873. "id": str + _formdiv.id,
  10874. "style": {
  10875. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10876. },
  10877. "name": "电子白板",
  10878. "forms": _formdiv,
  10879. "click": function () {
  10880. U.MD.D.I.openApplication(str, obj, info);
  10881. }
  10882. }
  10883. break;
  10884. case "mind":
  10885. aTool = 3;
  10886. _iframe = $$("iframe", {
  10887. "frameborder": "no",
  10888. "border": "0",
  10889. "scrolling ": "no",
  10890. "style": {
  10891. "cssText": "border:0;width:100%;height:100%"
  10892. },
  10893. "src": "/kityminder-editor/dist/index.html"
  10894. });
  10895. _box.appendChild(_iframe);
  10896. _box.appendChild(_jie);
  10897. _formdiv = new U.UF.UI.form(
  10898. "思维导图",
  10899. _box, { //"/jsmind/example/demo.html"
  10900. "id": "minds_Yu" + cid + stage + task + tool,
  10901. "style": {
  10902. "width": "90%",
  10903. "height": "90%",
  10904. "overflow": 'hidden'
  10905. },
  10906. "onresize": function () { }
  10907. }, {
  10908. closecallback: function () { }
  10909. }, {
  10910. "style": {
  10911. "height": "36px"
  10912. }
  10913. }).form; //创建窗体
  10914. _taskbar = {
  10915. "id": str + _formdiv.id,
  10916. "style": {
  10917. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10918. },
  10919. "name": "思维导图",
  10920. "forms": _formdiv,
  10921. "click": function () {
  10922. U.MD.D.I.openApplication(str, obj, info);
  10923. }
  10924. }
  10925. break;
  10926. case "doc":
  10927. aTool = 6;
  10928. _iframe = $$("iframe", {
  10929. "frameborder": "no",
  10930. "border": "0",
  10931. "scrolling ": "no",
  10932. "style": {
  10933. "cssText": "border:0;width:100%;height:100%"
  10934. },
  10935. "src": "/Office/Word/WordEditArea.htm"
  10936. })
  10937. _box.appendChild(_iframe);
  10938. _box.appendChild(_jie);
  10939. _formdiv = new U.UF.UI.form(
  10940. "协同文档",
  10941. _box, {
  10942. "id": "docs_Yu" + cid + stage + task + tool,
  10943. "style": {
  10944. "width": "90%",
  10945. "height": "90%",
  10946. "overflow": 'hidden'
  10947. },
  10948. "onresize": function () { }
  10949. }, {
  10950. closecallback: function () { }
  10951. }, {
  10952. "style": {
  10953. "height": "36px"
  10954. }
  10955. }).form; //创建窗体
  10956. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10957. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10958. })
  10959. _taskbar = {
  10960. "id": str + _formdiv.id,
  10961. "style": {
  10962. "backgroundImage": "url(/img/icon/doc.png)"
  10963. },
  10964. "name": "协同文档",
  10965. "forms": _formdiv,
  10966. "click": function () {
  10967. U.MD.D.I.openApplication(str, obj, info);
  10968. }
  10969. }
  10970. break;
  10971. case "CocoPi":
  10972. aTool = 57;
  10973. _iframe = $$("iframe", {
  10974. "allowpaymentrequest": "allowpaymentrequest",
  10975. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  10976. "webkitallowfullscreen": "",
  10977. "mozallowfullscreen": "",
  10978. "frameborder": "no",
  10979. "border": "0",
  10980. "scrolling ": "no",
  10981. "style": {
  10982. "cssText": "border:0;width:100%;height:100%"
  10983. },
  10984. "src": "https://pi.cocorobo.cn/"
  10985. })
  10986. _box.appendChild(_iframe);
  10987. _box.appendChild(_jie);
  10988. _formdiv = new U.UF.UI.form(
  10989. "CocoPi",
  10990. _box, {
  10991. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10992. "style": {
  10993. "width": "90%",
  10994. "height": "90%",
  10995. "overflow": 'hidden'
  10996. },
  10997. "onresize": function () { }
  10998. }, {
  10999. closecallback: function () { }
  11000. }, {
  11001. "style": {
  11002. "height": "36px"
  11003. }
  11004. }).form; //创建窗体
  11005. _taskbar = {
  11006. "id": str + _formdiv.id,
  11007. "style": {
  11008. "backgroundImage": "url(/img/icon/cocopi.png)"
  11009. },
  11010. "name": "CocoPi",
  11011. "forms": _formdiv,
  11012. "click": function () {
  11013. U.MD.D.I.openApplication(str, obj, info);
  11014. }
  11015. }
  11016. break;
  11017. case "ppt":
  11018. aTool = 73;
  11019. _iframe = $$("iframe", {
  11020. "frameborder": "no",
  11021. "border": "0",
  11022. "scrolling ": "no",
  11023. "style": {
  11024. "cssText": "border:0;width:100%;height:100%"
  11025. },
  11026. "src": "https://ppt.cocorobo.cn/"
  11027. });
  11028. _box.appendChild(_iframe);
  11029. _box.appendChild(_jie);
  11030. _formdiv = new U.UF.UI.form(
  11031. "PPT",
  11032. _box, { //"/jsmind/example/demo.html"
  11033. "id": "ppts_Yu" + cid + stage + task + tool,
  11034. "style": {
  11035. "width": "90%",
  11036. "height": "90%",
  11037. "overflow": 'hidden'
  11038. },
  11039. "onresize": function () { }
  11040. }, {
  11041. closecallback: function () { }
  11042. }, {
  11043. "style": {
  11044. "height": "36px"
  11045. }
  11046. }).form; //创建窗体
  11047. _taskbar = {
  11048. "id": str + _formdiv.id,
  11049. "style": {
  11050. "backgroundImage": "url(/img/icon/ppt.png)"
  11051. },
  11052. "name": "PPT",
  11053. "forms": _formdiv,
  11054. "click": function () {
  11055. U.MD.D.I.openApplication(str, obj, info);
  11056. }
  11057. }
  11058. break;
  11059. }
  11060. if (_iframe) {
  11061. if (str == 'doc') {
  11062. _iframe = _formdiv.querySelector('iframe')
  11063. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11064. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  11065. })
  11066. if (onloadListener) {
  11067. _iframe.contentDocument.location.reload()
  11068. } else {
  11069. _iframe.contentDocument.location.reload()
  11070. }
  11071. } else if (str == 'mind') {
  11072. _iframe = _formdiv.querySelector('iframe')
  11073. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11074. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  11075. })
  11076. if (onloadListener) {
  11077. _iframe.contentDocument.location.reload()
  11078. } else {
  11079. _iframe.contentDocument.location.reload()
  11080. }
  11081. } else if (str == 'whiteboard') {
  11082. _iframe = _formdiv.querySelector('iframe')
  11083. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11084. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  11085. })
  11086. // if (onloadListener) {
  11087. // try {
  11088. // _iframe.src += "?cocorobo="+new Date().getTime()
  11089. // _iframe.contentWindow.document.location.reload()
  11090. // } catch (error) {
  11091. // }
  11092. // } else {
  11093. // _iframe.contentDocument.location.reload()
  11094. // }
  11095. } else if (str == 'CocoPi') {
  11096. _iframe = _formdiv.querySelector('iframe')
  11097. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11098. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  11099. })
  11100. if (onloadListener) {
  11101. _iframe.contentDocument.location.reload()
  11102. } else {
  11103. _iframe.contentDocument.location.reload()
  11104. }
  11105. } else if (str == 'ppt') {
  11106. _iframe = _formdiv.querySelector('iframe')
  11107. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11108. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  11109. })
  11110. if (onloadListener) {
  11111. _iframe.contentDocument.location.reload()
  11112. } else {
  11113. _iframe.contentDocument.location.reload()
  11114. }
  11115. } else {
  11116. _iframe.onload = () => { };
  11117. }
  11118. _jie.onclick = async () => {
  11119. let text = ''
  11120. let files = ''
  11121. let type = '2'
  11122. if (aTool == 1) {
  11123. text = _iframe.contentWindow.h.app.scene.elements
  11124. files = _iframe.contentWindow.h.app.files
  11125. type = '3'
  11126. } else if (aTool == 6) {
  11127. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  11128. type = '1'
  11129. } else if (aTool == 3) {
  11130. text = await U.MD.D.I.getEditorContent(_iframe);
  11131. type = '2'
  11132. } else if (aTool == 57) {
  11133. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  11134. type = '4'
  11135. } else if (aTool == 73) {
  11136. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  11137. type = '5'
  11138. }
  11139. _loading.style.display = 'flex'
  11140. if(aTool == 1){
  11141. U.MD.D.I.downloadFile(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan, files)
  11142. }else {
  11143. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  11144. }
  11145. }
  11146. }
  11147. //U.MD.D.I.openClick(str);
  11148. //如果有任务栏信息
  11149. // if (_taskbar) {
  11150. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  11151. // }
  11152. }
  11153. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  11154. var xmlhttp;
  11155. var Mac, Sn, DeviceId
  11156. if (window.XMLHttpRequest) {
  11157. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11158. xmlhttp = new XMLHttpRequest();
  11159. } else {
  11160. // IE6, IE5 浏览器执行代码
  11161. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11162. }
  11163. xmlhttp.onreadystatechange = function () {
  11164. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11165. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11166. // resolve(res.value[0][0].text);
  11167. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11168. }
  11169. }
  11170. }
  11171. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11172. xmlhttp.send();
  11173. }
  11174. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  11175. var xmlhttp;
  11176. var Mac, Sn, DeviceId
  11177. if (window.XMLHttpRequest) {
  11178. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11179. xmlhttp = new XMLHttpRequest();
  11180. } else {
  11181. // IE6, IE5 浏览器执行代码
  11182. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11183. }
  11184. xmlhttp.onreadystatechange = function () {
  11185. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11186. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11187. // resolve(res.value[0][0].text);
  11188. if (type == '2') {
  11189. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11190. } else if (type == '3') {
  11191. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  11192. // 如果是数组或含有 elements 并且 elements 是数组
  11193. let updateSceneData;
  11194. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  11195. if (Array.isArray(text)) {
  11196. // 兼容原有结构:仅为数组时
  11197. updateSceneData = { elements: text };
  11198. } else {
  11199. // 有 elements 和可能的 files 字段时,直接传递整个对象
  11200. updateSceneData = { ...text };
  11201. }
  11202. } else if (text && (text.elements || text.files)) {
  11203. updateSceneData = { ...text };
  11204. } else {
  11205. // fallback 兼容早期意外结构,作为 elements
  11206. updateSceneData = { elements: text };
  11207. }
  11208. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  11209. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  11210. const files = updateSceneData.files;
  11211. const fileKeys = Object.keys(files);
  11212. let promises = [];
  11213. let needConvert = false;
  11214. fileKeys.forEach(key => {
  11215. let file = files[key];
  11216. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  11217. // 是网络地址,需转换
  11218. needConvert = true;
  11219. let p = fetch(file.dataURL)
  11220. .then(res => res.blob())
  11221. .then(blob => {
  11222. return new Promise(resolve => {
  11223. const reader = new FileReader();
  11224. reader.onloadend = function () {
  11225. // data:[mime];base64,...
  11226. const base64 = reader.result;
  11227. file.dataURL = base64;
  11228. resolve();
  11229. };
  11230. reader.readAsDataURL(blob);
  11231. });
  11232. });
  11233. promises.push(p);
  11234. }
  11235. });
  11236. if (needConvert && promises.length > 0) {
  11237. Promise.all(promises).then(() => {
  11238. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11239. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  11240. });
  11241. } else {
  11242. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11243. }
  11244. } else {
  11245. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11246. }
  11247. } else if (type == '4') {
  11248. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  11249. } else if (type == '5') {
  11250. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11251. }
  11252. } else {
  11253. if (type == '2') {
  11254. iframe.contentWindow.editor.minder.importData('json', '')
  11255. } else if (type == '3') {
  11256. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11257. } else if (type == '4') {
  11258. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11259. }
  11260. }
  11261. }
  11262. }
  11263. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11264. xmlhttp.send();
  11265. }
  11266. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11267. var xmlhttp;
  11268. var Mac, Sn, DeviceId
  11269. if (window.XMLHttpRequest) {
  11270. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11271. xmlhttp = new XMLHttpRequest();
  11272. } else {
  11273. // IE6, IE5 浏览器执行代码
  11274. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11275. }
  11276. xmlhttp.onreadystatechange = function () {
  11277. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11278. if (xmlhttp.response) {
  11279. // resolve(res.value[0][0].text);
  11280. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11281. // $(fileInput).val('');
  11282. // });
  11283. span.innerHTML = '上传成功'
  11284. setTimeout(() => {
  11285. loading.style.display = 'none'
  11286. }, 1000);
  11287. }
  11288. }
  11289. }
  11290. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11291. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11292. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11293. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11294. // 设置请求头,表示请求体的编码格式
  11295. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11296. // 设置请求体,使用url-encoded格式的数据
  11297. }
  11298. U.MD.D.I.downloadFile = function (cid, s, task, t, uid, type, text, loading, span, files) {
  11299. // 遍历 files,上传后只把 dataURL 变成链接,其它结构不变
  11300. let _fileArray = Object.keys(files);
  11301. if (!_fileArray.length) {
  11302. let text_str = JSON.stringify({
  11303. elements: text,
  11304. files: []
  11305. });
  11306. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11307. return;
  11308. }
  11309. var credentials = {
  11310. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  11311. secretAccessKey: "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",
  11312. };
  11313. window.AWS.config.update(credentials);
  11314. window.AWS.config.region = "cn-northwest-1";
  11315. var bucket = new window.AWS.S3({
  11316. params: { Bucket: "ccrb" }
  11317. });
  11318. let uploadedCount = 0;
  11319. let total = _fileArray.length;
  11320. _fileArray.forEach(function (key, idx) {
  11321. let fileObj = files[key];
  11322. if (!fileObj || !fileObj.dataURL) {
  11323. // 没有内容就直接加计数
  11324. uploadedCount++;
  11325. if (uploadedCount === total) finalizeUpload();
  11326. return;
  11327. }
  11328. // 如果 dataURL 已经是链接(http, https, //, oss, cloud, cocorobo)就不上传
  11329. if (
  11330. typeof fileObj.dataURL === "string" &&
  11331. (
  11332. /^https?:\/\//.test(fileObj.dataURL) ||
  11333. /^\/\//.test(fileObj.dataURL) ||
  11334. fileObj.dataURL.startsWith('oss://') ||
  11335. fileObj.dataURL.startsWith('cloud://') ||
  11336. fileObj.dataURL.indexOf('.cocorobo.cn/') > -1
  11337. )
  11338. ) {
  11339. // 已经是链接,不上传,直接计数
  11340. uploadedCount++;
  11341. if (uploadedCount === total) finalizeUpload();
  11342. return;
  11343. }
  11344. // 是 base64 字符串转 File
  11345. if (typeof fileObj.dataURL === "string") {
  11346. let filename = fileObj.name || ('file_' + key);
  11347. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11348. }
  11349. let file = fileObj.dataURL;
  11350. if (file) {
  11351. // fileObj 结构类似:
  11352. // {
  11353. // name: "file_3344aa4c0fa552dc01cb2fe5edb6e4eb3aed9e39",
  11354. // size: 12034,
  11355. // type: "image/jpeg",
  11356. // webkitRelativePath: "",
  11357. // dataURL: File对象
  11358. // }
  11359. let ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11360. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11361. : (file.type ? file.type.split('/')[1] : 'png');
  11362. let basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11363. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11364. : (fileObj.name || ('file_' + key));
  11365. var params = {
  11366. Key: basename + '_' + new Date().getTime() + "." + ext,
  11367. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11368. Body: file,
  11369. "Access-Control-Allow-Credentials": "*",
  11370. ACL: "public-read",
  11371. };
  11372. var options = {
  11373. partSize: 2048 * 1024 * 1024,
  11374. queueSize: 2,
  11375. leavePartsOnError: true,
  11376. };
  11377. bucket.upload(params, options)
  11378. .on("httpUploadProgress", function (evt) {
  11379. // 进度处理
  11380. })
  11381. .send(function (err, data) {
  11382. if (data) {
  11383. // 只将 dataURL 字段替换为链接,其它原样不动
  11384. files[key].dataURL = data.Location;
  11385. }
  11386. // 上传出错仍然整体结构
  11387. uploadedCount++;
  11388. if (uploadedCount === total) finalizeUpload();
  11389. });
  11390. } else {
  11391. uploadedCount++;
  11392. if (uploadedCount === total) finalizeUpload();
  11393. }
  11394. });
  11395. function finalizeUpload() {
  11396. // 最终打包时,files结构不变,只是dataURL变为链接
  11397. // let fileList = _fileArray.map(key => files[key]);
  11398. let text_str = JSON.stringify({
  11399. elements: text,
  11400. files: files
  11401. });
  11402. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11403. }
  11404. }
  11405. U.MD.D.I.downloadFile2 = function (cid, stage, task, t, uid, text, loading, span, files, _iframe, str) {
  11406. // 优化:常量抽离、合并相同代码、结构简化
  11407. const BUCKET = "ccrb";
  11408. const REGION = "cn-northwest-1";
  11409. const ACCESS_KEY_ID = "AKIATLPEDU37QV5CHLMH";
  11410. const SECRET_ACCESS_KEY = "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";
  11411. function injectScreenshotScript(text_str) {
  11412. // 注入屏幕截图脚本到iframe
  11413. loading.style.display = 'flex';
  11414. const doc = _iframe.contentWindow.document;
  11415. var s = doc.createElement("script");
  11416. s.type = "text/javascript";
  11417. // 优化脚本内容拼接
  11418. s.innerHTML = `
  11419. var _js = document.createElement("script");
  11420. _js.type="text/javascript";
  11421. _js.charset="UTF-8";
  11422. _js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  11423. _js.onload = function(){
  11424. var imgs = document.getElementsByTagName("img");
  11425. for(var i = 0; i < imgs.length; i++) { imgs[i].crossOrigin = "anonymous"; }
  11426. html2canvas(document.body, {
  11427. allowTaint: true,
  11428. useCORS: true,
  11429. height: document.body.scrollHeight,
  11430. windowHeight: document.body.scrollHeight
  11431. }).then(canvas => {
  11432. var base64Url = canvas.toDataURL("image/png");
  11433. var file = dataURLtoFile_shishi(base64Url, "截图");
  11434. beforeUpload_shishi(
  11435. file,
  11436. '${uid}',
  11437. '${cid}',
  11438. '${stage}',
  11439. '${task}',
  11440. '${t}',
  11441. '${str}_loadLi_Jie${cid}${stage}${task}${t}${uid}',
  11442. '1',
  11443. \`${text_str}\`
  11444. );
  11445. });
  11446. };
  11447. document.head.appendChild(_js);
  11448. `;
  11449. doc.head.appendChild(s);
  11450. }
  11451. let _fileArray = Object.keys(files);
  11452. if (!_fileArray.length) {
  11453. const text_str = JSON.stringify({ elements: text, files: [] });
  11454. console.log(loading);
  11455. injectScreenshotScript(text_str);
  11456. return;
  11457. }
  11458. // AWS 配置初始化(只做一次)
  11459. if (!window.AWS?.S3?.__ccrbInitialized) {
  11460. window.AWS.config.update({
  11461. accessKeyId: ACCESS_KEY_ID,
  11462. secretAccessKey: SECRET_ACCESS_KEY
  11463. });
  11464. window.AWS.config.region = REGION;
  11465. window.AWS.S3.__ccrbInitialized = true;
  11466. }
  11467. const bucket = new window.AWS.S3({ params: { Bucket: BUCKET } });
  11468. let uploadedCount = 0;
  11469. const total = _fileArray.length;
  11470. function isFileUrl(url) {
  11471. return typeof url === "string" && (
  11472. /^https?:\/\//.test(url) ||
  11473. /^\/\//.test(url) ||
  11474. url.startsWith('oss://') ||
  11475. url.startsWith('cloud://') ||
  11476. url.indexOf('.cocorobo.cn/') > -1
  11477. );
  11478. }
  11479. function finalizeUpload() {
  11480. // 优化:只注入脚本,不重复提交
  11481. const text_str = JSON.stringify({ elements: text, files });
  11482. console.log(loading);
  11483. injectScreenshotScript(text_str);
  11484. }
  11485. _fileArray.forEach(function (key) {
  11486. const fileObj = files[key];
  11487. if (!fileObj || !fileObj.dataURL) {
  11488. uploadedCount++;
  11489. if (uploadedCount === total) finalizeUpload();
  11490. return;
  11491. }
  11492. if (isFileUrl(fileObj.dataURL)) {
  11493. uploadedCount++;
  11494. if (uploadedCount === total) finalizeUpload();
  11495. return;
  11496. }
  11497. // base64字符串转 File
  11498. if (typeof fileObj.dataURL === "string") {
  11499. const filename = fileObj.name || ('file_' + key);
  11500. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11501. }
  11502. const file = fileObj.dataURL;
  11503. if (!file) {
  11504. uploadedCount++;
  11505. if (uploadedCount === total) finalizeUpload();
  11506. return;
  11507. }
  11508. const ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11509. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11510. : (file.type ? file.type.split('/')[1] : 'png');
  11511. const basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11512. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11513. : (fileObj.name || ('file_' + key));
  11514. const params = {
  11515. Key: `${basename}_${Date.now()}.${ext}`,
  11516. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11517. Body: file,
  11518. "Access-Control-Allow-Credentials": "*",
  11519. ACL: "public-read"
  11520. };
  11521. const options = {
  11522. partSize: 2048 * 1024 * 1024,
  11523. queueSize: 2,
  11524. leavePartsOnError: true
  11525. };
  11526. bucket.upload(params, options)
  11527. .on("httpUploadProgress", function (evt) {
  11528. // 进度处理可自定义
  11529. })
  11530. .send(function (err, data) {
  11531. if (data) {
  11532. files[key].dataURL = data.Location;
  11533. }
  11534. uploadedCount++;
  11535. if (uploadedCount === total) finalizeUpload();
  11536. });
  11537. });
  11538. }
  11539. function dataURLtoFile_shishi(dataurl, filename) {
  11540. try {
  11541. if (typeof dataurl !== "string" || dataurl.indexOf(',') === -1) {
  11542. throw new Error("Invalid dataurl");
  11543. }
  11544. let arr = dataurl.split(","),
  11545. mimeMatch = arr[0].match(/:(.*?);/);
  11546. if (!mimeMatch) {
  11547. throw new Error("Mime type not found in dataurl");
  11548. }
  11549. let mime = mimeMatch[1];
  11550. let bstr = atob(arr[1]);
  11551. let n = bstr.length;
  11552. let u8arr = new Uint8Array(n);
  11553. for (let i = 0; i < n; i++) {
  11554. u8arr[i] = bstr.charCodeAt(i);
  11555. }
  11556. // Check for File constructor compatibility
  11557. if (typeof File === "function") {
  11558. return new File([u8arr], filename, { type: mime });
  11559. } else {
  11560. // fallback for very old browsers
  11561. let blob = new Blob([u8arr], { type: mime });
  11562. blob.name = filename;
  11563. return blob;
  11564. }
  11565. } catch(e) {
  11566. console.error("dataURLtoFile_shishi error:", e, dataurl, filename);
  11567. // 返回null,调用方自行判断
  11568. return null;
  11569. }
  11570. }
  11571. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11572. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11573. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11574. _userinfo = US.userInfo, //登录用户信息
  11575. _userid = US.userInfo.userid //登录用户id
  11576. let _iframe;
  11577. let _cid = cid,
  11578. _stage = stage,
  11579. _task = task,
  11580. _tool = tool;
  11581. var _jie = $$("div", {
  11582. "style": {
  11583. "position": "absolute",
  11584. "bottom": "50px",
  11585. "right": "50px",
  11586. "zIndex": "9999",
  11587. "backgroundColor": "#2268bc",
  11588. "color": "#fff",
  11589. "padding": "12px 20px",
  11590. "cursor": "pointer",
  11591. "borderRadius": "4px",
  11592. },
  11593. "innerHTML": "提交作业"
  11594. })
  11595. let aTool = ''
  11596. let _loading = document.createElement('div')
  11597. _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;"
  11598. // _loading.id = "";
  11599. let _lchild = document.createElement('div')
  11600. let _limg = document.createElement('img')
  11601. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11602. _limg.style = "width: 26px;margin-right: 10px;"
  11603. _lchild.appendChild(_limg)
  11604. let _lspan = document.createElement('span')
  11605. _lspan.innerHTML = "上传中..."
  11606. _lchild.appendChild(_lspan)
  11607. _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%);"
  11608. _loading.appendChild(_lchild)
  11609. var _box = $$('div', {
  11610. "style": {
  11611. "position": "relative",
  11612. "width": "100%",
  11613. "height": "100%",
  11614. },
  11615. })
  11616. _box.appendChild(_loading)
  11617. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11618. switch (str) {
  11619. case "CocoPi":
  11620. aTool = 57;
  11621. _iframe = $$("iframe", {
  11622. "allowpaymentrequest": "allowpaymentrequest",
  11623. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11624. "webkitallowfullscreen": "",
  11625. "mozallowfullscreen": "",
  11626. "frameborder": "no",
  11627. "border": "0",
  11628. "scrolling ": "no",
  11629. "style": {
  11630. "cssText": "border:0;width:100%;height:100%"
  11631. },
  11632. "src": "https://pi.cocorobo.cn/"
  11633. })
  11634. _box.appendChild(_iframe);
  11635. _box.appendChild(_jie);
  11636. _formdiv = new U.UF.UI.form(
  11637. "CocoPi",
  11638. _box, {
  11639. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11640. "style": {
  11641. "width": "90%",
  11642. "height": "90%",
  11643. "overflow": 'hidden'
  11644. },
  11645. "onresize": function () { }
  11646. }, {
  11647. closecallback: function () { }
  11648. }, {
  11649. "style": {
  11650. "height": "36px"
  11651. }
  11652. }).form; //创建窗体
  11653. _taskbar = {
  11654. "id": str + _formdiv.id,
  11655. "style": {
  11656. "backgroundImage": "url(/img/icon/cocopi.png)"
  11657. },
  11658. "name": "CocoPi",
  11659. "forms": _formdiv,
  11660. "click": function () {
  11661. U.MD.D.I.openApplication(str, obj, info);
  11662. }
  11663. }
  11664. break;
  11665. }
  11666. if (_iframe) {
  11667. if (str == 'CocoPi') {
  11668. _iframe = _formdiv.querySelector('iframe')
  11669. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11670. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11671. })
  11672. if (onloadListener) {
  11673. _iframe.contentDocument.location.reload()
  11674. } else {
  11675. _iframe.contentDocument.location.reload()
  11676. }
  11677. }
  11678. _jie.onclick = async () => {
  11679. let text = ''
  11680. if (aTool == 57) {
  11681. text = _iframe.contentWindow.getLoadXmlStr()
  11682. }
  11683. _loading.style.display = 'flex'
  11684. console.log(_loading);
  11685. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11686. _loading.style.display = 'none'
  11687. let _div = document.createElement('div')
  11688. _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;"
  11689. let _inner = document.createElement('div')
  11690. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11691. _inner.innerHTML = "上传成功"
  11692. _div.appendChild(_inner)
  11693. _iframe.contentWindow.window.document.body.appendChild(_div)
  11694. _div.onclick = () => {
  11695. _iframe.contentWindow.window.document.body.removeChild(_div)
  11696. }
  11697. setTimeout(() => {
  11698. _iframe.contentWindow.window.document.body.removeChild(_div)
  11699. }, 1000);
  11700. }, [], { "type": "POST", "withCredentials": true });
  11701. }
  11702. }
  11703. }
  11704. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11705. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11706. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11707. _userid = student.userid, //登录用户id
  11708. _username = student.student //用户名字
  11709. let _iframe;
  11710. let _cid = cid,
  11711. _stage = stage,
  11712. _task = task,
  11713. _tool = tool;
  11714. var _jie = $$("div", {
  11715. "style": {
  11716. "position": "absolute",
  11717. "bottom": "50px",
  11718. "right": "50px",
  11719. "zIndex": "9999",
  11720. "backgroundColor": "#2268bc",
  11721. "color": "#fff",
  11722. "padding": "12px 20px",
  11723. "cursor": "pointer",
  11724. "borderRadius": "4px",
  11725. },
  11726. "innerHTML": "提交作业"
  11727. })
  11728. let aTool = ''
  11729. let _loading = document.createElement('div')
  11730. _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;"
  11731. // _loading.id = "";
  11732. let _lchild = document.createElement('div')
  11733. let _limg = document.createElement('img')
  11734. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11735. _limg.style = "width: 26px;margin-right: 10px;"
  11736. _lchild.appendChild(_limg)
  11737. let _lspan = document.createElement('span')
  11738. _lspan.innerHTML = "上传中..."
  11739. _lchild.appendChild(_lspan)
  11740. _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%);"
  11741. _loading.appendChild(_lchild)
  11742. var _box = $$('div', {
  11743. "style": {
  11744. "position": "relative",
  11745. "width": "100%",
  11746. "height": "100%",
  11747. },
  11748. })
  11749. _box.appendChild(_loading)
  11750. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11751. switch (str) {
  11752. case "CocoPi":
  11753. aTool = 57;
  11754. _iframe = $$("iframe", {
  11755. "allowpaymentrequest": "allowpaymentrequest",
  11756. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11757. "webkitallowfullscreen": "",
  11758. "mozallowfullscreen": "",
  11759. "frameborder": "no",
  11760. "border": "0",
  11761. "scrolling ": "no",
  11762. "style": {
  11763. "cssText": "border:0;width:100%;height:100%"
  11764. },
  11765. "src": "https://pi.cocorobo.cn/"
  11766. })
  11767. _box.appendChild(_iframe);
  11768. _box.appendChild(_jie);
  11769. _formdiv = new U.UF.UI.form(
  11770. "CocoPi-" + _username,
  11771. _box, {
  11772. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11773. "style": {
  11774. "width": "90%",
  11775. "height": "90%",
  11776. "overflow": 'hidden'
  11777. },
  11778. "onresize": function () { }
  11779. }, {
  11780. closecallback: function () { }
  11781. }, {
  11782. "style": {
  11783. "height": "36px"
  11784. }
  11785. }).form; //创建窗体
  11786. _taskbar = {
  11787. "id": str + _formdiv.id,
  11788. "style": {
  11789. "backgroundImage": "url(/img/icon/cocopi.png)"
  11790. },
  11791. "name": "CocoPi",
  11792. "forms": _formdiv,
  11793. "click": function () {
  11794. U.MD.D.I.openApplication(str, obj, info);
  11795. }
  11796. }
  11797. break;
  11798. }
  11799. if (_iframe) {
  11800. if (str == 'CocoPi') {
  11801. _iframe = _formdiv.querySelector('iframe')
  11802. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11803. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11804. })
  11805. if (onloadListener) {
  11806. _iframe.contentDocument.location.reload()
  11807. } else {
  11808. _iframe.contentDocument.location.reload()
  11809. }
  11810. }
  11811. _jie.onclick = async () => {
  11812. let text = ''
  11813. if (aTool == 57) {
  11814. text = _iframe.contentWindow.getLoadXmlStr()
  11815. }
  11816. _loading.style.display = 'flex'
  11817. console.log(_loading);
  11818. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11819. _loading.style.display = 'none'
  11820. let _div = document.createElement('div')
  11821. _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;"
  11822. let _inner = document.createElement('div')
  11823. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11824. _inner.innerHTML = "上传成功"
  11825. _div.appendChild(_inner)
  11826. _iframe.contentWindow.window.document.body.appendChild(_div)
  11827. _div.onclick = () => {
  11828. _iframe.contentWindow.window.document.body.removeChild(_div)
  11829. }
  11830. setTimeout(() => {
  11831. _iframe.contentWindow.window.document.body.removeChild(_div)
  11832. }, 1000);
  11833. }, [], { "type": "POST", "withCredentials": true });
  11834. }
  11835. }
  11836. }
  11837. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11838. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11839. if (res.value[0].length > 0) {
  11840. if (atool == 57) {
  11841. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11842. }
  11843. } else {
  11844. if (atool == 57) {
  11845. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11846. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11847. }
  11848. }
  11849. }, [], { "type": "POST", "withCredentials": true });
  11850. }
  11851. U.MD.D.addOp = function (text, type, time) {
  11852. var userInfo = US.userInfo;
  11853. if (Object.keys(userInfo).length !== 0) {
  11854. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11855. }, [], { "type": "POST", "withCredentials": true });
  11856. }
  11857. }