DeskTop.js 780 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308
  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 == "opencCscl2") {
  5568. let _data = {
  5569. cid: e.data.cid || '',
  5570. gid: e.data.gid || '',
  5571. }
  5572. U.MD.D.I.openInApplication("opencCscl2", _data)
  5573. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5574. U.MD.D.I.openApplication("dataBoardTest")
  5575. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5576. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5577. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5578. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5579. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5580. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5581. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5582. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5583. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5584. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5585. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5586. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5587. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5588. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5589. } else if (e.data.tools && e.data.tools == "loginSz") {
  5590. U.MD.D.I.openInApplication("loginSz")
  5591. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5592. if ($('#classroom_observation_board')[0]) {
  5593. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5594. }
  5595. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5596. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5597. if ($('#classroom_observation_ob_comment')[0]) {
  5598. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5599. }
  5600. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5601. } else if (e.data.tools && e.data.tools == "logout") {
  5602. U.MD.U.LO.logoutSystem()
  5603. } else if (e.data.tools && e.data.tools == "getLogin") {
  5604. let _iframe = $('#UI_Login')[0];
  5605. if (_iframe) {
  5606. var userInfo = US.userInfo;
  5607. var type = 2
  5608. if (userInfo && userInfo.userid) {
  5609. type = 1
  5610. }
  5611. _contentWindow = _iframe.contentWindow;
  5612. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5613. }
  5614. } else if (e.data.tools && e.data.tools == "setUrl") {
  5615. let _data = e.data.data || {}
  5616. U.MD.D.I.openInApplication("setUrl", _data)
  5617. }
  5618. });
  5619. U.MD.D.I.selectUser = function () {
  5620. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5621. if (res.value[0].length > 0) {
  5622. US.userInfo = res.value[0][0];
  5623. $(".userName")[0].innerHTML = US.userInfo.username;
  5624. }
  5625. }, [], { "type": "GET", "withCredentials": true });
  5626. }
  5627. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5628. var _userinfo = US.userInfo, //登录用户信息
  5629. _userid = US.userInfo.userid, //登录用户id
  5630. _oid = _userinfo.organizeid,
  5631. _type = US.userInfo.type,
  5632. _org = US.userInfo.org,
  5633. _role = US.userInfo.role,
  5634. _classId = US.userInfo.classid;
  5635. if (_type == 4) {
  5636. tType = 4
  5637. }
  5638. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5639. if (opArray.includes(str)) {
  5640. let _str = str
  5641. if (str == 'appStore') {
  5642. _str = "cocoFlow"
  5643. } else if (str == "futureClass") {
  5644. _str = "cocoNote"
  5645. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5646. _str = "IntelligentForm"
  5647. } else if (str == "testStudent" || str == "testStudentSies") {
  5648. _str = "TeacherCenter"
  5649. }
  5650. try {
  5651. if (data) {
  5652. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5653. } else {
  5654. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5655. }
  5656. } catch (error) {
  5657. console.log(error);
  5658. }
  5659. }
  5660. switch (str) {
  5661. case "studyDetailNT": //无终端模式
  5662. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5663. setTimeout(() => {
  5664. U.MD.U.L.login();
  5665. }, 2000);
  5666. } else {
  5667. _formdiv = new U.UF.UI.form(
  5668. "课程详情",
  5669. $$("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 }), {
  5670. "id": "studyDetailNT",
  5671. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, { "style": { "height": "36px" } }).form; //创建窗体
  5676. _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); } }
  5677. break;
  5678. }
  5679. case "studyDetail":
  5680. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5681. setTimeout(() => {
  5682. U.MD.U.L.login();
  5683. }, 2000);
  5684. } else {
  5685. _formdiv = new U.UF.UI.form(
  5686. "课程详情",
  5687. $$("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 }), {
  5688. "id": "studyDetail",
  5689. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { },
  5693. isdrag: false,
  5694. isstretching: false,
  5695. isenlarge: false,
  5696. isnarrow: false
  5697. }, { "style": { "height": "36px" } }).form; //创建窗体
  5698. _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); } }
  5699. break;
  5700. }
  5701. case "studyDetailTrain":
  5702. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5703. setTimeout(() => {
  5704. U.MD.U.L.login();
  5705. }, 2000);
  5706. } else {
  5707. _formdiv = new U.UF.UI.form(
  5708. "培训详情",
  5709. $$("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 }), {
  5710. "id": "studyDetailTrain",
  5711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. }
  5719. case "studyDetailS":
  5720. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5721. setTimeout(() => {
  5722. U.MD.U.L.login();
  5723. }, 2000);
  5724. } else {
  5725. _formdiv = new U.UF.UI.form(
  5726. "项目详情",
  5727. $$("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 }), {
  5728. "id": "studyDetailS",
  5729. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //创建窗体
  5734. _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); } }
  5735. break;
  5736. }
  5737. case "studyDetailStudio":
  5738. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5739. setTimeout(() => {
  5740. U.MD.U.L.login();
  5741. }, 2000);
  5742. } else {
  5743. _formdiv = new U.UF.UI.form(
  5744. "工作详情",
  5745. $$("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 }), {
  5746. "id": "studyDetailStudio",
  5747. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. }
  5755. case "studyDetailS5":
  5756. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5757. setTimeout(() => {
  5758. U.MD.U.L.login();
  5759. }, 2000);
  5760. } else {
  5761. _formdiv = new U.UF.UI.form(
  5762. "项目详情",
  5763. $$("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 }), {
  5764. "id": "studyDetailS",
  5765. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5766. "onresize": function () { }
  5767. }, {
  5768. closecallback: function () { }
  5769. }, { "style": { "height": "36px" } }).form; //创建窗体
  5770. _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); } }
  5771. break;
  5772. }
  5773. case "studyDetailGM":
  5774. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5775. setTimeout(() => {
  5776. U.MD.U.L.login();
  5777. }, 2000);
  5778. } else {
  5779. _formdiv = new U.UF.UI.form(
  5780. "课程详情",
  5781. $$("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 }), {
  5782. "id": "studyDetail",
  5783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. }
  5791. case "hanUrl":
  5792. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5793. setTimeout(() => {
  5794. U.MD.U.L.login();
  5795. }, 2000);
  5796. } else {
  5797. _formdiv = new U.UF.UI.form(
  5798. "汉字宫",
  5799. $$("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" }), {
  5800. "id": "hanUrl",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _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); } }
  5807. break;
  5808. }
  5809. case "index":
  5810. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5811. setTimeout(() => {
  5812. U.MD.U.L.login();
  5813. }, 2000);
  5814. } else {
  5815. _formdiv = new U.UF.UI.form(
  5816. "课程中心",
  5817. $$("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 }), {
  5818. "id": "study",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _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); } }
  5825. break;
  5826. }
  5827. case "dataClass":
  5828. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5829. setTimeout(() => {
  5830. U.MD.U.L.login();
  5831. }, 2000);
  5832. } else {
  5833. _formdiv = new U.UF.UI.form(
  5834. "数据报告",
  5835. $$("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 }), {
  5836. "id": "dataClass",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _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); } }
  5843. break;
  5844. }
  5845. case "opencCscl":
  5846. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5847. setTimeout(() => {
  5848. U.MD.U.L.login();
  5849. }, 2000);
  5850. } else {
  5851. _formdiv = new U.UF.UI.form(
  5852. "协同建构",
  5853. $$("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 }), {
  5854. "id": "futureClass",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. break;
  5862. }
  5863. case "opencCscl2":
  5864. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5865. setTimeout(() => {
  5866. U.MD.U.L.login();
  5867. }, 2000);
  5868. } else {
  5869. _formdiv = new U.UF.UI.form(
  5870. "跨学科学习平台",
  5871. $$("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 }), {
  5872. "id": "futureClass",
  5873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _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); } }
  5879. break;
  5880. }
  5881. case "openCourseUpdate":
  5882. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5883. setTimeout(() => {
  5884. U.MD.U.L.login();
  5885. }, 2000);
  5886. } else {
  5887. _formdiv = new U.UF.UI.form(
  5888. "课程管理",
  5889. $$("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 }), {
  5890. "id": "openCourseUpdate",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. break;
  5897. }
  5898. case "openNewCourseUpdate":
  5899. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5900. setTimeout(() => {
  5901. U.MD.U.L.login();
  5902. }, 2000);
  5903. } else {
  5904. _formdiv = new U.UF.UI.form(
  5905. "课程管理",
  5906. $$("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 }), {
  5907. "id": "openCourseUpdate",
  5908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. break;
  5914. }
  5915. case "openCoursePptUpdate":
  5916. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5917. setTimeout(() => {
  5918. U.MD.U.L.login();
  5919. }, 2000);
  5920. } else {
  5921. _formdiv = new U.UF.UI.form(
  5922. "课程管理",
  5923. $$("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 }), {
  5924. "id": "openCourseUpdate",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. break;
  5931. }
  5932. case "openCourseEUpdate":
  5933. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5934. setTimeout(() => {
  5935. U.MD.U.L.login();
  5936. }, 2000);
  5937. } else {
  5938. _formdiv = new U.UF.UI.form(
  5939. "课程管理",
  5940. $$("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 }), {
  5941. "id": "openCourseUpdate",
  5942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. break;
  5948. }
  5949. case "openCourseAiUpdate":
  5950. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5951. setTimeout(() => {
  5952. U.MD.U.L.login();
  5953. }, 2000);
  5954. } else {
  5955. _formdiv = new U.UF.UI.form(
  5956. "课程管理",
  5957. $$("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 }), {
  5958. "id": "openCourseUpdate",
  5959. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //创建窗体
  5964. break;
  5965. }
  5966. case "openCourseAiUpdate2":
  5967. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5968. setTimeout(() => {
  5969. U.MD.U.L.login();
  5970. }, 2000);
  5971. } else {
  5972. _formdiv = new U.UF.UI.form(
  5973. "课程管理",
  5974. $$("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 }), {
  5975. "id": "openCourseUpdate",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. break;
  5982. }
  5983. case "openCourseNewUpdate":
  5984. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5985. setTimeout(() => {
  5986. U.MD.U.L.login();
  5987. }, 2000);
  5988. } else {
  5989. _formdiv = new U.UF.UI.form(
  5990. "课程管理",
  5991. $$("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 }), {
  5992. "id": "openCourseUpdate",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. break;
  5999. }
  6000. case "inviteLoginSz":
  6001. _formdiv = new U.UF.UI.form(
  6002. "随机码登录",
  6003. $$("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 }), {
  6004. "id": "loginSz",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. break;
  6011. case "loginSz":
  6012. _formdiv = new U.UF.UI.form(
  6013. "教师登录",
  6014. $$("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" }), {
  6015. "id": "loginSz",
  6016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //创建窗体
  6021. break;
  6022. case "teacher":
  6023. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6024. setTimeout(() => {
  6025. U.MD.U.L.login();
  6026. }, 2000);
  6027. } else {
  6028. _formdiv = new U.UF.UI.form(
  6029. "教师管理",
  6030. $$("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 }), {
  6031. "id": "teacher",
  6032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. break;
  6038. }
  6039. case "dataBoardSZArea":
  6040. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6041. setTimeout(() => {
  6042. U.MD.U.L.login();
  6043. }, 2000);
  6044. } else {
  6045. _formdiv = new U.UF.UI.form(
  6046. "综合数据看板",
  6047. $$("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 }), {
  6048. "id": "dataBoardSZArea",
  6049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. break;
  6055. }
  6056. case "dataBoardSZCity":
  6057. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6058. setTimeout(() => {
  6059. U.MD.U.L.login();
  6060. }, 2000);
  6061. } else {
  6062. _formdiv = new U.UF.UI.form(
  6063. "综合数据看板",
  6064. $$("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 }), {
  6065. "id": "dataBoardSZCity",
  6066. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. break;
  6072. }
  6073. case "classroom_observation_board":
  6074. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6075. setTimeout(() => {
  6076. U.MD.U.L.login();
  6077. }, 2000);
  6078. } else {
  6079. _formdiv = new U.UF.UI.form(
  6080. "课堂观察",
  6081. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid=" + data }), {
  6082. "id": "classroom_observation_board",
  6083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. break;
  6089. }
  6090. case "classroom_observation_ob_comment":
  6091. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6092. setTimeout(() => {
  6093. U.MD.U.L.login();
  6094. }, 2000);
  6095. } else {
  6096. _formdiv = new U.UF.UI.form(
  6097. "课堂审核",
  6098. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid=" + data }), {
  6099. "id": "classroom_observation_ob_comment",
  6100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. break;
  6106. }
  6107. case "gptConfig":
  6108. _formdiv = new U.UF.UI.form(
  6109. data.name ? data.name : "应用中心",
  6110. $$("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 }), {
  6111. "id": "gptConfig" + data.id,
  6112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. break;
  6118. case "testDetail":
  6119. _formdiv = new U.UF.UI.form(
  6120. "表单填写",
  6121. $$("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 }), {
  6122. "id": "testDetail" + data,
  6123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. break;
  6129. case "setUrl":
  6130. _formdiv = new U.UF.UI.form(
  6131. data.title,
  6132. $$("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 }), {
  6133. "id": "setUrl" + data.id,
  6134. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { },
  6138. isdrag: false,
  6139. isstretching: false,
  6140. isenlarge: false,
  6141. isnarrow: false
  6142. }, { "style": { "height": "36px" } }).form; //创建窗体
  6143. break;
  6144. }
  6145. }
  6146. U.MD.D.I.openApplication = function (str, obj, info) {
  6147. obj = obj || {};
  6148. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6149. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6150. _userinfo = US.userInfo, //登录用户信息
  6151. _userid = obj.userid || US.userInfo.userid, //登录用户id
  6152. _oid = obj.organizeid || _userinfo.organizeid,
  6153. _type = US.userInfo.type,
  6154. _org = obj.org || US.userInfo.org,
  6155. _role = US.userInfo.role,
  6156. _classId = US.userInfo.classid,
  6157. _TscreenType = 1
  6158. _screenType = 2,
  6159. _SscreenType = 3;
  6160. let iframeBool = true
  6161. if (U.UF.UI.form.allForm[str]) {
  6162. iframeBool = false
  6163. }
  6164. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6165. return;
  6166. }
  6167. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6168. if (opArray.includes(str)) {
  6169. let _str = str
  6170. if (str == 'appStore') {
  6171. _str = "cocoFlow"
  6172. } else if (str == "futureClass") {
  6173. _str = "cocoNote"
  6174. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6175. _str = "IntelligentForm"
  6176. } else if (str == "testStudent" || str == "testStudentSies") {
  6177. _str = "TeacherCenter"
  6178. }
  6179. try {
  6180. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6181. } catch (error) {
  6182. console.log(error);
  6183. }
  6184. }
  6185. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6186. switch (str) {
  6187. case "studnetProject": //好友打开
  6188. _formdiv = new U.UF.UI.form(
  6189. "我的项目",
  6190. $$("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 }), {
  6191. "id": "studnetProject",
  6192. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6193. "onresize": function () { }
  6194. }, {
  6195. closecallback: function () { }
  6196. }, { "style": { "height": "36px" } }).form; //创建窗体
  6197. _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); } }
  6198. break;
  6199. case "studentEvaluate": //好友打开
  6200. _formdiv = new U.UF.UI.form(
  6201. "我的评价",
  6202. $$("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 }), {
  6203. "id": "studentEvaluate",
  6204. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6205. "onresize": function () { }
  6206. }, {
  6207. closecallback: function () { }
  6208. }, { "style": { "height": "36px" } }).form; //创建窗体
  6209. _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); } }
  6210. break;
  6211. case "my":
  6212. _formdiv = new U.UF.UI.form(
  6213. "我的资料",
  6214. $$("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 }), {
  6215. "id": "my",
  6216. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //创建窗体
  6221. _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); } }
  6222. break;
  6223. case "program":
  6224. _formdiv = new U.UF.UI.form(
  6225. "编程平台",
  6226. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6227. "id": "program",
  6228. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //创建窗体
  6233. _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); } }
  6234. break;
  6235. case "library":
  6236. _formdiv = new U.UF.UI.form(
  6237. "素材库",
  6238. $$("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 }), {
  6239. "id": "library",
  6240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //创建窗体
  6245. _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); } }
  6246. break;
  6247. case "whiteboard":
  6248. _formdiv = new U.UF.UI.form(
  6249. "电子白板",
  6250. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6251. "id": "whiteboard",
  6252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //创建窗体
  6257. _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); } }
  6258. break;
  6259. case "investigation":
  6260. _formdiv = new U.UF.UI.form(
  6261. "问卷调查",
  6262. $$("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 }), {
  6263. "id": "investigation",
  6264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. _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); } }
  6270. break;
  6271. case "note":
  6272. _formdiv = new U.UF.UI.form(
  6273. "便签分类",
  6274. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6275. "id": "note",
  6276. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6282. break;
  6283. // case "score":
  6284. // _formdiv = new U.UF.UI.form(
  6285. // "量规评分",
  6286. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6287. // "id": "score",
  6288. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6289. // "onresize": function() {}
  6290. // }, {
  6291. // closecallback: function() {}
  6292. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6293. // _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); } }
  6294. // break;
  6295. case "mind":
  6296. _formdiv = new U.UF.UI.form(
  6297. "思维导图",
  6298. $$("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"
  6299. "id": "mind",
  6300. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6306. break;
  6307. case "doc":
  6308. // U.MD.D.I.isRoom();
  6309. _formdiv = new U.UF.UI.form(
  6310. "协同文档",
  6311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6312. "id": "doc",
  6313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6314. "onresize": function () { }
  6315. }, {
  6316. closecallback: function () { }
  6317. }, { "style": { "height": "36px" } }).form; //创建窗体
  6318. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6319. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6320. // })
  6321. _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); } }
  6322. break;
  6323. case "studentStudy":
  6324. _formdiv = new U.UF.UI.form(
  6325. "课程中心",
  6326. $$("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
  6327. "id": "studentStudy",
  6328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. case "train": //好友打开
  6336. _formdiv = new U.UF.UI.form(
  6337. "训练平台",
  6338. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6339. "id": "train",
  6340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6346. break;
  6347. case "mindNetwork": //好友打开
  6348. _formdiv = new U.UF.UI.form(
  6349. "思维网格",
  6350. $$("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 }), {
  6351. "id": "mindNetwork",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6358. break;
  6359. case "studentClassRoom": //好友打开
  6360. _formdiv = new U.UF.UI.form(
  6361. "实时课堂",
  6362. $$("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 }), {
  6363. "id": "studentClassRoom",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6370. setTimeout(() => {
  6371. U.UF.F.windowZooming(_formdiv)
  6372. }, 0);
  6373. break;
  6374. }
  6375. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6376. switch (str) {
  6377. case "studnetProject": //好友打开
  6378. _formdiv = new U.UF.UI.form(
  6379. "我的项目",
  6380. $$("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 }), {
  6381. "id": "studnetProject",
  6382. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. case "studentEvaluate": //好友打开
  6390. _formdiv = new U.UF.UI.form(
  6391. "我的评价",
  6392. $$("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 }), {
  6393. "id": "studentEvaluate",
  6394. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "my":
  6402. _formdiv = new U.UF.UI.form(
  6403. "我的资料",
  6404. $$("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 }), {
  6405. "id": "my",
  6406. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. case "program":
  6414. _formdiv = new U.UF.UI.form(
  6415. "编程平台",
  6416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6417. "id": "program",
  6418. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break;
  6425. case "library":
  6426. _formdiv = new U.UF.UI.form(
  6427. "素材库",
  6428. $$("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 }), {
  6429. "id": "library",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _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); } }
  6436. break;
  6437. case "whiteboard":
  6438. _formdiv = new U.UF.UI.form(
  6439. "电子白板",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6441. "id": "whiteboard",
  6442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _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); } }
  6448. break;
  6449. case "investigation":
  6450. _formdiv = new U.UF.UI.form(
  6451. "问卷调查",
  6452. $$("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 }), {
  6453. "id": "investigation",
  6454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _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); } }
  6460. break;
  6461. case "note":
  6462. _formdiv = new U.UF.UI.form(
  6463. "便签分类",
  6464. $$("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 }), {
  6465. "id": "note",
  6466. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //创建窗体
  6471. _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); } }
  6472. break;
  6473. // case "score":
  6474. // _formdiv = new U.UF.UI.form(
  6475. // "量规评分",
  6476. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6477. // "id": "score",
  6478. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6479. // "onresize": function() {}
  6480. // }, {
  6481. // closecallback: function() {}
  6482. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. // _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); } }
  6484. // break;
  6485. case "mind":
  6486. _formdiv = new U.UF.UI.form(
  6487. "思维导图",
  6488. $$("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"
  6489. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6496. break;
  6497. case "doc":
  6498. // U.MD.D.I.isRoom();
  6499. _formdiv = new U.UF.UI.form(
  6500. "协同文档",
  6501. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6502. "id": "doc",
  6503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6509. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6510. })
  6511. _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); } }
  6512. break;
  6513. case "train": //好友打开
  6514. _formdiv = new U.UF.UI.form(
  6515. "训练平台",
  6516. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6517. "id": "train",
  6518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "studentStudy":
  6526. _formdiv = new U.UF.UI.form(
  6527. "课程中心",
  6528. $$("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
  6529. "id": "studentStudy",
  6530. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "mindNetwork": //好友打开
  6538. _formdiv = new U.UF.UI.form(
  6539. "思维网格",
  6540. $$("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 }), {
  6541. "id": "mindNetwork",
  6542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "studentClassRoom": //好友打开
  6550. _formdiv = new U.UF.UI.form(
  6551. "实时课堂",
  6552. $$("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 }), {
  6553. "id": "studentClassRoom",
  6554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. setTimeout(() => {
  6561. U.UF.F.windowZooming(_formdiv)
  6562. }, 0);
  6563. break;
  6564. }
  6565. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6566. //选择应用处理
  6567. switch (str) {
  6568. case "project": //好友打开
  6569. _formdiv = new U.UF.UI.form(
  6570. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6571. $$("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 }), {
  6572. "id": "project",
  6573. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "student":
  6581. _formdiv = new U.UF.UI.form(
  6582. "学生管理",
  6583. $$("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 }), {
  6584. "id": "student",
  6585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "evaluate":
  6593. _formdiv = new U.UF.UI.form(
  6594. "学生评价",
  6595. $$("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 }), {
  6596. "id": "evaluate",
  6597. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () { }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _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); } }
  6603. break;
  6604. case "sys":
  6605. _formdiv = new U.UF.UI.form(
  6606. "目标管理",
  6607. $$("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 }), {
  6608. "id": "sys",
  6609. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. break;
  6616. case "courseDesign":
  6617. _formdiv = new U.UF.UI.form(
  6618. "项目设计",
  6619. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6620. "id": "courseDesign",
  6621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _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); } }
  6627. break;
  6628. case "program":
  6629. _formdiv = new U.UF.UI.form(
  6630. "编程平台",
  6631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6632. "id": "program",
  6633. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6634. "onresize": function () { }
  6635. }, {
  6636. closecallback: function () { }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _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); } }
  6639. break;
  6640. case "class":
  6641. _formdiv = new U.UF.UI.form(
  6642. "班级管理",
  6643. $$("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 }), {
  6644. "id": "class",
  6645. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () { }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. break;
  6652. case "Grade":
  6653. _formdiv = new U.UF.UI.form(
  6654. "年级管理",
  6655. $$("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 }), {
  6656. "id": "Grade",
  6657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6658. "onresize": function () { }
  6659. }, {
  6660. closecallback: function () { }
  6661. }, { "style": { "height": "36px" } }).form; //创建窗体
  6662. _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); } }
  6663. break;
  6664. case "teacherOffice":
  6665. _formdiv = new U.UF.UI.form(
  6666. "教研室",
  6667. $$("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 }), {
  6668. "id": "teacherOffice",
  6669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. case "my":
  6677. _formdiv = new U.UF.UI.form(
  6678. "我的资料",
  6679. $$("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 }), {
  6680. "id": "my",
  6681. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, { "style": { "height": "36px" } }).form; //创建窗体
  6686. _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); } }
  6687. break;
  6688. case "notice":
  6689. _formdiv = new U.UF.UI.form(
  6690. "通知公告",
  6691. $$("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 }), {
  6692. "id": "notice",
  6693. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. closecallback: function () { }
  6697. }, { "style": { "height": "36px" } }).form; //创建窗体
  6698. _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); } }
  6699. break;
  6700. case "library":
  6701. _formdiv = new U.UF.UI.form(
  6702. "素材库",
  6703. $$("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 }), {
  6704. "id": "library",
  6705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6706. "onresize": function () { }
  6707. }, {
  6708. closecallback: function () { }
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. _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); } }
  6711. break;
  6712. case "whiteboard":
  6713. _formdiv = new U.UF.UI.form(
  6714. "电子白板",
  6715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6716. "id": "whiteboard",
  6717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6718. "onresize": function () { }
  6719. }, {
  6720. closecallback: function () { }
  6721. }, { "style": { "height": "36px" } }).form; //创建窗体
  6722. _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); } }
  6723. break;
  6724. case "investigation":
  6725. _formdiv = new U.UF.UI.form(
  6726. "问卷调查",
  6727. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6728. "id": "investigation",
  6729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6735. break;
  6736. case "note":
  6737. _formdiv = new U.UF.UI.form(
  6738. "便签分类",
  6739. $$("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 }), {
  6740. "id": "note",
  6741. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6742. "onresize": function () { }
  6743. }, {
  6744. closecallback: function () { }
  6745. }, { "style": { "height": "36px" } }).form; //创建窗体
  6746. _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); } }
  6747. break;
  6748. // case "score":
  6749. // _formdiv = new U.UF.UI.form(
  6750. // "量规评分",
  6751. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6752. // "id": "score",
  6753. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6754. // "onresize": function() {}
  6755. // }, {
  6756. // closecallback: function() {}
  6757. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6758. // _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); } }
  6759. // break;
  6760. case "mind":
  6761. _formdiv = new U.UF.UI.form(
  6762. "思维导图",
  6763. $$("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"
  6764. "id": "mind",
  6765. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6771. break;
  6772. case "doc":
  6773. // U.MD.D.I.isRoom();
  6774. _formdiv = new U.UF.UI.form(
  6775. "协同文档",
  6776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6777. "id": "doc",
  6778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6784. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6785. })
  6786. _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); } }
  6787. break;
  6788. case "study":
  6789. _formdiv = new U.UF.UI.form(
  6790. "课程中心",
  6791. $$("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
  6792. "id": "study",
  6793. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6794. "onresize": function () { }
  6795. }, {
  6796. closecallback: function () { }
  6797. }, { "style": { "height": "36px" } }).form; //创建窗体
  6798. _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); } }
  6799. break;
  6800. case "mindNetwork": //好友打开
  6801. _formdiv = new U.UF.UI.form(
  6802. "思维网格",
  6803. $$("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 }), {
  6804. "id": "mindNetwork",
  6805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6806. "onresize": function () { }
  6807. }, {
  6808. closecallback: function () { }
  6809. }, { "style": { "height": "36px" } }).form; //创建窗体
  6810. _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); } }
  6811. break;
  6812. case "train": //好友打开
  6813. _formdiv = new U.UF.UI.form(
  6814. "训练平台",
  6815. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6816. "id": "mindNetwork",
  6817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6818. "onresize": function () { }
  6819. }, {
  6820. closecallback: function () { }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _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); } }
  6823. break;
  6824. case "teacherClassRoom": //好友打开
  6825. _formdiv = new U.UF.UI.form(
  6826. "实时课堂",
  6827. $$("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 }), {
  6828. "id": "teacherClassRoom",
  6829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6830. "onresize": function () { }
  6831. }, {
  6832. closecallback: function () { }
  6833. }, { "style": { "height": "36px" } }).form; //创建窗体
  6834. _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); } }
  6835. setTimeout(() => {
  6836. U.UF.F.windowZooming(_formdiv)
  6837. }, 0);
  6838. break;
  6839. }
  6840. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6841. switch (str) {
  6842. case "project": //好友打开
  6843. _formdiv = new U.UF.UI.form(
  6844. "课程管理",
  6845. $$("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 }), {
  6846. "id": "project",
  6847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, { "style": { "height": "36px" } }).form; //创建窗体
  6852. _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); } }
  6853. break;
  6854. case "evaluate":
  6855. _formdiv = new U.UF.UI.form(
  6856. "学生评价",
  6857. $$("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 }), {
  6858. "id": "evaluate",
  6859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6860. "onresize": function () { }
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _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); } }
  6865. break;
  6866. case "notice":
  6867. _formdiv = new U.UF.UI.form(
  6868. "通知公告",
  6869. $$("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 }), {
  6870. "id": "notice",
  6871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _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); } }
  6877. break;
  6878. case "stuLibrary":
  6879. _formdiv = new U.UF.UI.form(
  6880. "学习资料",
  6881. $$("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 }), {
  6882. "id": "stuLibrary",
  6883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6884. "onresize": function () { }
  6885. }, {
  6886. closecallback: function () { }
  6887. }, { "style": { "height": "36px" } }).form; //创建窗体
  6888. _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); } }
  6889. break;
  6890. case "program":
  6891. _formdiv = new U.UF.UI.form(
  6892. "编程平台",
  6893. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6894. "id": "program",
  6895. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6896. "onresize": function () { }
  6897. }, {
  6898. closecallback: function () { }
  6899. }, { "style": { "height": "36px" } }).form; //创建窗体
  6900. _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); } }
  6901. break;
  6902. case "whiteboard":
  6903. _formdiv = new U.UF.UI.form(
  6904. "电子白板",
  6905. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6906. "id": "whiteboard",
  6907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6908. "onresize": function () { }
  6909. }, {
  6910. closecallback: function () { }
  6911. }, { "style": { "height": "36px" } }).form; //创建窗体
  6912. _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); } }
  6913. break;
  6914. case "investigation":
  6915. _formdiv = new U.UF.UI.form(
  6916. "问卷调查",
  6917. $$("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 }), {
  6918. "id": "investigation",
  6919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6920. "onresize": function () { }
  6921. }, {
  6922. closecallback: function () { }
  6923. }, { "style": { "height": "36px" } }).form; //创建窗体
  6924. _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); } }
  6925. break;
  6926. case "mind":
  6927. _formdiv = new U.UF.UI.form(
  6928. "思维导图",
  6929. $$("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"
  6930. "id": "mind",
  6931. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6937. break;
  6938. case "doc":
  6939. // U.MD.D.I.isRoom();
  6940. _formdiv = new U.UF.UI.form(
  6941. "协同文档",
  6942. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6943. "id": "doc",
  6944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //创建窗体
  6949. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6950. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6951. })
  6952. _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); } }
  6953. break;
  6954. case "study":
  6955. _formdiv = new U.UF.UI.form(
  6956. "课程中心",
  6957. $$("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
  6958. "id": "study",
  6959. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _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); } }
  6965. break;
  6966. case "mindNetwork": //好友打开
  6967. _formdiv = new U.UF.UI.form(
  6968. "思维网格",
  6969. $$("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 }), {
  6970. "id": "mindNetwork",
  6971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _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); } }
  6977. break;
  6978. case "train": //好友打开
  6979. _formdiv = new U.UF.UI.form(
  6980. "训练平台",
  6981. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6982. "id": "train",
  6983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _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); } }
  6989. break;
  6990. case "sys":
  6991. _formdiv = new U.UF.UI.form(
  6992. "目标管理",
  6993. $$("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 }), {
  6994. "id": "sys",
  6995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _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); } }
  7001. break;
  7002. case "courseDesign":
  7003. _formdiv = new U.UF.UI.form(
  7004. "项目设计",
  7005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  7006. "id": "courseDesign",
  7007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, { "style": { "height": "36px" } }).form; //创建窗体
  7012. _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); } }
  7013. break;
  7014. }
  7015. } else if (!_type) {
  7016. switch (str) {
  7017. case "my":
  7018. _formdiv = new U.UF.UI.form(
  7019. "我的资料",
  7020. $$("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 }), {
  7021. "id": "my",
  7022. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7023. "onresize": function () { }
  7024. }, {
  7025. closecallback: function () { }
  7026. }, { "style": { "height": "36px" } }).form; //创建窗体
  7027. _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); } }
  7028. break;
  7029. }
  7030. }
  7031. switch (str) {
  7032. // AIprogram2 AI体验 aihub.cocorobo.cn
  7033. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  7034. // AIprogram AI编程 ai-blockly.cocorobo.cn
  7035. case "formulaEdi": //公式编辑
  7036. _formdiv = new U.UF.UI.form(
  7037. "公式编辑",
  7038. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  7039. "id": "formulaEdi",
  7040. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //创建窗体
  7045. _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); } }
  7046. break;
  7047. case "molStr": //分子结构
  7048. _formdiv = new U.UF.UI.form(
  7049. "分子结构",
  7050. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  7051. "id": "molStr",
  7052. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, { "style": { "height": "36px" } }).form; //创建窗体
  7057. _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); } }
  7058. break;
  7059. case "timeAxis": //时间轴
  7060. _formdiv = new U.UF.UI.form(
  7061. "时间轴",
  7062. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  7063. "id": "timeAxis",
  7064. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. closecallback: function () { }
  7068. }, { "style": { "height": "36px" } }).form; //创建窗体
  7069. _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); } }
  7070. break;
  7071. case "AIprogram2": //AI体验
  7072. _formdiv = new U.UF.UI.form(
  7073. "AI体验",
  7074. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  7075. "id": "AIprogram2",
  7076. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7077. "onresize": function () { }
  7078. }, {
  7079. closecallback: function () { }
  7080. }, { "style": { "height": "36px" } }).form; //创建窗体
  7081. _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); } }
  7082. break;
  7083. case "Pythonprogram": //python编程
  7084. _formdiv = new U.UF.UI.form(
  7085. "Python编程",
  7086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  7087. "id": "Pythonprogram",
  7088. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //创建窗体
  7093. _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); } }
  7094. break;
  7095. case "AIprogram": //ai编程
  7096. _formdiv = new U.UF.UI.form(
  7097. "AI编程平台",
  7098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  7099. "id": "AIprogram",
  7100. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //创建窗体
  7105. _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); } }
  7106. break;
  7107. case "CocoPi": //CocoPi
  7108. _formdiv = new U.UF.UI.form(
  7109. "CocoPi",
  7110. $$("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" }), {
  7111. "id": "CocoPi",
  7112. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //创建窗体
  7117. _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); } }
  7118. break;
  7119. case "Wood": //Wood
  7120. _formdiv = new U.UF.UI.form(
  7121. "海龟编程",
  7122. $$("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/" }), {
  7123. "id": "Wood",
  7124. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7125. "onresize": function () { }
  7126. }, {
  7127. closecallback: function () { }
  7128. }, { "style": { "height": "36px" } }).form; //创建窗体
  7129. _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); } }
  7130. break;
  7131. case "car": //模拟驾驶
  7132. _formdiv = new U.UF.UI.form(
  7133. "模拟驾驶",
  7134. $$("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/" }), {
  7135. "id": "car",
  7136. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7137. "onresize": function () { }
  7138. }, {
  7139. closecallback: function () { }
  7140. }, { "style": { "height": "36px" } }).form; //创建窗体
  7141. _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); } }
  7142. break;
  7143. case "lineSearch": //路径搜索
  7144. _formdiv = new U.UF.UI.form(
  7145. "路径搜索",
  7146. $$("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/" }), {
  7147. "id": "lineSearch",
  7148. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7149. "onresize": function () { }
  7150. }, {
  7151. closecallback: function () { }
  7152. }, { "style": { "height": "36px" } }).form; //创建窗体
  7153. _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); } }
  7154. break;
  7155. case "deepLearning": //深度学习
  7156. _formdiv = new U.UF.UI.form(
  7157. "深度学习",
  7158. $$("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/#" }), {
  7159. "id": "deepLearning",
  7160. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7161. "onresize": function () { }
  7162. }, {
  7163. closecallback: function () { }
  7164. }, { "style": { "height": "36px" } }).form; //创建窗体
  7165. _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); } }
  7166. break;
  7167. case "allHistory": //深度学习
  7168. _formdiv = new U.UF.UI.form(
  7169. "全历史",
  7170. $$("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/" }), {
  7171. "id": "allHistory",
  7172. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, { "style": { "height": "36px" } }).form; //创建窗体
  7177. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7178. break;
  7179. case "chatPDF": //ai编程
  7180. _formdiv = new U.UF.UI.form(
  7181. "chatPDF",
  7182. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7183. "id": "chatPDF",
  7184. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7185. "onresize": function () { }
  7186. }, {
  7187. closecallback: function () { }
  7188. }, { "style": { "height": "36px" } }).form; //创建窗体
  7189. _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); } }
  7190. break;
  7191. case "resources": //国家教育
  7192. _formdiv = new U.UF.UI.form(
  7193. "国家教育",
  7194. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7195. "id": "resources",
  7196. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7197. "onresize": function () { }
  7198. }, {
  7199. closecallback: function () { }
  7200. }, { "style": { "height": "36px" } }).form; //创建窗体
  7201. _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); } }
  7202. break;
  7203. case "codeEdit": //源码编辑
  7204. _formdiv = new U.UF.UI.form(
  7205. "源码编辑",
  7206. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7207. "id": "codeEdit",
  7208. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7209. "onresize": function () { }
  7210. }, {
  7211. closecallback: function () { }
  7212. }, { "style": { "height": "36px" } }).form; //创建窗体
  7213. _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); } }
  7214. break; //
  7215. case "MindMap": //MindMap
  7216. _formdiv = new U.UF.UI.form(
  7217. "MindMap",
  7218. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7219. "id": "MindMap",
  7220. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7221. "onresize": function () { }
  7222. }, {
  7223. closecallback: function () { }
  7224. }, { "style": { "height": "36px" } }).form; //创建窗体
  7225. _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); } }
  7226. break;
  7227. case "netWorkPanel": //netWorkPanel
  7228. _formdiv = new U.UF.UI.form(
  7229. "netWorkPanel",
  7230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7231. "id": "netWorkPanel",
  7232. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7233. "onresize": function () { }
  7234. }, {
  7235. closecallback: function () { }
  7236. }, { "style": { "height": "36px" } }).form; //创建窗体
  7237. _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); } }
  7238. break;
  7239. case "GeoGebra": //GeoGebra
  7240. _formdiv = new U.UF.UI.form(
  7241. "GeoGebra",
  7242. $$("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" }), {
  7243. "id": "GeoGebra",
  7244. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7245. "onresize": function () { }
  7246. }, {
  7247. closecallback: function () { }
  7248. }, { "style": { "height": "36px" } }).form; //创建窗体
  7249. _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); } }
  7250. break;
  7251. case "translation": //翻译
  7252. _formdiv = new U.UF.UI.form(
  7253. "翻译",
  7254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7255. "id": "translation",
  7256. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7257. "onresize": function () { }
  7258. }, {
  7259. closecallback: function () { }
  7260. }, { "style": { "height": "36px" } }).form; //创建窗体
  7261. _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); } }
  7262. break;
  7263. case "mohe": //魔盒
  7264. _formdiv = new U.UF.UI.form(
  7265. "魔盒识字",
  7266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7267. "id": "mohe",
  7268. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7269. "onresize": function () { }
  7270. }, {
  7271. closecallback: function () { }
  7272. }, { "style": { "height": "36px" } }).form; //创建窗体
  7273. _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); } }
  7274. break;
  7275. case "24game": //24点
  7276. _formdiv = new U.UF.UI.form(
  7277. "24点",
  7278. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7279. "id": "24game",
  7280. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7281. "onresize": function () { }
  7282. }, {
  7283. closecallback: function () { }
  7284. }, { "style": { "height": "36px" } }).form; //创建窗体
  7285. _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); } }
  7286. break;
  7287. case "case":
  7288. _formdiv = new U.UF.UI.form(
  7289. "课程进展",
  7290. $$("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 }), {
  7291. "id": "case",
  7292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7293. "onresize": function () { }
  7294. }, {
  7295. closecallback: function () { }
  7296. }, { "style": { "height": "36px" } }).form; //创建窗体
  7297. _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); } }
  7298. break;
  7299. case "snf":
  7300. _formdiv = new U.UF.UI.form(
  7301. "赛诺梵",
  7302. $$("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" }), {
  7303. "id": "snf",
  7304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, { "style": { "height": "36px" } }).form; //创建窗体
  7309. _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); } }
  7310. break;
  7311. case "hanFamily":
  7312. _formdiv = new U.UF.UI.form(
  7313. "汉字家族",
  7314. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7315. "id": "hanFamily",
  7316. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7317. "onresize": function () { }
  7318. }, {
  7319. closecallback: function () { }
  7320. }, { "style": { "height": "36px" } }).form; //创建窗体
  7321. _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); } }
  7322. break;
  7323. case "hanClassics":
  7324. _formdiv = new U.UF.UI.form(
  7325. "国学经典",
  7326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7327. "id": "hanClassics",
  7328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7329. "onresize": function () { }
  7330. }, {
  7331. closecallback: function () { }
  7332. }, { "style": { "height": "36px" } }).form; //创建窗体
  7333. _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); } }
  7334. break;
  7335. case "hanTraining":
  7336. _formdiv = new U.UF.UI.form(
  7337. "笔画训练",
  7338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7339. "id": "hanTraining",
  7340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7341. "onresize": function () { }
  7342. }, {
  7343. closecallback: function () { }
  7344. }, { "style": { "height": "36px" } }).form; //创建窗体
  7345. _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); } }
  7346. break;
  7347. case "hanClass":
  7348. _formdiv = new U.UF.UI.form(
  7349. "书法课堂",
  7350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7351. "id": "hanClass",
  7352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7353. "onresize": function () { }
  7354. }, {
  7355. closecallback: function () { }
  7356. }, { "style": { "height": "36px" } }).form; //创建窗体
  7357. _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); } }
  7358. break;
  7359. case "han":
  7360. _formdiv = new U.UF.UI.form(
  7361. "汉字宫",
  7362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7363. "id": "han",
  7364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, { "style": { "height": "36px" } }).form; //创建窗体
  7369. _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); } }
  7370. break;
  7371. case "projectGM": //课程管理
  7372. _formdiv = new U.UF.UI.form(
  7373. "课程管理",
  7374. $$("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 }), {
  7375. "id": "projectGM",
  7376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7377. "onresize": function () { }
  7378. }, {
  7379. closecallback: function () { }
  7380. }, { "style": { "height": "36px" } }).form; //创建窗体
  7381. _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); } }
  7382. break;
  7383. case "studyGM": //课程中心
  7384. _formdiv = new U.UF.UI.form(
  7385. "课程中心",
  7386. $$("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
  7387. "id": "study",
  7388. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, { "style": { "height": "36px" } }).form; //创建窗体
  7393. _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); } }
  7394. break;
  7395. // studentGM
  7396. case "studentGM": //学生管理
  7397. _formdiv = new U.UF.UI.form(
  7398. "学生管理",
  7399. $$("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 }), {
  7400. "id": "studentGM",
  7401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7402. "onresize": function () { }
  7403. }, {
  7404. closecallback: function () { }
  7405. }, { "style": { "height": "36px" } }).form; //创建窗体
  7406. _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); } }
  7407. break;
  7408. case "evaluateGM": //学生评价
  7409. _formdiv = new U.UF.UI.form(
  7410. "学生评价",
  7411. $$("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 }), {
  7412. "id": "evaluateGM",
  7413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7414. "onresize": function () { }
  7415. }, {
  7416. closecallback: function () { }
  7417. }, { "style": { "height": "36px" } }).form; //创建窗体
  7418. _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); } }
  7419. break;
  7420. // classGM
  7421. case "classGM": //班级管理
  7422. _formdiv = new U.UF.UI.form(
  7423. "班级管理",
  7424. $$("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 }), {
  7425. "id": "classGM",
  7426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7427. "onresize": function () { }
  7428. }, {
  7429. closecallback: function () { }
  7430. }, { "style": { "height": "36px" } }).form; //创建窗体
  7431. _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); } }
  7432. break;
  7433. // dataGM
  7434. case "dataGM":
  7435. _formdiv = new U.UF.UI.form(
  7436. "我的资料",
  7437. $$("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 }), {
  7438. "id": "dataGM",
  7439. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7440. "onresize": function () { }
  7441. }, {
  7442. closecallback: function () { }
  7443. }, { "style": { "height": "36px" } }).form; //创建窗体
  7444. _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); } }
  7445. break;
  7446. // caseGM
  7447. case "caseGM": //课程进展
  7448. _formdiv = new U.UF.UI.form(
  7449. "课程进展",
  7450. $$("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 }), {
  7451. "id": "caseGM",
  7452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7453. "onresize": function () { }
  7454. }, {
  7455. closecallback: function () { }
  7456. }, { "style": { "height": "36px" } }).form; //创建窗体
  7457. _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); } }
  7458. break;
  7459. // meterialGM
  7460. case "meterialGM": //素材库
  7461. _formdiv = new U.UF.UI.form(
  7462. "素材库",
  7463. $$("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 }), {
  7464. "id": "meterialGM",
  7465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7466. "onresize": function () { }
  7467. }, {
  7468. closecallback: function () { }
  7469. }, { "style": { "height": "36px" } }).form; //创建窗体
  7470. _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); } }
  7471. break;
  7472. // evaluateSGM
  7473. case "evaluateSGM": //我的评价
  7474. _formdiv = new U.UF.UI.form(
  7475. "我的评价",
  7476. $$("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 }), {
  7477. "id": "evaluateSGM",
  7478. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, { "style": { "height": "36px" } }).form; //创建窗体
  7483. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7484. break;
  7485. case "jupyter": //jupyter
  7486. _formdiv = new U.UF.UI.form(
  7487. "jupyter",
  7488. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7489. "id": "jupyter",
  7490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //创建窗体
  7495. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7496. break;
  7497. case "number": //数字实验室
  7498. _formdiv = new U.UF.UI.form(
  7499. "数字实验室",
  7500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7501. "id": "number",
  7502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7503. "onresize": function () { }
  7504. }, {
  7505. closecallback: function () { }
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7508. break;
  7509. case "studentCourse": //项目管理 学生
  7510. _formdiv = new U.UF.UI.form(
  7511. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7512. $$("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 }), {
  7513. "id": "studentCourse",
  7514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, { "style": { "height": "36px" } }).form; //创建窗体
  7519. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7520. break;
  7521. case "studentCourseS": //项目管理 老师
  7522. _formdiv = new U.UF.UI.form(
  7523. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7524. $$("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 }), {
  7525. "id": "studentCourseS",
  7526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, { "style": { "height": "36px" } }).form; //创建窗体
  7531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7532. break;
  7533. case "studentIndex": //项目中心
  7534. _formdiv = new U.UF.UI.form(
  7535. "项目中心",
  7536. $$("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 }), {
  7537. "id": "studentIndex",
  7538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7539. "onresize": function () { }
  7540. }, {
  7541. closecallback: function () { }
  7542. }, { "style": { "height": "36px" } }).form; //创建窗体
  7543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7544. break;
  7545. case "CaseDesignS":
  7546. _formdiv = new U.UF.UI.form(
  7547. "项目进展",
  7548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7549. "id": "case",
  7550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7551. "onresize": function () { }
  7552. }, {
  7553. closecallback: function () { }
  7554. }, { "style": { "height": "36px" } }).form; //创建窗体
  7555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7556. break;
  7557. case "tcStudent": //腾讯学生管理
  7558. _formdiv = new U.UF.UI.form(
  7559. "学生管理",
  7560. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7561. "id": "tcStudent",
  7562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7563. "onresize": function () { }
  7564. }, {
  7565. closecallback: function () { }
  7566. }, { "style": { "height": "36px" } }).form; //创建窗体
  7567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7568. break;
  7569. case "tcSchool": //腾讯学校管理
  7570. _formdiv = new U.UF.UI.form(
  7571. "学校管理",
  7572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7573. "id": "tcSchool",
  7574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7575. "onresize": function () { }
  7576. }, {
  7577. closecallback: function () { }
  7578. }, { "style": { "height": "36px" } }).form; //创建窗体
  7579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7580. break;
  7581. case "tcTeacher": //腾讯学校管理
  7582. _formdiv = new U.UF.UI.form(
  7583. "教师管理",
  7584. $$("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 }), {
  7585. "id": "tcTeacher",
  7586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7587. "onresize": function () { }
  7588. }, {
  7589. closecallback: function () { }
  7590. }, { "style": { "height": "36px" } }).form; //创建窗体
  7591. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7592. break;
  7593. case "teacher":
  7594. _formdiv = new U.UF.UI.form(
  7595. "教师管理",
  7596. $$("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 }), {
  7597. "id": "teacher",
  7598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7599. "onresize": function () { }
  7600. }, {
  7601. closecallback: function () { }
  7602. }, { "style": { "height": "36px" } }).form; //创建窗体
  7603. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7604. break;
  7605. case "tcData": //腾讯我的资料
  7606. _formdiv = new U.UF.UI.form(
  7607. "我的资料",
  7608. $$("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 }), {
  7609. "id": "tcData",
  7610. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7611. "onresize": function () { }
  7612. }, {
  7613. closecallback: function () { }
  7614. }, { "style": { "height": "36px" } }).form; //创建窗体
  7615. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7616. break;
  7617. case "tcNotice": //腾讯消息通知
  7618. _formdiv = new U.UF.UI.form(
  7619. "消息通知",
  7620. $$("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 }), {
  7621. "id": "tcNotice",
  7622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7623. "onresize": function () { }
  7624. }, {
  7625. closecallback: function () { }
  7626. }, { "style": { "height": "36px" } }).form; //创建窗体
  7627. _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); } }
  7628. break;
  7629. case "myReport": //好友打开
  7630. _formdiv = new U.UF.UI.form(
  7631. "我的评价",
  7632. $$("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 }), {
  7633. "id": "myReport",
  7634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7635. "onresize": function () { }
  7636. }, {
  7637. closecallback: function () { }
  7638. }, { "style": { "height": "36px" } }).form; //创建窗体
  7639. _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); } }
  7640. break;
  7641. case "learnAna": //好友打开
  7642. _formdiv = new U.UF.UI.form(
  7643. "学习分析",
  7644. $$("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 }), {
  7645. "id": "learnAna",
  7646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7647. "onresize": function () { }
  7648. }, {
  7649. closecallback: function () { }
  7650. }, { "style": { "height": "36px" } }).form; //创建窗体
  7651. _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); } }
  7652. break;
  7653. case "AIChat": //AI共创
  7654. _formdiv = new U.UF.UI.form(
  7655. "AI共创",
  7656. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7657. "id": "AIChat",
  7658. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7659. "onresize": function () { }
  7660. }, {
  7661. istop: true,
  7662. closecallback: function () { $("#aichat_icon").remove(); },
  7663. narrowcallback: function () {
  7664. if (!$("#aichat_icon")[0]) {
  7665. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7666. }
  7667. },
  7668. }, { "style": { "height": "36px" } }).form; //创建窗体
  7669. _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); } }
  7670. break;
  7671. case "ainew": //AI共创
  7672. _formdiv = new U.UF.UI.form(
  7673. "AI协同",
  7674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7675. "id": "ainew",
  7676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7677. "onresize": function () { }
  7678. }, {
  7679. closecallback: function () { }
  7680. }, { "style": { "height": "36px" } }).form; //创建窗体
  7681. _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); } }
  7682. break;
  7683. case "gpt4": //gpt4
  7684. _formdiv = new U.UF.UI.form(
  7685. "AI助手",
  7686. $$("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 }), {
  7687. "id": "gpt4",
  7688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7689. "onresize": function () { }
  7690. }, {
  7691. closecallback: function () { }
  7692. }, { "style": { "height": "36px" } }).form; //创建窗体
  7693. _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); } }
  7694. break;
  7695. case "aigpt": //gpt4
  7696. _formdiv = new U.UF.UI.form(
  7697. "AI助手+",
  7698. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7699. "id": "aigpt",
  7700. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7701. "onresize": function () { }
  7702. }, {
  7703. closecallback: function () {
  7704. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7705. }
  7706. }, { "style": { "height": "36px" } }).form; //创建窗体
  7707. _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); } }
  7708. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7709. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7710. })
  7711. break;
  7712. case "aiKnowledge": //aiKnowledge
  7713. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7714. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7715. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7716. }
  7717. _formdiv = new U.UF.UI.form(
  7718. "知识建构",
  7719. $$("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 }), {
  7720. "id": "aiKnowledge",
  7721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7722. "onresize": function () { }
  7723. }, {
  7724. closecallback: function () { }
  7725. }, { "style": { "height": "36px" } }).form; //创建窗体
  7726. _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); } }
  7727. break;
  7728. case "futureClass": //AI共创
  7729. _formdiv = new U.UF.UI.form(
  7730. "协同建构",
  7731. $$("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
  7732. "id": "synergyCourse",
  7733. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7734. "onresize": function () { }
  7735. }, {
  7736. closecallback: function () {
  7737. $("iframe", _formdiv)[0].contentWindow.loginout();
  7738. }
  7739. }, { "style": { "height": "36px" } }).form; //创建窗体
  7740. _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); } }
  7741. break;
  7742. case "aiagent": //ai agent
  7743. _formdiv = new U.UF.UI.form(
  7744. "AI Agent",
  7745. $$("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" }), {
  7746. "id": "AIAgent",
  7747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7748. "onresize": function () { }
  7749. }, {
  7750. closecallback: function () { }
  7751. }, { "style": { "height": "36px" } }).form; //创建窗体
  7752. _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); } }
  7753. break;
  7754. case "dataBoard": //数据看板
  7755. _formdiv = new U.UF.UI.form(
  7756. "数据看板",
  7757. $$("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 }), {
  7758. "id": "dataBoard",
  7759. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7760. "onresize": function () { }
  7761. }, {
  7762. closecallback: function () { }
  7763. }, { "style": { "height": "36px" } }).form; //创建窗体
  7764. _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); } }
  7765. break;
  7766. case "dataBoardSies": //数据融合
  7767. _formdiv = new U.UF.UI.form(
  7768. "数据融合",
  7769. $$("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 }), {
  7770. "id": "dataBoardSies",
  7771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7772. "onresize": function () { }
  7773. }, {
  7774. closecallback: function () { }
  7775. }, { "style": { "height": "36px" } }).form; //创建窗体
  7776. _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); } }
  7777. break;
  7778. case "dataBoardNew": //数据看板
  7779. _formdiv = new U.UF.UI.form(
  7780. "综合看板",
  7781. $$("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 }), {
  7782. "id": "dataBoardNew",
  7783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7784. "onresize": function () { }
  7785. }, {
  7786. closecallback: function () { }
  7787. }, { "style": { "height": "36px" } }).form; //创建窗体
  7788. _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); } }
  7789. break;
  7790. case "dataBoardTest": //数据看板
  7791. _formdiv = new U.UF.UI.form(
  7792. "评测看板",
  7793. $$("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 }), {
  7794. "id": "dataBoardTest",
  7795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7796. "onresize": function () { }
  7797. }, {
  7798. closecallback: function () { }
  7799. }, { "style": { "height": "36px" } }).form; //创建窗体
  7800. _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); } }
  7801. break;
  7802. case "AIAnalyse": //AI共创
  7803. _formdiv = new U.UF.UI.form(
  7804. "AI分析",
  7805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7806. "id": "AIAnalyse",
  7807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7808. "onresize": function () { }
  7809. }, {
  7810. closecallback: function () { }
  7811. }, { "style": { "height": "36px" } }).form; //创建窗体
  7812. _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); } }
  7813. break;
  7814. case "studioCourse": //AI共创
  7815. _formdiv = new U.UF.UI.form(
  7816. "工作管理",
  7817. $$("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 }), {
  7818. "id": "studioCourse",
  7819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7820. "onresize": function () { }
  7821. }, {
  7822. closecallback: function () { }
  7823. }, { "style": { "height": "36px" } }).form; //创建窗体
  7824. _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); } }
  7825. break;
  7826. case "studioIndex": //AI共创
  7827. _formdiv = new U.UF.UI.form(
  7828. "工作中心",
  7829. $$("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 }), {
  7830. "id": "studioIndex",
  7831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7832. "onresize": function () { }
  7833. }, {
  7834. closecallback: function () { }
  7835. }, { "style": { "height": "36px" } }).form; //创建窗体
  7836. _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); } }
  7837. break;
  7838. case "source":
  7839. _formdiv = new U.UF.UI.form(
  7840. "教学资源",
  7841. $$("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 }), {
  7842. "id": "source",
  7843. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7844. "onresize": function () { }
  7845. }, {
  7846. closecallback: function () { }
  7847. }, { "style": { "height": "36px" } }).form; //创建窗体
  7848. _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); } }
  7849. break;
  7850. case "testTeacher":
  7851. _formdiv = new U.UF.UI.form(
  7852. "智能表单",
  7853. $$("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 }), {
  7854. "id": "testTeacher",
  7855. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7856. "onresize": function () { }
  7857. }, {
  7858. closecallback: function () { }
  7859. }, { "style": { "height": "36px" } }).form; //创建窗体
  7860. _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); } }
  7861. break;
  7862. case "testStudent":
  7863. _formdiv = new U.UF.UI.form(
  7864. "教师中心",
  7865. $$("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 }), {
  7866. "id": "testStudent",
  7867. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7868. "onresize": function () { }
  7869. }, {
  7870. closecallback: function () { }
  7871. }, { "style": { "height": "36px" } }).form; //创建窗体
  7872. _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); } }
  7873. break;
  7874. case "testTeacherSies":
  7875. _formdiv = new U.UF.UI.form(
  7876. "教师管理",
  7877. $$("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 }), {
  7878. "id": "testTeacherSies",
  7879. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7880. "onresize": function () { }
  7881. }, {
  7882. closecallback: function () { }
  7883. }, { "style": { "height": "36px" } }).form; //创建窗体
  7884. _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); } }
  7885. break;
  7886. case "testStudentSies":
  7887. _formdiv = new U.UF.UI.form(
  7888. "教师中心",
  7889. $$("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 }), {
  7890. "id": "testStudentSies",
  7891. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7892. "onresize": function () { }
  7893. }, {
  7894. closecallback: function () { }
  7895. }, { "style": { "height": "36px" } }).form; //创建窗体
  7896. _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); } }
  7897. break;
  7898. case "ytpbl": //消息通知
  7899. _formdiv = new U.UF.UI.form(
  7900. "案例征集",
  7901. $$("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 }), {
  7902. "id": "ytpbl",
  7903. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7904. "onresize": function () { }
  7905. }, {
  7906. closecallback: function () { }
  7907. }, { "style": { "height": "36px" } }).form; //创建窗体
  7908. _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); } }
  7909. // 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");
  7910. break;
  7911. case "aiCourseResource": //人工智能窗体
  7912. _formdiv = new U.UF.UI.form(
  7913. false,
  7914. $$("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 }), {
  7915. "id": "aiCourseResource",
  7916. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7917. "onresize": function () { },
  7918. "isdrag": false,
  7919. }, {
  7920. closecallback: function () { },
  7921. isdrag: false,
  7922. isstretching: false,
  7923. isenlarge: false,
  7924. isnarrow: false
  7925. }, { "style": { "height": "36px" } }).form; //创建窗体
  7926. _taskbar = ''
  7927. break;
  7928. case "szdjgCocooroboX": //图形化编程
  7929. _formdiv = new U.UF.UI.form(
  7930. "图形化编程",
  7931. $$("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://pi.cocorobo.cn/?lang=zh-hans" }), {
  7932. "id": "szdjgCocooroboX",
  7933. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7934. "onresize": function () { }
  7935. }, {
  7936. closecallback: function () { }
  7937. }, { "style": { "height": "36px" } }).form; //创建窗体
  7938. _taskbar = ''
  7939. break;
  7940. case "szdjgPython": //python编程
  7941. _formdiv = new U.UF.UI.form(
  7942. "Python编程",
  7943. $$("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://pi.cocorobo.cn/python/?lang=zh-hans" }), {
  7944. "id": "szdjgPython",
  7945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7946. "onresize": function () { }
  7947. }, {
  7948. closecallback: function () { }
  7949. }, { "style": { "height": "36px" } }).form; //创建窗体
  7950. _taskbar = ''
  7951. break;
  7952. case "Record":
  7953. _formdiv = new U.UF.UI.form(
  7954. "观察记录",
  7955. $$("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 }), {
  7956. "id": "Record",
  7957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7958. "onresize": function () { }
  7959. }, {
  7960. closecallback: function () { }
  7961. }, { "style": { "height": "36px" } }).form; //创建窗体
  7962. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7963. break;
  7964. case "aigptCourse":
  7965. _formdiv = new U.UF.UI.form(
  7966. "AI智能体",
  7967. $$("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' }), {
  7968. "id": "aigptCourse",
  7969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, { "style": { "height": "36px" } }).form; //创建窗体
  7974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7975. break;
  7976. case "classroomObservation":
  7977. _formdiv = new U.UF.UI.form(
  7978. "课堂观察",
  7979. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7980. "id": "classroomObservation",
  7981. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, { "style": { "height": "36px" } }).form; //创建窗体
  7986. _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); } }
  7987. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7988. break;
  7989. case "pblCourse":
  7990. _formdiv = new U.UF.UI.form(
  7991. "学生PBL",
  7992. $$("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 }), {
  7993. "id": "pblCourse",
  7994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7995. "onresize": function () { }
  7996. }, {
  7997. closecallback: function () { }
  7998. }, { "style": { "height": "36px" } }).form; //创建窗体
  7999. _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); } }
  8000. break;
  8001. case "appStore":
  8002. U.MD.D.addOp('', 'cocoflowOpen', '')
  8003. _formdiv = new U.UF.UI.form(
  8004. "CocoFlow",
  8005. $$("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 }), {
  8006. "id": "appStore",
  8007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  8008. "onresize": function () { }
  8009. }, {
  8010. closecallback: function () { }
  8011. }, { "style": { "height": "36px" } }).form; //创建窗体
  8012. _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); } }
  8013. break;
  8014. case "sassPlatform":
  8015. _formdiv = new U.UF.UI.form(
  8016. "Sass通用后台管理",
  8017. $$("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 }), {
  8018. "id": "sassPlatform",
  8019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  8020. "onresize": function () { }
  8021. }, {
  8022. closecallback: function () { }
  8023. }, { "style": { "height": "36px" } }).form; //创建窗体
  8024. _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); } }
  8025. break;
  8026. case "EDU":
  8027. _formdiv = new U.UF.UI.form(
  8028. "EDU",
  8029. $$("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" }), {
  8030. "id": "EDU",
  8031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  8032. "onresize": function () { }
  8033. }, {
  8034. closecallback: function () { }
  8035. }, { "style": { "height": "36px" } }).form; //创建窗体
  8036. _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); } }
  8037. break;
  8038. case "knowledge":
  8039. _formdiv = new U.UF.UI.form(
  8040. "知识库",
  8041. $$("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 }), {
  8042. "id": "knowledge",
  8043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  8044. "onresize": function () { }
  8045. }, {
  8046. closecallback: function () { }
  8047. }, { "style": { "height": "36px" } }).form; //创建窗体
  8048. _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); } }
  8049. break;
  8050. case "userExamine":
  8051. _formdiv = new U.UF.UI.form(
  8052. "账号申请",
  8053. $$("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" }), {
  8054. "id": "userExamine",
  8055. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  8056. "onresize": function () { }
  8057. }, {
  8058. closecallback: function () { }
  8059. }, { "style": { "height": "36px" } }).form; //创建窗体
  8060. break;
  8061. case "cocoflowDeskTop": //cocoflowDeskTop
  8062. _formdiv = new U.UF.UI.form(
  8063. false,
  8064. $$("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 }), {
  8065. "id": "cocoflowDeskTop",
  8066. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  8067. "onresize": function () { },
  8068. }, {
  8069. closecallback: function () { },
  8070. "isdrag": false,
  8071. }, { "style": { "height": "36px" } }).form; //创建窗体
  8072. _taskbar = ''
  8073. break;
  8074. case "liyuanLogin": //liyuanLogin
  8075. _formdiv = new U.UF.UI.form(
  8076. false,
  8077. $$("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}` : '') }), {
  8078. "id": "liyuanLogin",
  8079. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' , "display":"none"},
  8080. "onresize": function () { },
  8081. }, {
  8082. closecallback: function () { },
  8083. isdrag: false,
  8084. isstretching: false,
  8085. isenlarge: false,
  8086. isnarrow: false
  8087. }, { "style": { "height": "36px" } }).form; //创建窗体
  8088. _taskbar = ''
  8089. break;
  8090. case "updatePaDialog":
  8091. _formdiv = new U.UF.UI.form(
  8092. "密码修改",
  8093. $$("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 }), {
  8094. "id": "updatePaDialog",
  8095. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  8096. "onresize": function () { },
  8097. }, {
  8098. closecallback: function () { },
  8099. isclose: false,
  8100. isdrag: false,
  8101. isstretching: false,
  8102. isenlarge: false,
  8103. isnarrow: false
  8104. }, { "style": { "height": "36px" } }).form; //创建窗体
  8105. break;
  8106. }
  8107. //U.MD.D.I.openClick(str);
  8108. //如果有任务栏信息
  8109. if (_taskbar) {
  8110. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8111. }
  8112. if (iframeBool) {
  8113. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  8114. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  8115. // console.log("iframe进入");
  8116. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8117. // };
  8118. setTimeout(() => {
  8119. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8120. }, 2000);
  8121. }
  8122. }
  8123. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  8124. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  8125. _userinfo = US.userInfo, //登录用户信息
  8126. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  8127. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  8128. let iframeBool = true;
  8129. let queryString = ''
  8130. if (array && array.length) {
  8131. const paramsMap = {
  8132. userid: _userid,
  8133. org: _org,
  8134. oid: _oid,
  8135. type: _type,
  8136. role: _role,
  8137. classId: _classId,
  8138. TscreenType: _TscreenType,
  8139. SscreenType: _SscreenType
  8140. };
  8141. const canshu = array
  8142. .filter(param => paramsMap[param] !== undefined)
  8143. .map(param => `${param}=${paramsMap[param]}`);
  8144. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  8145. }
  8146. let _url = url + queryString
  8147. if (U.UF.UI.form.allForm[id]) {
  8148. iframeBool = false
  8149. }
  8150. _formdiv = new U.UF.UI.form(
  8151. false,
  8152. $$("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 }),
  8153. {
  8154. "id": id,
  8155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  8156. "onresize": function () { },
  8157. },
  8158. {
  8159. closecallback: function () { },
  8160. isdrag: false,
  8161. isstretching: false,
  8162. isenlarge: false,
  8163. isnarrow: false
  8164. },
  8165. { "style": { "height": "36px" } },
  8166. undefined,
  8167. undefined,
  8168. dom
  8169. ).form
  8170. }
  8171. // U.MD.D.I.openClick = function(str){
  8172. // var click = '';
  8173. // switch(str){
  8174. // case 'friend':
  8175. // click = '我的好友';
  8176. // break;
  8177. // case 'domain':
  8178. // click = '域名管理';
  8179. // break;
  8180. // case 'disk':
  8181. // click = '我的云盘';
  8182. // break;
  8183. // case 'word':
  8184. // click = 'Word';
  8185. // break;
  8186. // case 'excel':
  8187. // click = 'Execl';
  8188. // break;
  8189. // case 'txt':
  8190. // click = '文本文件';
  8191. // break;
  8192. // case 'lookupFriend':
  8193. // click = '查找好友';
  8194. // break;
  8195. // case 'ftp':
  8196. // click = 'FTP';
  8197. // break;
  8198. // case 'group':
  8199. // click = '群组';
  8200. // break;
  8201. // case 'set':
  8202. // click = '我的设置';
  8203. // break;
  8204. // case 'systemSet':
  8205. // click = '系统设置';
  8206. // break;
  8207. // case 'boomYun':
  8208. // click = '互联办公';
  8209. // break;
  8210. // case 'xz':
  8211. // click = '云端下载';
  8212. // break;
  8213. // case 'client':
  8214. // click = '有思浏览器';
  8215. // break;
  8216. // case 'backEndProgramming':
  8217. // click = '在线后台编程';
  8218. // break;
  8219. // case 'frontEndProgramming':
  8220. // click = '在线前端编程';
  8221. // break;
  8222. // default: break;
  8223. // }
  8224. // if(U.MD.D.I.Ip && click){
  8225. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8226. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8227. // })
  8228. // }
  8229. // }
  8230. /**
  8231. *函数作用:ajax简易函数,使用post格式
  8232. *@param url {data} 后台地址
  8233. *@param data {data} 参数json
  8234. *@param fn {data} 回调函数
  8235. *
  8236. */
  8237. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8238. // var xhr = new XMLHttpRequest();
  8239. // xhr.open("GET",url,true);
  8240. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8241. // xhr.onreadystatechange = function(){
  8242. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8243. // fn.call(this,xhr.responseText);
  8244. // }
  8245. // };
  8246. // xhr.send();
  8247. // }
  8248. /*判断是否是内网IP*/
  8249. // U.MD.D.I.isInnerIPFn = function(str){
  8250. // var curPageUrl = str;
  8251. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8252. // curPageUrl =curPageUrl.replace(reg1,'');
  8253. // // console.log('curPageUrl-1 '+curPageUrl);
  8254. // var reg2 = /\:+/g;//替换冒号为一点
  8255. // curPageUrl =curPageUrl.replace(reg2,'.');
  8256. // // console.log('curPageUrl-2 '+curPageUrl);
  8257. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8258. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8259. // if(curPageUrl[2] != '16'){
  8260. // return ipAddress;
  8261. // }else{
  8262. // return false;
  8263. // }
  8264. // }
  8265. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8266. // //compatibility for firefox and chrome
  8267. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8268. // var pc = new myPeerConnection({
  8269. // iceServers: []
  8270. // }),
  8271. // noop = function() {},
  8272. // localIPs = {},
  8273. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8274. // key;
  8275. // function iterateIP(ip) {
  8276. // if (!localIPs[ip]) onNewIP(ip);
  8277. // localIPs[ip] = true;
  8278. // }
  8279. // //create a bogus data channel
  8280. // pc.createDataChannel("");
  8281. // // create offer and set local description
  8282. // pc.createOffer().then(function(sdp) {
  8283. // sdp.sdp.split('\n').forEach(function(line) {
  8284. // if (line.indexOf('candidate') < 0) return;
  8285. // line.match(ipRegex).forEach(iterateIP);
  8286. // });
  8287. // pc.setLocalDescription(sdp, noop, noop);
  8288. // }).catch(function(reason) {
  8289. // // An error occurred, so handle the failure to connect
  8290. // });
  8291. // //sten for candidate events
  8292. // pc.onicecandidate = function(ice) {
  8293. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8294. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8295. // };
  8296. // }
  8297. // U.MD.D.I.getUserIpBool = function(callback){
  8298. // U.MD.D.I.getUserIP(function(ip){
  8299. // alert("Got IP! :" + ip);
  8300. // });
  8301. //}
  8302. //#endregion
  8303. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8304. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8305. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8306. _userinfo = US.userInfo, //登录用户信息
  8307. _userid = US.userInfo.userid //登录用户id
  8308. let _iframe;
  8309. let _cid = cid,
  8310. _stage = stage,
  8311. _task = task,
  8312. _tool = tool;
  8313. var _jie = $$("div", {
  8314. "style": {
  8315. "position": "absolute",
  8316. "bottom": "50px",
  8317. "right": "50px",
  8318. "zIndex": "9999",
  8319. "backgroundColor": "#2268bc",
  8320. "color": "#fff",
  8321. "padding": "12px 20px",
  8322. "cursor": "pointer",
  8323. "borderRadius": "4px",
  8324. },
  8325. "innerHTML": "提交作业"
  8326. })
  8327. let aTool = ''
  8328. let _loading = document.createElement('div')
  8329. _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;"
  8330. // _loading.id = "";
  8331. let _lchild = document.createElement('div')
  8332. let _limg = document.createElement('img')
  8333. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8334. _limg.style = "width: 26px;margin-right: 10px;"
  8335. _lchild.appendChild(_limg)
  8336. let _lspan = document.createElement('span')
  8337. _lspan.innerHTML = "上传中..."
  8338. _lchild.appendChild(_lspan)
  8339. _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%);"
  8340. _loading.appendChild(_lchild)
  8341. var _box = $$('div', {
  8342. "style": {
  8343. "position": "relative",
  8344. "width": "100%",
  8345. "height": "100%",
  8346. },
  8347. })
  8348. _box.appendChild(_loading)
  8349. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8350. switch (str) {
  8351. case "whiteboard":
  8352. aTool = 1;
  8353. _iframe = $$("iframe", {
  8354. "frameborder": "no",
  8355. "border": "0",
  8356. "scrolling ": "no",
  8357. "style": {
  8358. "cssText": "border:0;width:100%;height:100%"
  8359. },
  8360. "src": "https://beta.iwb.cocorobo.cn/"
  8361. })
  8362. _box.appendChild(_iframe);
  8363. _box.appendChild(_jie);
  8364. _formdiv = new U.UF.UI.form(
  8365. "电子白板",
  8366. _box, {
  8367. "id": "whiteboard" + cid + stage + task + tool,
  8368. "style": {
  8369. "width": "90%",
  8370. "height": "90%",
  8371. "overflow": 'hidden'
  8372. },
  8373. "onresize": function () { }
  8374. }, {
  8375. closecallback: function () { }
  8376. }, {
  8377. "style": {
  8378. "height": "36px"
  8379. }
  8380. }).form; //创建窗体
  8381. _taskbar = {
  8382. "id": str + _formdiv.id,
  8383. "style": {
  8384. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8385. },
  8386. "name": "电子白板",
  8387. "forms": _formdiv,
  8388. "click": function () {
  8389. U.MD.D.I.openApplication(str, obj, info);
  8390. }
  8391. }
  8392. break;
  8393. case "mind":
  8394. aTool = 3;
  8395. _iframe = $$("iframe", {
  8396. "frameborder": "no",
  8397. "border": "0",
  8398. "scrolling ": "no",
  8399. "style": {
  8400. "cssText": "border:0;width:100%;height:100%"
  8401. },
  8402. "src": "/kityminder-editor/dist/index.html"
  8403. })
  8404. _box.appendChild(_iframe);
  8405. _box.appendChild(_jie);
  8406. _formdiv = new U.UF.UI.form(
  8407. "思维导图",
  8408. _box, { //"/jsmind/example/demo.html"
  8409. "id": "mind" + cid + stage + task + tool,
  8410. "style": {
  8411. "width": "90%",
  8412. "height": "90%",
  8413. "overflow": 'hidden'
  8414. },
  8415. "onresize": function () { }
  8416. }, {
  8417. closecallback: function () { }
  8418. }, {
  8419. "style": {
  8420. "height": "36px"
  8421. }
  8422. }).form; //创建窗体
  8423. _taskbar = {
  8424. "id": str + _formdiv.id,
  8425. "style": {
  8426. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8427. },
  8428. "name": "思维导图",
  8429. "forms": _formdiv,
  8430. "click": function () {
  8431. U.MD.D.I.openApplication(str, obj, info);
  8432. }
  8433. }
  8434. break;
  8435. case "MindMap":
  8436. aTool = 3;
  8437. _iframe = $$("iframe", {
  8438. "frameborder": "no",
  8439. "border": "0",
  8440. "scrolling ": "no",
  8441. "style": {
  8442. "cssText": "border:0;width:100%;height:100%"
  8443. },
  8444. "src": "//cloud.cocorobo.cn/mind/"
  8445. })
  8446. _box.appendChild(_iframe);
  8447. _box.appendChild(_jie);
  8448. _formdiv = new U.UF.UI.form(
  8449. "思维导图",
  8450. _box, { //"/jsmind/example/demo.html"
  8451. "id": "mind" + cid + stage + task + tool,
  8452. "style": {
  8453. "width": "90%",
  8454. "height": "90%",
  8455. "overflow": 'hidden'
  8456. },
  8457. "onresize": function () { }
  8458. }, {
  8459. closecallback: function () { }
  8460. }, {
  8461. "style": {
  8462. "height": "36px"
  8463. }
  8464. }).form; //创建窗体
  8465. _taskbar = {
  8466. "id": str + _formdiv.id,
  8467. "style": {
  8468. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8469. },
  8470. "name": "思维导图",
  8471. "forms": _formdiv,
  8472. "click": function () {
  8473. U.MD.D.I.openApplication(str, obj, info);
  8474. }
  8475. }
  8476. break;
  8477. case "doc":
  8478. aTool = 6;
  8479. _iframe = $$("iframe", {
  8480. "frameborder": "no",
  8481. "border": "0",
  8482. "scrolling ": "no",
  8483. "style": {
  8484. "cssText": "border:0;width:100%;height:100%"
  8485. },
  8486. "src": "/Office/Word/WordEditArea.htm"
  8487. })
  8488. _box.appendChild(_iframe);
  8489. _box.appendChild(_jie);
  8490. _formdiv = new U.UF.UI.form(
  8491. "协同文档",
  8492. _box, {
  8493. "id": "doc" + cid + stage + task + tool,
  8494. "style": {
  8495. "width": "90%",
  8496. "height": "90%",
  8497. "overflow": 'hidden'
  8498. },
  8499. "onresize": function () { }
  8500. }, {
  8501. closecallback: function () { }
  8502. }, {
  8503. "style": {
  8504. "height": "36px"
  8505. }
  8506. }).form; //创建窗体
  8507. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8508. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8509. })
  8510. _taskbar = {
  8511. "id": str + _formdiv.id,
  8512. "style": {
  8513. "backgroundImage": "url(/img/icon/doc.png)"
  8514. },
  8515. "name": "协同文档",
  8516. "forms": _formdiv,
  8517. "click": function () {
  8518. U.MD.D.I.openApplication(str, obj, info);
  8519. }
  8520. }
  8521. break;
  8522. case "mindNetwork": //好友打开
  8523. aTool = 7;
  8524. _iframe = $$("iframe", {
  8525. "webkitallowfullscreen": "",
  8526. "mozallowfullscreen": "",
  8527. "allowfullscreen": "",
  8528. "frameborder": "no",
  8529. "border": "0",
  8530. "scrolling ": "no",
  8531. "style": {
  8532. "cssText": "border:0; width:100%; height:100%;"
  8533. },
  8534. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8535. })
  8536. _box.appendChild(_iframe);
  8537. _box.appendChild(_jie);
  8538. _formdiv = new U.UF.UI.form(
  8539. "思维网格",
  8540. _box, {
  8541. "id": "mindNetwork" + cid + stage + task + tool,
  8542. "style": {
  8543. "width": "90%",
  8544. "height": "90%",
  8545. "overflow": 'hidden'
  8546. },
  8547. "onresize": function () { }
  8548. }, {
  8549. closecallback: function () { }
  8550. }, {
  8551. "style": {
  8552. "height": "36px"
  8553. }
  8554. }).form; //创建窗体
  8555. _taskbar = {
  8556. "id": str + _formdiv.id,
  8557. "style": {
  8558. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8559. },
  8560. "name": "思维网格",
  8561. "forms": _formdiv,
  8562. "click": function () {
  8563. U.MD.D.I.openApplication(str, obj, info);
  8564. }
  8565. }
  8566. break;
  8567. case "courseDesign":
  8568. _iframe = $$("iframe", {
  8569. "webkitallowfullscreen": "",
  8570. "mozallowfullscreen": "",
  8571. "allowfullscreen": "",
  8572. "frameborder": "no",
  8573. "border": "0",
  8574. "scrolling ": "no",
  8575. "style": {
  8576. "cssText": "border:0; width:100%; height:100%;"
  8577. },
  8578. "src": "/course-design-vue"
  8579. })
  8580. _box.appendChild(_iframe);
  8581. _box.appendChild(_jie);
  8582. _formdiv = new U.UF.UI.form(
  8583. "项目设计",
  8584. _box, {
  8585. "id": "courseDesign" + cid + stage + task + tool,
  8586. "style": {
  8587. "width": "90%",
  8588. "height": "90%",
  8589. "overflow": 'hidden'
  8590. },
  8591. "onresize": function () { }
  8592. }, {
  8593. closecallback: function () { }
  8594. }, {
  8595. "style": {
  8596. "height": "36px"
  8597. }
  8598. }).form; //创建窗体
  8599. _taskbar = {
  8600. "id": str + _formdiv.id,
  8601. "style": {
  8602. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8603. },
  8604. "name": "项目设计",
  8605. "forms": _formdiv,
  8606. "click": function () {
  8607. U.MD.D.I.openApplication(str, obj, info);
  8608. }
  8609. }
  8610. break;
  8611. }
  8612. const script1 = document.createElement("script");
  8613. script1.type = "text/javascript";
  8614. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8615. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8616. const script2 = document.createElement("script");
  8617. script2.type = "text/javascript";
  8618. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8619. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8620. const script3 = document.createElement("script");
  8621. script3.type = "text/javascript";
  8622. script3.charset = "UTF-8";
  8623. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8624. const script4 = document.createElement("script");
  8625. script4.type = "text/javascript";
  8626. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8627. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8628. if (_iframe) {
  8629. if (str == 'doc') {
  8630. _iframe = _formdiv.querySelector('iframe')
  8631. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8632. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. // _iframe.contentWindow.document.body.appendChild(script3);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. })
  8638. if (onloadListener) {
  8639. _iframe.contentDocument.location.reload()
  8640. } else {
  8641. _iframe.contentDocument.location.reload()
  8642. }
  8643. } else if (str == 'courseDesign') {
  8644. U.UF.DL.iframeLoad(_iframe, function () {
  8645. // _iframe.contentWindow.U.MD.O.W.load();
  8646. // _iframe.contentWindow.document.body.appendChild(script1);
  8647. _iframe.contentWindow.document.body.appendChild(script2);
  8648. _iframe.contentWindow.document.body.appendChild(script4);
  8649. })
  8650. } else if (str == 'mind') {
  8651. _iframe = _formdiv.querySelector('iframe')
  8652. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8653. //
  8654. _iframe.contentWindow.document.body.appendChild(script1);
  8655. _iframe.contentWindow.document.body.appendChild(script2);
  8656. _iframe.contentWindow.document.body.appendChild(script4);
  8657. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8658. })
  8659. if (onloadListener) {
  8660. _iframe.contentDocument.location.reload()
  8661. } else {
  8662. _iframe.contentDocument.location.reload()
  8663. }
  8664. } else if (str == 'whiteboard') {
  8665. _iframe = _formdiv.querySelector('iframe')
  8666. let onloadListener = _iframe.onload = () => {
  8667. _iframe.contentWindow.document.body.appendChild(script1);
  8668. _iframe.contentWindow.document.body.appendChild(script2);
  8669. _iframe.contentWindow.document.body.appendChild(script4);
  8670. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8671. };
  8672. // if (onloadListener) {
  8673. // try {
  8674. // _iframe.src += "?cocorobo="+new Date().getTime()
  8675. // _iframe.contentWindow.document.location.reload()
  8676. // } catch (error) {
  8677. // }
  8678. // } else {
  8679. // _iframe.contentDocument.location.reload()
  8680. // }
  8681. } else {
  8682. _iframe.onload = () => {
  8683. _iframe.contentWindow.document.body.appendChild(script1);
  8684. _iframe.contentWindow.document.body.appendChild(script2);
  8685. // _iframe.contentWindow.document.body.appendChild(script3);
  8686. _iframe.contentWindow.document.body.appendChild(script4);
  8687. };
  8688. }
  8689. _jie.onclick = async () => {
  8690. let text = ''
  8691. if (aTool == 1) {
  8692. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8693. text = _iframe.contentWindow.h.app.scene.elements
  8694. let files = _iframe.contentWindow.h.app.files
  8695. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  8696. return
  8697. } else if (aTool == 6) {
  8698. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8699. } else if (aTool == 3) {
  8700. text = await U.MD.D.I.getEditorContent(_iframe);
  8701. }
  8702. _loading.style.display = 'flex'
  8703. console.log(_loading);
  8704. var _ajs = _iframe.contentWindow.document.createElement("script");
  8705. _ajs.type = "text/javascript";
  8706. _ajs.innerHTML =
  8707. // 'console.log(' + _loading + ');\n' +
  8708. 'var _js = document.createElement("script");\n' +
  8709. '_js.type="text/javascript";\n' +
  8710. '_js.charset="UTF-8";\n' +
  8711. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8712. "_js.onload = function(){\n" +
  8713. ' var a = document.getElementsByTagName("img")\n' +
  8714. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8715. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8716. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8717. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8718. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8719. "beforeUpload_shishi(file," +
  8720. "'" +
  8721. _userid +
  8722. "'" +
  8723. ", " +
  8724. "'" +
  8725. _cid +
  8726. "'" +
  8727. ", " +
  8728. "'" +
  8729. _stage +
  8730. "'" +
  8731. ", " +
  8732. "'" +
  8733. _task +
  8734. "'" +
  8735. ", " +
  8736. "'" +
  8737. _tool +
  8738. "'" +
  8739. ", " +
  8740. "'" +
  8741. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8742. "'" +
  8743. ", " +
  8744. "'" +
  8745. aTool +
  8746. "'" +
  8747. ", " +
  8748. "`" +
  8749. text +
  8750. "`" +
  8751. ")\n" +
  8752. " });\n" +
  8753. "}\n" +
  8754. "document.head.appendChild(_js);\n";
  8755. _iframe.contentWindow.document.head.appendChild(_ajs);
  8756. }
  8757. }
  8758. //U.MD.D.I.openClick(str);
  8759. //如果有任务栏信息
  8760. // if (_taskbar) {
  8761. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8762. // }
  8763. }
  8764. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8765. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8766. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8767. _userinfo = US.userInfo, //登录用户信息
  8768. _userid = US.userInfo.userid //登录用户id
  8769. let _iframe;
  8770. let _cid = cid,
  8771. _stage = stage,
  8772. _task = task,
  8773. _tool = tool;
  8774. var _jie = $$("div", {
  8775. "style": {
  8776. "position": "absolute",
  8777. "bottom": "50px",
  8778. "right": "50px",
  8779. "zIndex": "9999",
  8780. "backgroundColor": "#2268bc",
  8781. "color": "#fff",
  8782. "padding": "12px 20px",
  8783. "cursor": "pointer",
  8784. "borderRadius": "4px",
  8785. },
  8786. "innerHTML": "提交作业"
  8787. })
  8788. let aTool = ''
  8789. let _loading = document.createElement('div')
  8790. _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;"
  8791. // _loading.id = "";
  8792. let _lchild = document.createElement('div')
  8793. let _limg = document.createElement('img')
  8794. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8795. _limg.style = "width: 26px;margin-right: 10px;"
  8796. _lchild.appendChild(_limg)
  8797. let _lspan = document.createElement('span')
  8798. _lspan.innerHTML = "上传中..."
  8799. _lchild.appendChild(_lspan)
  8800. _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%);"
  8801. _loading.appendChild(_lchild)
  8802. let _box = $$('div', {
  8803. "style": {
  8804. "position": "relative",
  8805. "width": "100%",
  8806. "height": "100%",
  8807. },
  8808. })
  8809. _box.appendChild(_loading)
  8810. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8811. switch (str) {
  8812. case "whiteboard":
  8813. aTool = 1;
  8814. _iframe = $$("iframe", {
  8815. "frameborder": "no",
  8816. "border": "0",
  8817. "scrolling ": "no",
  8818. "style": {
  8819. "cssText": "border:0;width:100%;height:100%"
  8820. },
  8821. "src": "https://beta.iwb.cocorobo.cn/"
  8822. })
  8823. _box.appendChild(_iframe);
  8824. _box.appendChild(_jie);
  8825. _formdiv = new U.UF.UI.form(
  8826. "电子白板",
  8827. _box, {
  8828. "id": "whiteboard" + cid + stage + task + tool,
  8829. "style": {
  8830. "width": "90%",
  8831. "height": "90%",
  8832. "overflow": 'hidden'
  8833. },
  8834. "onresize": function () { }
  8835. }, {
  8836. closecallback: function () { }
  8837. }, {
  8838. "style": {
  8839. "height": "36px"
  8840. }
  8841. }).form; //创建窗体
  8842. _taskbar = {
  8843. "id": str + _formdiv.id,
  8844. "style": {
  8845. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8846. },
  8847. "name": "电子白板",
  8848. "forms": _formdiv,
  8849. "click": function () {
  8850. U.MD.D.I.openApplication(str, obj, info);
  8851. }
  8852. }
  8853. break;
  8854. case "mind":
  8855. aTool = 3;
  8856. _iframe = $$("iframe", {
  8857. "frameborder": "no",
  8858. "border": "0",
  8859. "scrolling ": "no",
  8860. "style": {
  8861. "cssText": "border:0;width:100%;height:100%"
  8862. },
  8863. "src": "/kityminder-editor/dist/index.html"
  8864. })
  8865. _box.appendChild(_iframe);
  8866. _box.appendChild(_jie);
  8867. _formdiv = new U.UF.UI.form(
  8868. "思维导图",
  8869. _box, { //"/jsmind/example/demo.html"
  8870. "id": "mind" + cid + stage + task + tool,
  8871. "style": {
  8872. "width": "90%",
  8873. "height": "90%",
  8874. "overflow": 'hidden'
  8875. },
  8876. "onresize": function () { }
  8877. }, {
  8878. closecallback: function () { }
  8879. }, {
  8880. "style": {
  8881. "height": "36px"
  8882. }
  8883. }).form; //创建窗体
  8884. _taskbar = {
  8885. "id": str + _formdiv.id,
  8886. "style": {
  8887. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8888. },
  8889. "name": "思维导图",
  8890. "forms": _formdiv,
  8891. "click": function () {
  8892. U.MD.D.I.openApplication(str, obj, info);
  8893. }
  8894. }
  8895. break;
  8896. case "MindMap":
  8897. aTool = 3;
  8898. _iframe = $$("iframe", {
  8899. "frameborder": "no",
  8900. "border": "0",
  8901. "scrolling ": "no",
  8902. "style": {
  8903. "cssText": "border:0;width:100%;height:100%"
  8904. },
  8905. "src": "//cloud.cocorobo.cn/mind/"
  8906. })
  8907. _box.appendChild(_iframe);
  8908. _box.appendChild(_jie);
  8909. _formdiv = new U.UF.UI.form(
  8910. "思维导图",
  8911. _box, { //"/jsmind/example/demo.html"
  8912. "id": "mind" + cid + stage + task + tool,
  8913. "style": {
  8914. "width": "90%",
  8915. "height": "90%",
  8916. "overflow": 'hidden'
  8917. },
  8918. "onresize": function () { }
  8919. }, {
  8920. closecallback: function () { }
  8921. }, {
  8922. "style": {
  8923. "height": "36px"
  8924. }
  8925. }).form; //创建窗体
  8926. _taskbar = {
  8927. "id": str + _formdiv.id,
  8928. "style": {
  8929. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8930. },
  8931. "name": "思维导图",
  8932. "forms": _formdiv,
  8933. "click": function () {
  8934. U.MD.D.I.openApplication(str, obj, info);
  8935. }
  8936. }
  8937. break;
  8938. case "doc":
  8939. aTool = 6;
  8940. _iframe = $$("iframe", {
  8941. "frameborder": "no",
  8942. "border": "0",
  8943. "scrolling ": "no",
  8944. "style": {
  8945. "cssText": "border:0;width:100%;height:100%"
  8946. },
  8947. "src": "/Office/Word/WordEditArea.htm"
  8948. })
  8949. _box.appendChild(_iframe);
  8950. _box.appendChild(_jie);
  8951. _formdiv = new U.UF.UI.form(
  8952. "协同文档",
  8953. _box, {
  8954. "id": "doc" + cid + stage + task + tool,
  8955. "style": {
  8956. "width": "90%",
  8957. "height": "90%",
  8958. "overflow": 'hidden'
  8959. },
  8960. "onresize": function () { }
  8961. }, {
  8962. closecallback: function () { }
  8963. }, {
  8964. "style": {
  8965. "height": "36px"
  8966. }
  8967. }).form; //创建窗体
  8968. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8969. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8970. })
  8971. _taskbar = {
  8972. "id": str + _formdiv.id,
  8973. "style": {
  8974. "backgroundImage": "url(/img/icon/doc.png)"
  8975. },
  8976. "name": "协同文档",
  8977. "forms": _formdiv,
  8978. "click": function () {
  8979. U.MD.D.I.openApplication(str, obj, info);
  8980. }
  8981. }
  8982. break;
  8983. case "mindNetwork": //好友打开
  8984. aTool = 7;
  8985. _iframe = $$("iframe", {
  8986. "webkitallowfullscreen": "",
  8987. "mozallowfullscreen": "",
  8988. "allowfullscreen": "",
  8989. "frameborder": "no",
  8990. "border": "0",
  8991. "scrolling ": "no",
  8992. "style": {
  8993. "cssText": "border:0; width:100%; height:100%;"
  8994. },
  8995. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8996. })
  8997. _box.appendChild(_iframe);
  8998. _box.appendChild(_jie);
  8999. _formdiv = new U.UF.UI.form(
  9000. "思维网格",
  9001. _box, {
  9002. "id": "mindNetwork" + cid + stage + task + tool,
  9003. "style": {
  9004. "width": "90%",
  9005. "height": "90%",
  9006. "overflow": 'hidden'
  9007. },
  9008. "onresize": function () { }
  9009. }, {
  9010. closecallback: function () { }
  9011. }, {
  9012. "style": {
  9013. "height": "36px"
  9014. }
  9015. }).form; //创建窗体
  9016. _taskbar = {
  9017. "id": str + _formdiv.id,
  9018. "style": {
  9019. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9020. },
  9021. "name": "思维网格",
  9022. "forms": _formdiv,
  9023. "click": function () {
  9024. U.MD.D.I.openApplication(str, obj, info);
  9025. }
  9026. }
  9027. break;
  9028. case "courseDesign":
  9029. _iframe = $$("iframe", {
  9030. "webkitallowfullscreen": "",
  9031. "mozallowfullscreen": "",
  9032. "allowfullscreen": "",
  9033. "frameborder": "no",
  9034. "border": "0",
  9035. "scrolling ": "no",
  9036. "style": {
  9037. "cssText": "border:0; width:100%; height:100%;"
  9038. },
  9039. "src": "/course-design-vue"
  9040. })
  9041. _box.appendChild(_iframe);
  9042. _box.appendChild(_jie);
  9043. _formdiv = new U.UF.UI.form(
  9044. "项目设计",
  9045. _box, {
  9046. "id": "courseDesign" + cid + stage + task + tool,
  9047. "style": {
  9048. "width": "90%",
  9049. "height": "90%",
  9050. "overflow": 'hidden'
  9051. },
  9052. "onresize": function () { }
  9053. }, {
  9054. closecallback: function () { }
  9055. }, {
  9056. "style": {
  9057. "height": "36px"
  9058. }
  9059. }).form; //创建窗体
  9060. _taskbar = {
  9061. "id": str + _formdiv.id,
  9062. "style": {
  9063. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9064. },
  9065. "name": "项目设计",
  9066. "forms": _formdiv,
  9067. "click": function () {
  9068. U.MD.D.I.openApplication(str, obj, info);
  9069. }
  9070. }
  9071. break;
  9072. }
  9073. const script1 = document.createElement("script");
  9074. script1.type = "text/javascript";
  9075. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9076. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9077. const script2 = document.createElement("script");
  9078. script2.type = "text/javascript";
  9079. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9080. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9081. const script3 = document.createElement("script");
  9082. script3.type = "text/javascript";
  9083. script3.charset = "UTF-8";
  9084. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9085. const script4 = document.createElement("script");
  9086. script4.type = "text/javascript";
  9087. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9088. script4.src = window.origin + "/js/Common/jietu2E.js";
  9089. if (_iframe) {
  9090. if (str == 'doc') {
  9091. _iframe = _formdiv.querySelector('iframe')
  9092. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9093. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9094. _iframe.contentWindow.document.body.appendChild(script1);
  9095. _iframe.contentWindow.document.body.appendChild(script2);
  9096. // _iframe.contentWindow.document.body.appendChild(script3);
  9097. _iframe.contentWindow.document.body.appendChild(script4);
  9098. })
  9099. if (onloadListener) {
  9100. _iframe.contentDocument.location.reload()
  9101. } else {
  9102. _iframe.contentDocument.location.reload()
  9103. }
  9104. } else if (str == 'courseDesign') {
  9105. U.UF.DL.iframeLoad(_iframe, function () {
  9106. // _iframe.contentWindow.U.MD.O.W.load();
  9107. // _iframe.contentWindow.document.body.appendChild(script1);
  9108. _iframe.contentWindow.document.body.appendChild(script2);
  9109. _iframe.contentWindow.document.body.appendChild(script4);
  9110. })
  9111. } else if (str == 'mind') {
  9112. _iframe = _formdiv.querySelector('iframe')
  9113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9114. //
  9115. _iframe.contentWindow.document.body.appendChild(script1);
  9116. _iframe.contentWindow.document.body.appendChild(script2);
  9117. _iframe.contentWindow.document.body.appendChild(script4);
  9118. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9119. })
  9120. if (onloadListener) {
  9121. _iframe.contentDocument.location.reload()
  9122. } else {
  9123. _iframe.contentDocument.location.reload()
  9124. }
  9125. } else if (str == 'whiteboard') {
  9126. _iframe = _formdiv.querySelector('iframe')
  9127. let onloadListener = _iframe.onload = () => {
  9128. _iframe.contentWindow.document.body.appendChild(script1);
  9129. _iframe.contentWindow.document.body.appendChild(script2);
  9130. _iframe.contentWindow.document.body.appendChild(script4);
  9131. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9132. };
  9133. // if (onloadListener) {
  9134. // try {
  9135. // _iframe.src += "?cocorobo="+new Date().getTime()
  9136. // _iframe.contentWindow.document.location.reload()
  9137. // } catch (error) {
  9138. // }
  9139. // } else {
  9140. // _iframe.contentDocument.location.reload()
  9141. // }
  9142. } else {
  9143. _iframe.onload = () => {
  9144. _iframe.contentWindow.document.body.appendChild(script1);
  9145. _iframe.contentWindow.document.body.appendChild(script2);
  9146. // _iframe.contentWindow.document.body.appendChild(script3);
  9147. _iframe.contentWindow.document.body.appendChild(script4);
  9148. };
  9149. }
  9150. _jie.onclick = async () => {
  9151. let text = ''
  9152. if (aTool == 1) {
  9153. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9154. text = _iframe.contentWindow.h.app.scene.elements
  9155. let files = _iframe.contentWindow.h.app.files
  9156. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  9157. return
  9158. } else if (aTool == 6) {
  9159. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9160. } else if (aTool == 3) {
  9161. text = await U.MD.D.I.getEditorContent(_iframe);
  9162. }
  9163. _loading.style.display = 'flex'
  9164. console.log(_loading);
  9165. var _ajs = _iframe.contentWindow.document.createElement("script");
  9166. _ajs.type = "text/javascript";
  9167. _ajs.innerHTML =
  9168. // 'console.log(' + _loading + ');\n' +
  9169. 'var _js = document.createElement("script");\n' +
  9170. '_js.type="text/javascript";\n' +
  9171. '_js.charset="UTF-8";\n' +
  9172. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9173. "_js.onload = function(){\n" +
  9174. ' var a = document.getElementsByTagName("img")\n' +
  9175. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9176. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9177. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9178. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9179. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9180. "beforeUpload_shishi(file," +
  9181. "'" +
  9182. _userid +
  9183. "'" +
  9184. ", " +
  9185. "'" +
  9186. _cid +
  9187. "'" +
  9188. ", " +
  9189. "'" +
  9190. _stage +
  9191. "'" +
  9192. ", " +
  9193. "'" +
  9194. _task +
  9195. "'" +
  9196. ", " +
  9197. "'" +
  9198. _tool +
  9199. "'" +
  9200. ", " +
  9201. "'" +
  9202. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9203. "'" +
  9204. ", " +
  9205. "'" +
  9206. aTool +
  9207. "'" +
  9208. ", " +
  9209. "`" +
  9210. text +
  9211. "`" +
  9212. ")\n" +
  9213. " });\n" +
  9214. "}\n" +
  9215. "document.head.appendChild(_js);\n";
  9216. _iframe.contentWindow.document.head.appendChild(_ajs);
  9217. }
  9218. }
  9219. //U.MD.D.I.openClick(str);
  9220. //如果有任务栏信息
  9221. // if (_taskbar) {
  9222. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9223. // }
  9224. }
  9225. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9226. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9227. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9228. _userid = student.userid, //登录用户id
  9229. _username = student.student //用户名字
  9230. let _iframe;
  9231. let _cid = cid,
  9232. _stage = stage,
  9233. _task = task,
  9234. _tool = tool;
  9235. var _jie = $$("div", {
  9236. "style": {
  9237. "position": "absolute",
  9238. "bottom": "50px",
  9239. "right": "50px",
  9240. "zIndex": "9999",
  9241. "backgroundColor": "#2268bc",
  9242. "color": "#fff",
  9243. "padding": "12px 20px",
  9244. "cursor": "pointer",
  9245. "borderRadius": "4px",
  9246. },
  9247. "innerHTML": "提交作业"
  9248. })
  9249. let aTool = ''
  9250. let _loading = document.createElement('div')
  9251. _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;"
  9252. // _loading.id = "";
  9253. let _lchild = document.createElement('div')
  9254. let _limg = document.createElement('img')
  9255. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9256. _limg.style = "width: 26px;margin-right: 10px;"
  9257. _lchild.appendChild(_limg)
  9258. let _lspan = document.createElement('span')
  9259. _lspan.innerHTML = "上传中..."
  9260. _lchild.appendChild(_lspan)
  9261. _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%);"
  9262. _loading.appendChild(_lchild)
  9263. var _box = $$('div', {
  9264. "style": {
  9265. "position": "relative",
  9266. "width": "100%",
  9267. "height": "100%",
  9268. },
  9269. })
  9270. _box.appendChild(_loading)
  9271. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9272. switch (str) {
  9273. case "whiteboard":
  9274. aTool = 1;
  9275. _iframe = $$("iframe", {
  9276. "frameborder": "no",
  9277. "border": "0",
  9278. "scrolling ": "no",
  9279. "style": {
  9280. "cssText": "border:0;width:100%;height:100%"
  9281. },
  9282. "src": "https://beta.iwb.cocorobo.cn/"
  9283. })
  9284. _box.appendChild(_iframe);
  9285. _box.appendChild(_jie);
  9286. _formdiv = new U.UF.UI.form(
  9287. "电子白板-" + _username,
  9288. _box, {
  9289. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9290. "style": {
  9291. "width": "90%",
  9292. "height": "90%",
  9293. "overflow": 'hidden'
  9294. },
  9295. "onresize": function () { }
  9296. }, {
  9297. closecallback: function () { }
  9298. }, {
  9299. "style": {
  9300. "height": "36px"
  9301. }
  9302. }).form; //创建窗体
  9303. _taskbar = {
  9304. "id": str + _formdiv.id,
  9305. "style": {
  9306. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9307. },
  9308. "name": "电子白板",
  9309. "forms": _formdiv,
  9310. "click": function () {
  9311. U.MD.D.I.openApplication(str, obj, info);
  9312. }
  9313. }
  9314. break;
  9315. case "mind":
  9316. aTool = 3;
  9317. _iframe = $$("iframe", {
  9318. "frameborder": "no",
  9319. "border": "0",
  9320. "scrolling ": "no",
  9321. "style": {
  9322. "cssText": "border:0;width:100%;height:100%"
  9323. },
  9324. "src": "/kityminder-editor/dist/index.html"
  9325. })
  9326. _box.appendChild(_iframe);
  9327. _box.appendChild(_jie);
  9328. _formdiv = new U.UF.UI.form(
  9329. "思维导图-" + _username,
  9330. _box, { //"/jsmind/example/demo.html"
  9331. "id": "mind" + cid + stage + task + tool + _userid,
  9332. "style": {
  9333. "width": "90%",
  9334. "height": "90%",
  9335. "overflow": 'hidden'
  9336. },
  9337. "onresize": function () { }
  9338. }, {
  9339. closecallback: function () { }
  9340. }, {
  9341. "style": {
  9342. "height": "36px"
  9343. }
  9344. }).form; //创建窗体
  9345. _taskbar = {
  9346. "id": str + _formdiv.id,
  9347. "style": {
  9348. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9349. },
  9350. "name": "思维导图",
  9351. "forms": _formdiv,
  9352. "click": function () {
  9353. U.MD.D.I.openApplication(str, obj, info);
  9354. }
  9355. }
  9356. break;
  9357. case "MindMap":
  9358. aTool = 3;
  9359. _iframe = $$("iframe", {
  9360. "frameborder": "no",
  9361. "border": "0",
  9362. "scrolling ": "no",
  9363. "style": {
  9364. "cssText": "border:0;width:100%;height:100%"
  9365. },
  9366. "src": "//cloud.cocorobo.cn/mind/"
  9367. })
  9368. _box.appendChild(_iframe);
  9369. _box.appendChild(_jie);
  9370. _formdiv = new U.UF.UI.form(
  9371. "思维导图-" + _username,
  9372. _box, { //"/jsmind/example/demo.html"
  9373. "id": "mind" + cid + stage + task + tool + _userid,
  9374. "style": {
  9375. "width": "90%",
  9376. "height": "90%",
  9377. "overflow": 'hidden'
  9378. },
  9379. "onresize": function () { }
  9380. }, {
  9381. closecallback: function () { }
  9382. }, {
  9383. "style": {
  9384. "height": "36px"
  9385. }
  9386. }).form; //创建窗体
  9387. _taskbar = {
  9388. "id": str + _formdiv.id,
  9389. "style": {
  9390. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9391. },
  9392. "name": "思维导图",
  9393. "forms": _formdiv,
  9394. "click": function () {
  9395. U.MD.D.I.openApplication(str, obj, info);
  9396. }
  9397. }
  9398. break;
  9399. case "doc":
  9400. aTool = 6;
  9401. _iframe = $$("iframe", {
  9402. "frameborder": "no",
  9403. "border": "0",
  9404. "scrolling ": "no",
  9405. "style": {
  9406. "cssText": "border:0;width:100%;height:100%"
  9407. },
  9408. "src": "/Office/Word/WordEditArea.htm"
  9409. })
  9410. _box.appendChild(_iframe);
  9411. _box.appendChild(_jie);
  9412. _formdiv = new U.UF.UI.form(
  9413. "协同文档-" + _username,
  9414. _box, {
  9415. "id": "doc" + cid + stage + task + tool + _userid,
  9416. "style": {
  9417. "width": "90%",
  9418. "height": "90%",
  9419. "overflow": 'hidden'
  9420. },
  9421. "onresize": function () { }
  9422. }, {
  9423. closecallback: function () { }
  9424. }, {
  9425. "style": {
  9426. "height": "36px"
  9427. }
  9428. }).form; //创建窗体
  9429. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9430. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9431. })
  9432. _taskbar = {
  9433. "id": str + _formdiv.id,
  9434. "style": {
  9435. "backgroundImage": "url(/img/icon/doc.png)"
  9436. },
  9437. "name": "协同文档",
  9438. "forms": _formdiv,
  9439. "click": function () {
  9440. U.MD.D.I.openApplication(str, obj, info);
  9441. }
  9442. }
  9443. break;
  9444. case "mindNetwork": //好友打开
  9445. aTool = 7;
  9446. _iframe = $$("iframe", {
  9447. "webkitallowfullscreen": "",
  9448. "mozallowfullscreen": "",
  9449. "allowfullscreen": "",
  9450. "frameborder": "no",
  9451. "border": "0",
  9452. "scrolling ": "no",
  9453. "style": {
  9454. "cssText": "border:0; width:100%; height:100%;"
  9455. },
  9456. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9457. })
  9458. _box.appendChild(_iframe);
  9459. _box.appendChild(_jie);
  9460. _formdiv = new U.UF.UI.form(
  9461. "思维网格-" + _username,
  9462. _box, {
  9463. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9464. "style": {
  9465. "width": "90%",
  9466. "height": "90%",
  9467. "overflow": 'hidden'
  9468. },
  9469. "onresize": function () { }
  9470. }, {
  9471. closecallback: function () { }
  9472. }, {
  9473. "style": {
  9474. "height": "36px"
  9475. }
  9476. }).form; //创建窗体
  9477. _taskbar = {
  9478. "id": str + _formdiv.id,
  9479. "style": {
  9480. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9481. },
  9482. "name": "思维网格",
  9483. "forms": _formdiv,
  9484. "click": function () {
  9485. U.MD.D.I.openApplication(str, obj, info);
  9486. }
  9487. }
  9488. break;
  9489. case "courseDesign":
  9490. _iframe = $$("iframe", {
  9491. "webkitallowfullscreen": "",
  9492. "mozallowfullscreen": "",
  9493. "allowfullscreen": "",
  9494. "frameborder": "no",
  9495. "border": "0",
  9496. "scrolling ": "no",
  9497. "style": {
  9498. "cssText": "border:0; width:100%; height:100%;"
  9499. },
  9500. "src": "/course-design-vue"
  9501. })
  9502. _box.appendChild(_iframe);
  9503. _box.appendChild(_jie);
  9504. _formdiv = new U.UF.UI.form(
  9505. "项目设计-" + _username,
  9506. _box, {
  9507. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9508. "style": {
  9509. "width": "90%",
  9510. "height": "90%",
  9511. "overflow": 'hidden'
  9512. },
  9513. "onresize": function () { }
  9514. }, {
  9515. closecallback: function () { }
  9516. }, {
  9517. "style": {
  9518. "height": "36px"
  9519. }
  9520. }).form; //创建窗体
  9521. _taskbar = {
  9522. "id": str + _formdiv.id,
  9523. "style": {
  9524. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9525. },
  9526. "name": "项目设计",
  9527. "forms": _formdiv,
  9528. "click": function () {
  9529. U.MD.D.I.openApplication(str, obj, info);
  9530. }
  9531. }
  9532. break;
  9533. }
  9534. const script1 = document.createElement("script");
  9535. script1.type = "text/javascript";
  9536. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9537. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9538. const script2 = document.createElement("script");
  9539. script2.type = "text/javascript";
  9540. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9541. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9542. const script3 = document.createElement("script");
  9543. script3.type = "text/javascript";
  9544. script3.charset = "UTF-8";
  9545. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9546. const script4 = document.createElement("script");
  9547. script4.type = "text/javascript";
  9548. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9549. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9550. if (_iframe) {
  9551. if (str == 'doc') {
  9552. _iframe = _formdiv.querySelector('iframe')
  9553. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9554. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9555. _iframe.contentWindow.document.body.appendChild(script1);
  9556. _iframe.contentWindow.document.body.appendChild(script2);
  9557. // _iframe.contentWindow.document.body.appendChild(script3);
  9558. _iframe.contentWindow.document.body.appendChild(script4);
  9559. })
  9560. if (onloadListener) {
  9561. _iframe.contentDocument.location.reload()
  9562. } else {
  9563. _iframe.contentDocument.location.reload()
  9564. }
  9565. } else if (str == 'courseDesign') {
  9566. U.UF.DL.iframeLoad(_iframe, function () {
  9567. // _iframe.contentWindow.U.MD.O.W.load();
  9568. // _iframe.contentWindow.document.body.appendChild(script1);
  9569. _iframe.contentWindow.document.body.appendChild(script2);
  9570. _iframe.contentWindow.document.body.appendChild(script4);
  9571. })
  9572. } else if (str == 'mind') {
  9573. _iframe = _formdiv.querySelector('iframe')
  9574. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9575. //
  9576. _iframe.contentWindow.document.body.appendChild(script1);
  9577. _iframe.contentWindow.document.body.appendChild(script2);
  9578. _iframe.contentWindow.document.body.appendChild(script4);
  9579. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9580. })
  9581. if (onloadListener) {
  9582. _iframe.contentDocument.location.reload()
  9583. } else {
  9584. _iframe.contentDocument.location.reload()
  9585. }
  9586. } else if (str == 'whiteboard') {
  9587. _iframe = _formdiv.querySelector('iframe')
  9588. let onloadListener = _iframe.onload = () => {
  9589. _iframe.contentWindow.document.body.appendChild(script1);
  9590. _iframe.contentWindow.document.body.appendChild(script2);
  9591. _iframe.contentWindow.document.body.appendChild(script4);
  9592. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9593. };
  9594. // if (onloadListener) {
  9595. // try {
  9596. // _iframe.src += "?cocorobo="+new Date().getTime()
  9597. // _iframe.contentWindow.document.location.reload()
  9598. // } catch (error) {
  9599. // }
  9600. // } else {
  9601. // _iframe.contentDocument.location.reload()
  9602. // }
  9603. } else {
  9604. _iframe.onload = () => {
  9605. _iframe.contentWindow.document.body.appendChild(script1);
  9606. _iframe.contentWindow.document.body.appendChild(script2);
  9607. // _iframe.contentWindow.document.body.appendChild(script3);
  9608. _iframe.contentWindow.document.body.appendChild(script4);
  9609. };
  9610. }
  9611. _jie.onclick = async () => {
  9612. let text = ''
  9613. if (aTool == 1) {
  9614. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9615. } else if (aTool == 6) {
  9616. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9617. } else if (aTool == 3) {
  9618. text = await U.MD.D.I.getEditorContent(_iframe);
  9619. }
  9620. _loading.style.display = 'flex'
  9621. console.log(_loading);
  9622. var _ajs = _iframe.contentWindow.document.createElement("script");
  9623. _ajs.type = "text/javascript";
  9624. _ajs.innerHTML =
  9625. // 'console.log(' + _loading + ');\n' +
  9626. 'var _js = document.createElement("script");\n' +
  9627. '_js.type="text/javascript";\n' +
  9628. '_js.charset="UTF-8";\n' +
  9629. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9630. "_js.onload = function(){\n" +
  9631. ' var a = document.getElementsByTagName("img")\n' +
  9632. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9633. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9634. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9635. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9636. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9637. "beforeUpload_shishi(file," +
  9638. "'" +
  9639. _userid +
  9640. "'" +
  9641. ", " +
  9642. "'" +
  9643. _cid +
  9644. "'" +
  9645. ", " +
  9646. "'" +
  9647. _stage +
  9648. "'" +
  9649. ", " +
  9650. "'" +
  9651. _task +
  9652. "'" +
  9653. ", " +
  9654. "'" +
  9655. _tool +
  9656. "'" +
  9657. ", " +
  9658. "'" +
  9659. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9660. "'" +
  9661. ", " +
  9662. "'" +
  9663. aTool +
  9664. "'" +
  9665. ", " +
  9666. "`" +
  9667. text +
  9668. "`" +
  9669. ")\n" +
  9670. " });\n" +
  9671. "}\n" +
  9672. "document.head.appendChild(_js);\n";
  9673. _iframe.contentWindow.document.head.appendChild(_ajs);
  9674. }
  9675. }
  9676. }
  9677. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9678. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9679. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9680. _userid = student.userid, //登录用户id
  9681. _username = student.student //用户名字
  9682. let _iframe;
  9683. let _cid = cid,
  9684. _stage = stage,
  9685. _task = task,
  9686. _tool = tool;
  9687. var _jie = $$("div", {
  9688. "style": {
  9689. "position": "absolute",
  9690. "bottom": "50px",
  9691. "right": "50px",
  9692. "zIndex": "9999",
  9693. "backgroundColor": "#2268bc",
  9694. "color": "#fff",
  9695. "padding": "12px 20px",
  9696. "cursor": "pointer",
  9697. "borderRadius": "4px",
  9698. },
  9699. "innerHTML": "提交作业"
  9700. })
  9701. let aTool = ''
  9702. let _loading = document.createElement('div')
  9703. _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;"
  9704. // _loading.id = "";
  9705. let _lchild = document.createElement('div')
  9706. let _limg = document.createElement('img')
  9707. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9708. _limg.style = "width: 26px;margin-right: 10px;"
  9709. _lchild.appendChild(_limg)
  9710. let _lspan = document.createElement('span')
  9711. _lspan.innerHTML = "上传中..."
  9712. _lchild.appendChild(_lspan)
  9713. _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%);"
  9714. _loading.appendChild(_lchild)
  9715. var _box = $$('div', {
  9716. "style": {
  9717. "position": "relative",
  9718. "width": "100%",
  9719. "height": "100%",
  9720. },
  9721. })
  9722. _box.appendChild(_loading)
  9723. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9724. switch (str) {
  9725. case "whiteboard":
  9726. aTool = 1;
  9727. _iframe = $$("iframe", {
  9728. "frameborder": "no",
  9729. "border": "0",
  9730. "scrolling ": "no",
  9731. "style": {
  9732. "cssText": "border:0;width:100%;height:100%"
  9733. },
  9734. "src": "https://beta.iwb.cocorobo.cn/"
  9735. })
  9736. _box.appendChild(_iframe);
  9737. _box.appendChild(_jie);
  9738. _formdiv = new U.UF.UI.form(
  9739. "电子白板-" + _username,
  9740. _box, {
  9741. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9742. "style": {
  9743. "width": "90%",
  9744. "height": "90%",
  9745. "overflow": 'hidden'
  9746. },
  9747. "onresize": function () { }
  9748. }, {
  9749. closecallback: function () { }
  9750. }, {
  9751. "style": {
  9752. "height": "36px"
  9753. }
  9754. }).form; //创建窗体
  9755. _taskbar = {
  9756. "id": str + _formdiv.id,
  9757. "style": {
  9758. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9759. },
  9760. "name": "电子白板",
  9761. "forms": _formdiv,
  9762. "click": function () {
  9763. U.MD.D.I.openApplication(str, obj, info);
  9764. }
  9765. }
  9766. break;
  9767. case "mind":
  9768. aTool = 3;
  9769. _iframe = $$("iframe", {
  9770. "frameborder": "no",
  9771. "border": "0",
  9772. "scrolling ": "no",
  9773. "style": {
  9774. "cssText": "border:0;width:100%;height:100%"
  9775. },
  9776. "src": "/kityminder-editor/dist/index.html"
  9777. })
  9778. _box.appendChild(_iframe);
  9779. _box.appendChild(_jie);
  9780. _formdiv = new U.UF.UI.form(
  9781. "思维导图-" + _username,
  9782. _box, { //"/jsmind/example/demo.html"
  9783. "id": "mind" + cid + stage + task + tool + _userid,
  9784. "style": {
  9785. "width": "90%",
  9786. "height": "90%",
  9787. "overflow": 'hidden'
  9788. },
  9789. "onresize": function () { }
  9790. }, {
  9791. closecallback: function () { }
  9792. }, {
  9793. "style": {
  9794. "height": "36px"
  9795. }
  9796. }).form; //创建窗体
  9797. _taskbar = {
  9798. "id": str + _formdiv.id,
  9799. "style": {
  9800. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9801. },
  9802. "name": "思维导图",
  9803. "forms": _formdiv,
  9804. "click": function () {
  9805. U.MD.D.I.openApplication(str, obj, info);
  9806. }
  9807. }
  9808. break;
  9809. case "MindMap":
  9810. aTool = 3;
  9811. _iframe = $$("iframe", {
  9812. "frameborder": "no",
  9813. "border": "0",
  9814. "scrolling ": "no",
  9815. "style": {
  9816. "cssText": "border:0;width:100%;height:100%"
  9817. },
  9818. "src": "//cloud.cocorobo.cn/mind/"
  9819. })
  9820. _box.appendChild(_iframe);
  9821. _box.appendChild(_jie);
  9822. _formdiv = new U.UF.UI.form(
  9823. "思维导图-" + _username,
  9824. _box, { //"/jsmind/example/demo.html"
  9825. "id": "mind" + cid + stage + task + tool + _userid,
  9826. "style": {
  9827. "width": "90%",
  9828. "height": "90%",
  9829. "overflow": 'hidden'
  9830. },
  9831. "onresize": function () { }
  9832. }, {
  9833. closecallback: function () { }
  9834. }, {
  9835. "style": {
  9836. "height": "36px"
  9837. }
  9838. }).form; //创建窗体
  9839. _taskbar = {
  9840. "id": str + _formdiv.id,
  9841. "style": {
  9842. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9843. },
  9844. "name": "思维导图",
  9845. "forms": _formdiv,
  9846. "click": function () {
  9847. U.MD.D.I.openApplication(str, obj, info);
  9848. }
  9849. }
  9850. break;
  9851. case "doc":
  9852. aTool = 6;
  9853. _iframe = $$("iframe", {
  9854. "frameborder": "no",
  9855. "border": "0",
  9856. "scrolling ": "no",
  9857. "style": {
  9858. "cssText": "border:0;width:100%;height:100%"
  9859. },
  9860. "src": "/Office/Word/WordEditArea.htm"
  9861. })
  9862. _box.appendChild(_iframe);
  9863. _box.appendChild(_jie);
  9864. _formdiv = new U.UF.UI.form(
  9865. "协同文档-" + _username,
  9866. _box, {
  9867. "id": "doc" + cid + stage + task + tool + _userid,
  9868. "style": {
  9869. "width": "90%",
  9870. "height": "90%",
  9871. "overflow": 'hidden'
  9872. },
  9873. "onresize": function () { }
  9874. }, {
  9875. closecallback: function () { }
  9876. }, {
  9877. "style": {
  9878. "height": "36px"
  9879. }
  9880. }).form; //创建窗体
  9881. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9882. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9883. })
  9884. _taskbar = {
  9885. "id": str + _formdiv.id,
  9886. "style": {
  9887. "backgroundImage": "url(/img/icon/doc.png)"
  9888. },
  9889. "name": "协同文档",
  9890. "forms": _formdiv,
  9891. "click": function () {
  9892. U.MD.D.I.openApplication(str, obj, info);
  9893. }
  9894. }
  9895. break;
  9896. case "mindNetwork": //好友打开
  9897. aTool = 7;
  9898. _iframe = $$("iframe", {
  9899. "webkitallowfullscreen": "",
  9900. "mozallowfullscreen": "",
  9901. "allowfullscreen": "",
  9902. "frameborder": "no",
  9903. "border": "0",
  9904. "scrolling ": "no",
  9905. "style": {
  9906. "cssText": "border:0; width:100%; height:100%;"
  9907. },
  9908. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9909. })
  9910. _box.appendChild(_iframe);
  9911. _box.appendChild(_jie);
  9912. _formdiv = new U.UF.UI.form(
  9913. "思维网格-" + _username,
  9914. _box, {
  9915. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9916. "style": {
  9917. "width": "90%",
  9918. "height": "90%",
  9919. "overflow": 'hidden'
  9920. },
  9921. "onresize": function () { }
  9922. }, {
  9923. closecallback: function () { }
  9924. }, {
  9925. "style": {
  9926. "height": "36px"
  9927. }
  9928. }).form; //创建窗体
  9929. _taskbar = {
  9930. "id": str + _formdiv.id,
  9931. "style": {
  9932. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9933. },
  9934. "name": "思维网格",
  9935. "forms": _formdiv,
  9936. "click": function () {
  9937. U.MD.D.I.openApplication(str, obj, info);
  9938. }
  9939. }
  9940. break;
  9941. case "courseDesign":
  9942. _iframe = $$("iframe", {
  9943. "webkitallowfullscreen": "",
  9944. "mozallowfullscreen": "",
  9945. "allowfullscreen": "",
  9946. "frameborder": "no",
  9947. "border": "0",
  9948. "scrolling ": "no",
  9949. "style": {
  9950. "cssText": "border:0; width:100%; height:100%;"
  9951. },
  9952. "src": "/course-design-vue"
  9953. })
  9954. _box.appendChild(_iframe);
  9955. _box.appendChild(_jie);
  9956. _formdiv = new U.UF.UI.form(
  9957. "项目设计-" + _username,
  9958. _box, {
  9959. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9960. "style": {
  9961. "width": "90%",
  9962. "height": "90%",
  9963. "overflow": 'hidden'
  9964. },
  9965. "onresize": function () { }
  9966. }, {
  9967. closecallback: function () { }
  9968. }, {
  9969. "style": {
  9970. "height": "36px"
  9971. }
  9972. }).form; //创建窗体
  9973. _taskbar = {
  9974. "id": str + _formdiv.id,
  9975. "style": {
  9976. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9977. },
  9978. "name": "项目设计",
  9979. "forms": _formdiv,
  9980. "click": function () {
  9981. U.MD.D.I.openApplication(str, obj, info);
  9982. }
  9983. }
  9984. break;
  9985. }
  9986. const script1 = document.createElement("script");
  9987. script1.type = "text/javascript";
  9988. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9989. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9990. const script2 = document.createElement("script");
  9991. script2.type = "text/javascript";
  9992. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9993. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9994. const script3 = document.createElement("script");
  9995. script3.type = "text/javascript";
  9996. script3.charset = "UTF-8";
  9997. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9998. const script4 = document.createElement("script");
  9999. script4.type = "text/javascript";
  10000. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  10001. script4.src = window.origin + "/js/Common/jietu2E.js";
  10002. if (_iframe) {
  10003. if (str == 'doc') {
  10004. _iframe = _formdiv.querySelector('iframe')
  10005. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10006. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  10007. _iframe.contentWindow.document.body.appendChild(script1);
  10008. _iframe.contentWindow.document.body.appendChild(script2);
  10009. // _iframe.contentWindow.document.body.appendChild(script3);
  10010. _iframe.contentWindow.document.body.appendChild(script4);
  10011. })
  10012. if (onloadListener) {
  10013. _iframe.contentDocument.location.reload()
  10014. } else {
  10015. _iframe.contentDocument.location.reload()
  10016. }
  10017. } else if (str == 'courseDesign') {
  10018. U.UF.DL.iframeLoad(_iframe, function () {
  10019. // _iframe.contentWindow.U.MD.O.W.load();
  10020. // _iframe.contentWindow.document.body.appendChild(script1);
  10021. _iframe.contentWindow.document.body.appendChild(script2);
  10022. _iframe.contentWindow.document.body.appendChild(script4);
  10023. })
  10024. } else if (str == 'mind') {
  10025. _iframe = _formdiv.querySelector('iframe')
  10026. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10027. //
  10028. _iframe.contentWindow.document.body.appendChild(script1);
  10029. _iframe.contentWindow.document.body.appendChild(script2);
  10030. _iframe.contentWindow.document.body.appendChild(script4);
  10031. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  10032. })
  10033. if (onloadListener) {
  10034. _iframe.contentDocument.location.reload()
  10035. } else {
  10036. _iframe.contentDocument.location.reload()
  10037. }
  10038. } else if (str == 'whiteboard') {
  10039. _iframe = _formdiv.querySelector('iframe')
  10040. let onloadListener = _iframe.onload = () => {
  10041. _iframe.contentWindow.document.body.appendChild(script1);
  10042. _iframe.contentWindow.document.body.appendChild(script2);
  10043. _iframe.contentWindow.document.body.appendChild(script4);
  10044. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  10045. };
  10046. // if (onloadListener) {
  10047. // try {
  10048. // _iframe.src += "?cocorobo="+new Date().getTime()
  10049. // _iframe.contentWindow.document.location.reload()
  10050. // } catch (error) {
  10051. // }
  10052. // } else {
  10053. // _iframe.contentDocument.location.reload()
  10054. // }
  10055. } else {
  10056. _iframe.onload = () => {
  10057. _iframe.contentWindow.document.body.appendChild(script1);
  10058. _iframe.contentWindow.document.body.appendChild(script2);
  10059. // _iframe.contentWindow.document.body.appendChild(script3);
  10060. _iframe.contentWindow.document.body.appendChild(script4);
  10061. };
  10062. }
  10063. _jie.onclick = async () => {
  10064. let text = ''
  10065. if (aTool == 1) {
  10066. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10067. } else if (aTool == 6) {
  10068. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10069. } else if (aTool == 3) {
  10070. text = await U.MD.D.I.getEditorContent(_iframe);
  10071. }
  10072. _loading.style.display = 'flex'
  10073. console.log(_loading);
  10074. var _ajs = _iframe.contentWindow.document.createElement("script");
  10075. _ajs.type = "text/javascript";
  10076. _ajs.innerHTML =
  10077. // 'console.log(' + _loading + ');\n' +
  10078. 'var _js = document.createElement("script");\n' +
  10079. '_js.type="text/javascript";\n' +
  10080. '_js.charset="UTF-8";\n' +
  10081. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10082. "_js.onload = function(){\n" +
  10083. ' var a = document.getElementsByTagName("img")\n' +
  10084. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10085. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10086. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10087. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10088. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10089. "beforeUpload_shishi(file," +
  10090. "'" +
  10091. _userid +
  10092. "'" +
  10093. ", " +
  10094. "'" +
  10095. _cid +
  10096. "'" +
  10097. ", " +
  10098. "'" +
  10099. _stage +
  10100. "'" +
  10101. ", " +
  10102. "'" +
  10103. _task +
  10104. "'" +
  10105. ", " +
  10106. "'" +
  10107. _tool +
  10108. "'" +
  10109. ", " +
  10110. "'" +
  10111. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  10112. "'" +
  10113. ", " +
  10114. "'" +
  10115. aTool +
  10116. "'" +
  10117. ", " +
  10118. "`" +
  10119. text +
  10120. "`" +
  10121. ")\n" +
  10122. " });\n" +
  10123. "}\n" +
  10124. "document.head.appendChild(_js);\n";
  10125. _iframe.contentWindow.document.head.appendChild(_ajs);
  10126. }
  10127. }
  10128. }
  10129. U.MD.D.I.getEditorContent = function (iframe) {
  10130. return new Promise((resolve, reject) => {
  10131. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  10132. console.log(content);
  10133. resolve(content)
  10134. });
  10135. });
  10136. }
  10137. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  10138. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  10139. // if (res.value[0].length > 0) {
  10140. // // resolve(res.value[0][0].text);
  10141. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  10142. // $(fileInput).val('');
  10143. // });
  10144. // }
  10145. // }, [], { "type": "GET", "withCredentials": true });
  10146. var xmlhttp;
  10147. var Mac, Sn, DeviceId
  10148. if (window.XMLHttpRequest) {
  10149. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10150. xmlhttp = new XMLHttpRequest();
  10151. } else {
  10152. // IE6, IE5 浏览器执行代码
  10153. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10154. }
  10155. xmlhttp.onreadystatechange = function () {
  10156. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10157. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10158. // resolve(res.value[0][0].text);
  10159. if (type == '2') {
  10160. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10161. } else if (type == '3') {
  10162. // iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10163. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  10164. // 如果是数组或含有 elements 并且 elements 是数组
  10165. let updateSceneData;
  10166. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  10167. if (Array.isArray(text)) {
  10168. // 兼容原有结构:仅为数组时
  10169. updateSceneData = { elements: text };
  10170. } else {
  10171. // 有 elements 和可能的 files 字段时,直接传递整个对象
  10172. updateSceneData = { ...text };
  10173. }
  10174. } else if (text && (text.elements || text.files)) {
  10175. updateSceneData = { ...text };
  10176. } else {
  10177. // fallback 兼容早期意外结构,作为 elements
  10178. updateSceneData = { elements: text };
  10179. }
  10180. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  10181. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  10182. const files = updateSceneData.files;
  10183. const fileKeys = Object.keys(files);
  10184. let promises = [];
  10185. let needConvert = false;
  10186. fileKeys.forEach(key => {
  10187. let file = files[key];
  10188. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  10189. // 是网络地址,需转换
  10190. needConvert = true;
  10191. let p = fetch(file.dataURL)
  10192. .then(res => res.blob())
  10193. .then(blob => {
  10194. return new Promise(resolve => {
  10195. const reader = new FileReader();
  10196. reader.onloadend = function () {
  10197. // data:[mime];base64,...
  10198. const base64 = reader.result;
  10199. file.dataURL = base64;
  10200. resolve();
  10201. };
  10202. reader.readAsDataURL(blob);
  10203. });
  10204. });
  10205. promises.push(p);
  10206. }
  10207. });
  10208. if (needConvert && promises.length > 0) {
  10209. Promise.all(promises).then(() => {
  10210. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10211. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  10212. });
  10213. } else {
  10214. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10215. }
  10216. } else {
  10217. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10218. }
  10219. }
  10220. } else {
  10221. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  10222. }
  10223. }
  10224. }
  10225. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10226. xmlhttp.send();
  10227. }
  10228. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10229. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10230. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10231. _userinfo = US.userInfo, //登录用户信息
  10232. _userid = US.userInfo.userid //登录用户id
  10233. let _iframe;
  10234. let _cid = cid,
  10235. _stage = stage,
  10236. _task = task,
  10237. _tool = tool;
  10238. var _jie = $$("div", {
  10239. "style": {
  10240. "position": "absolute",
  10241. "bottom": "50px",
  10242. "right": "50px",
  10243. "zIndex": "9999",
  10244. "backgroundColor": "#2268bc",
  10245. "color": "#fff",
  10246. "padding": "12px 20px",
  10247. "cursor": "pointer",
  10248. "borderRadius": "4px",
  10249. },
  10250. "innerHTML": "确认并提交"
  10251. })
  10252. let aTool = ''
  10253. let _loading = document.createElement('div')
  10254. _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;"
  10255. // _loading.id = "";
  10256. let _lchild = document.createElement('div')
  10257. let _limg = document.createElement('img')
  10258. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10259. _limg.style = "width: 26px;margin-right: 10px;"
  10260. _lchild.appendChild(_limg)
  10261. let _lspan = document.createElement('span')
  10262. _lspan.innerHTML = "上传中..."
  10263. _lchild.appendChild(_lspan)
  10264. _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%);"
  10265. _loading.appendChild(_lchild)
  10266. var _box = $$('div', {
  10267. "style": {
  10268. "position": "relative",
  10269. "width": "100%",
  10270. "height": "100%",
  10271. },
  10272. })
  10273. _box.appendChild(_loading)
  10274. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10275. switch (str) {
  10276. case "whiteboard":
  10277. aTool = 1;
  10278. _iframe = $$("iframe", {
  10279. "frameborder": "no",
  10280. "border": "0",
  10281. "scrolling ": "no",
  10282. "style": {
  10283. "cssText": "border:0;width:100%;height:100%"
  10284. },
  10285. "src": "https://beta.iwb.cocorobo.cn/"
  10286. })
  10287. _box.appendChild(_iframe);
  10288. _box.appendChild(_jie);
  10289. _formdiv = new U.UF.UI.form(
  10290. "电子白板",
  10291. _box, {
  10292. "id": "whiteboards" + cid + stage + task + tool,
  10293. "style": {
  10294. "width": "90%",
  10295. "height": "90%",
  10296. "overflow": 'hidden'
  10297. },
  10298. "onresize": function () { }
  10299. }, {
  10300. closecallback: function () { }
  10301. }, {
  10302. "style": {
  10303. "height": "36px"
  10304. }
  10305. }).form; //创建窗体
  10306. _taskbar = {
  10307. "id": str + _formdiv.id,
  10308. "style": {
  10309. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10310. },
  10311. "name": "电子白板",
  10312. "forms": _formdiv,
  10313. "click": function () {
  10314. U.MD.D.I.openApplication(str, obj, info);
  10315. }
  10316. }
  10317. break;
  10318. case "mind":
  10319. aTool = 3;
  10320. _iframe = $$("iframe", {
  10321. "frameborder": "no",
  10322. "border": "0",
  10323. "scrolling ": "no",
  10324. "style": {
  10325. "cssText": "border:0;width:100%;height:100%"
  10326. },
  10327. "src": "/kityminder-editor/dist/index.html"
  10328. });
  10329. _box.appendChild(_iframe);
  10330. _box.appendChild(_jie);
  10331. _formdiv = new U.UF.UI.form(
  10332. "思维导图",
  10333. _box, { //"/jsmind/example/demo.html"
  10334. "id": "minds" + cid + stage + task + tool,
  10335. "style": {
  10336. "width": "90%",
  10337. "height": "90%",
  10338. "overflow": 'hidden'
  10339. },
  10340. "onresize": function () { }
  10341. }, {
  10342. closecallback: function () { }
  10343. }, {
  10344. "style": {
  10345. "height": "36px"
  10346. }
  10347. }).form; //创建窗体
  10348. _taskbar = {
  10349. "id": str + _formdiv.id,
  10350. "style": {
  10351. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10352. },
  10353. "name": "思维导图",
  10354. "forms": _formdiv,
  10355. "click": function () {
  10356. U.MD.D.I.openApplication(str, obj, info);
  10357. }
  10358. }
  10359. break;
  10360. case "doc":
  10361. aTool = 6;
  10362. _iframe = $$("iframe", {
  10363. "frameborder": "no",
  10364. "border": "0",
  10365. "scrolling ": "no",
  10366. "style": {
  10367. "cssText": "border:0;width:100%;height:100%"
  10368. },
  10369. "src": "/Office/Word/WordEditArea.htm"
  10370. })
  10371. _box.appendChild(_iframe);
  10372. _box.appendChild(_jie);
  10373. _formdiv = new U.UF.UI.form(
  10374. "协同文档",
  10375. _box, {
  10376. "id": "docs" + cid + stage + task + tool,
  10377. "style": {
  10378. "width": "90%",
  10379. "height": "90%",
  10380. "overflow": 'hidden'
  10381. },
  10382. "onresize": function () { }
  10383. }, {
  10384. closecallback: function () { }
  10385. }, {
  10386. "style": {
  10387. "height": "36px"
  10388. }
  10389. }).form; //创建窗体
  10390. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10391. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10392. })
  10393. _taskbar = {
  10394. "id": str + _formdiv.id,
  10395. "style": {
  10396. "backgroundImage": "url(/img/icon/doc.png)"
  10397. },
  10398. "name": "协同文档",
  10399. "forms": _formdiv,
  10400. "click": function () {
  10401. U.MD.D.I.openApplication(str, obj, info);
  10402. }
  10403. }
  10404. break;
  10405. }
  10406. const script1 = document.createElement("script");
  10407. script1.type = "text/javascript";
  10408. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10409. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10410. const script2 = document.createElement("script");
  10411. script2.type = "text/javascript";
  10412. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10413. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10414. const script3 = document.createElement("script");
  10415. script3.type = "text/javascript";
  10416. script3.charset = "UTF-8";
  10417. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10418. const script4 = document.createElement("script");
  10419. script4.type = "text/javascript";
  10420. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10421. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10422. if (_iframe) {
  10423. if (str == 'doc') {
  10424. _iframe = _formdiv.querySelector('iframe')
  10425. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10426. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10427. _iframe.contentWindow.document.body.appendChild(script1);
  10428. _iframe.contentWindow.document.body.appendChild(script2);
  10429. // _iframe.contentWindow.document.body.appendChild(script3);
  10430. _iframe.contentWindow.document.body.appendChild(script4);
  10431. })
  10432. if (onloadListener) {
  10433. _iframe.contentDocument.location.reload()
  10434. } else {
  10435. _iframe.contentDocument.location.reload()
  10436. }
  10437. } else if (str == 'mind') {
  10438. _iframe = _formdiv.querySelector('iframe')
  10439. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10440. _iframe.contentWindow.document.body.appendChild(script1);
  10441. _iframe.contentWindow.document.body.appendChild(script2);
  10442. _iframe.contentWindow.document.body.appendChild(script4);
  10443. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10444. })
  10445. if (onloadListener) {
  10446. _iframe.contentDocument.location.reload()
  10447. } else {
  10448. _iframe.contentDocument.location.reload()
  10449. }
  10450. } else {
  10451. _iframe.onload = () => {
  10452. _iframe.contentWindow.document.body.appendChild(script1);
  10453. _iframe.contentWindow.document.body.appendChild(script2);
  10454. // _iframe.contentWindow.document.body.appendChild(script3);
  10455. _iframe.contentWindow.document.body.appendChild(script4);
  10456. };
  10457. }
  10458. _jie.onclick = async () => {
  10459. let text = ''
  10460. if (aTool == 6) {
  10461. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10462. } else if (aTool == 3) {
  10463. text = await U.MD.D.I.getEditorContent(_iframe);
  10464. }
  10465. _loading.style.display = 'flex'
  10466. console.log(_loading);
  10467. var _ajs = _iframe.contentWindow.document.createElement("script");
  10468. _ajs.type = "text/javascript";
  10469. _ajs.innerHTML =
  10470. // 'console.log(' + _loading + ');\n' +
  10471. 'var _js = document.createElement("script");\n' +
  10472. '_js.type="text/javascript";\n' +
  10473. '_js.charset="UTF-8";\n' +
  10474. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10475. "_js.onload = function(){\n" +
  10476. ' var a = document.getElementsByTagName("img")\n' +
  10477. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10478. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10479. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10480. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10481. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10482. "beforeUpload_shishi(file," +
  10483. "'" +
  10484. _userid +
  10485. "'" +
  10486. ", " +
  10487. "'" +
  10488. _cid +
  10489. "'" +
  10490. ", " +
  10491. "'" +
  10492. _stage +
  10493. "'" +
  10494. ", " +
  10495. "'" +
  10496. _task +
  10497. "'" +
  10498. ", " +
  10499. "'" +
  10500. _tool +
  10501. "'" +
  10502. ", " +
  10503. "'" +
  10504. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10505. "'" +
  10506. ", " +
  10507. "'" +
  10508. aTool +
  10509. "'" +
  10510. ", " +
  10511. "`" +
  10512. text +
  10513. "`" +
  10514. ")\n" +
  10515. " });\n" +
  10516. "}\n" +
  10517. "document.head.appendChild(_js);\n";
  10518. _iframe.contentWindow.document.head.appendChild(_ajs);
  10519. }
  10520. }
  10521. //U.MD.D.I.openClick(str);
  10522. //如果有任务栏信息
  10523. // if (_taskbar) {
  10524. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10525. // }
  10526. }
  10527. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10528. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10529. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10530. _userinfo = US.userInfo, //登录用户信息
  10531. _userid = US.userInfo.userid //登录用户id
  10532. let _iframe;
  10533. let _cid = cid,
  10534. _stage = stage,
  10535. _task = task,
  10536. _tool = tool;
  10537. var _jie = $$("div", {
  10538. "style": {
  10539. "position": "absolute",
  10540. "bottom": "50px",
  10541. "right": "50px",
  10542. "zIndex": "9999",
  10543. "backgroundColor": "#2268bc",
  10544. "color": "#fff",
  10545. "padding": "12px 20px",
  10546. "cursor": "pointer",
  10547. "borderRadius": "4px",
  10548. },
  10549. "innerHTML": "确认并提交"
  10550. })
  10551. let aTool = ''
  10552. let _loading = document.createElement('div')
  10553. _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;"
  10554. // _loading.id = "";
  10555. let _lchild = document.createElement('div')
  10556. let _limg = document.createElement('img')
  10557. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10558. _limg.style = "width: 26px;margin-right: 10px;"
  10559. _lchild.appendChild(_limg)
  10560. let _lspan = document.createElement('span')
  10561. _lspan.innerHTML = "上传中..."
  10562. _lchild.appendChild(_lspan)
  10563. _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%);"
  10564. _loading.appendChild(_lchild)
  10565. var _box = $$('div', {
  10566. "style": {
  10567. "position": "relative",
  10568. "width": "100%",
  10569. "height": "100%",
  10570. },
  10571. })
  10572. _box.appendChild(_loading)
  10573. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10574. switch (str) {
  10575. case "whiteboard":
  10576. aTool = 1;
  10577. _iframe = $$("iframe", {
  10578. "frameborder": "no",
  10579. "border": "0",
  10580. "scrolling ": "no",
  10581. "style": {
  10582. "cssText": "border:0;width:100%;height:100%"
  10583. },
  10584. "src": "https://beta.iwb.cocorobo.cn/"
  10585. })
  10586. _box.appendChild(_iframe);
  10587. _box.appendChild(_jie);
  10588. _formdiv = new U.UF.UI.form(
  10589. "电子白板",
  10590. _box, {
  10591. "id": "whiteboards" + cid + stage + task + tool,
  10592. "style": {
  10593. "width": "90%",
  10594. "height": "90%",
  10595. "overflow": 'hidden'
  10596. },
  10597. "onresize": function () { }
  10598. }, {
  10599. closecallback: function () { }
  10600. }, {
  10601. "style": {
  10602. "height": "36px"
  10603. }
  10604. }).form; //创建窗体
  10605. _taskbar = {
  10606. "id": str + _formdiv.id,
  10607. "style": {
  10608. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10609. },
  10610. "name": "电子白板",
  10611. "forms": _formdiv,
  10612. "click": function () {
  10613. U.MD.D.I.openApplication(str, obj, info);
  10614. }
  10615. }
  10616. break;
  10617. case "mind":
  10618. aTool = 3;
  10619. _iframe = $$("iframe", {
  10620. "frameborder": "no",
  10621. "border": "0",
  10622. "scrolling ": "no",
  10623. "style": {
  10624. "cssText": "border:0;width:100%;height:100%"
  10625. },
  10626. "src": "/kityminder-editor/dist/index.html"
  10627. });
  10628. _box.appendChild(_iframe);
  10629. _box.appendChild(_jie);
  10630. _formdiv = new U.UF.UI.form(
  10631. "思维导图",
  10632. _box, { //"/jsmind/example/demo.html"
  10633. "id": "minds" + cid + stage + task + tool,
  10634. "style": {
  10635. "width": "90%",
  10636. "height": "90%",
  10637. "overflow": 'hidden'
  10638. },
  10639. "onresize": function () { }
  10640. }, {
  10641. closecallback: function () { }
  10642. }, {
  10643. "style": {
  10644. "height": "36px"
  10645. }
  10646. }).form; //创建窗体
  10647. _taskbar = {
  10648. "id": str + _formdiv.id,
  10649. "style": {
  10650. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10651. },
  10652. "name": "思维导图",
  10653. "forms": _formdiv,
  10654. "click": function () {
  10655. U.MD.D.I.openApplication(str, obj, info);
  10656. }
  10657. }
  10658. break;
  10659. case "doc":
  10660. aTool = 6;
  10661. _iframe = $$("iframe", {
  10662. "frameborder": "no",
  10663. "border": "0",
  10664. "scrolling ": "no",
  10665. "style": {
  10666. "cssText": "border:0;width:100%;height:100%"
  10667. },
  10668. "src": "/Office/Word/WordEditArea.htm"
  10669. })
  10670. _box.appendChild(_iframe);
  10671. _box.appendChild(_jie);
  10672. _formdiv = new U.UF.UI.form(
  10673. "协同文档",
  10674. _box, {
  10675. "id": "docs" + cid + stage + task + tool,
  10676. "style": {
  10677. "width": "90%",
  10678. "height": "90%",
  10679. "overflow": 'hidden'
  10680. },
  10681. "onresize": function () { }
  10682. }, {
  10683. closecallback: function () { }
  10684. }, {
  10685. "style": {
  10686. "height": "36px"
  10687. }
  10688. }).form; //创建窗体
  10689. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10690. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10691. })
  10692. _taskbar = {
  10693. "id": str + _formdiv.id,
  10694. "style": {
  10695. "backgroundImage": "url(/img/icon/doc.png)"
  10696. },
  10697. "name": "协同文档",
  10698. "forms": _formdiv,
  10699. "click": function () {
  10700. U.MD.D.I.openApplication(str, obj, info);
  10701. }
  10702. }
  10703. break;
  10704. }
  10705. const script1 = document.createElement("script");
  10706. script1.type = "text/javascript";
  10707. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10708. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10709. const script2 = document.createElement("script");
  10710. script2.type = "text/javascript";
  10711. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10712. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10713. const script3 = document.createElement("script");
  10714. script3.type = "text/javascript";
  10715. script3.charset = "UTF-8";
  10716. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10717. const script4 = document.createElement("script");
  10718. script4.type = "text/javascript";
  10719. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10720. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10721. if (_iframe) {
  10722. if (str == 'doc') {
  10723. _iframe = _formdiv.querySelector('iframe')
  10724. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10725. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10726. _iframe.contentWindow.document.body.appendChild(script1);
  10727. _iframe.contentWindow.document.body.appendChild(script2);
  10728. // _iframe.contentWindow.document.body.appendChild(script3);
  10729. _iframe.contentWindow.document.body.appendChild(script4);
  10730. })
  10731. if (onloadListener) {
  10732. _iframe.contentDocument.location.reload()
  10733. } else {
  10734. _iframe.contentDocument.location.reload()
  10735. }
  10736. } else if (str == 'mind') {
  10737. _iframe = _formdiv.querySelector('iframe')
  10738. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10739. _iframe.contentWindow.document.body.appendChild(script1);
  10740. _iframe.contentWindow.document.body.appendChild(script2);
  10741. _iframe.contentWindow.document.body.appendChild(script4);
  10742. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10743. })
  10744. if (onloadListener) {
  10745. _iframe.contentDocument.location.reload()
  10746. } else {
  10747. _iframe.contentDocument.location.reload()
  10748. }
  10749. } else {
  10750. _iframe.onload = () => {
  10751. _iframe.contentWindow.document.body.appendChild(script1);
  10752. _iframe.contentWindow.document.body.appendChild(script2);
  10753. // _iframe.contentWindow.document.body.appendChild(script3);
  10754. _iframe.contentWindow.document.body.appendChild(script4);
  10755. };
  10756. }
  10757. _jie.onclick = async () => {
  10758. let text = ''
  10759. if (aTool == 6) {
  10760. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10761. } else if (aTool == 3) {
  10762. text = await U.MD.D.I.getEditorContent(_iframe);
  10763. }
  10764. _loading.style.display = 'flex'
  10765. console.log(_loading);
  10766. var _ajs = _iframe.contentWindow.document.createElement("script");
  10767. _ajs.type = "text/javascript";
  10768. _ajs.innerHTML =
  10769. // 'console.log(' + _loading + ');\n' +
  10770. 'var _js = document.createElement("script");\n' +
  10771. '_js.type="text/javascript";\n' +
  10772. '_js.charset="UTF-8";\n' +
  10773. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10774. "_js.onload = function(){\n" +
  10775. ' var a = document.getElementsByTagName("img")\n' +
  10776. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10777. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10778. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10779. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10780. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10781. "beforeUpload_shishi(file," +
  10782. "'" +
  10783. _userid +
  10784. "'" +
  10785. ", " +
  10786. "'" +
  10787. _cid +
  10788. "'" +
  10789. ", " +
  10790. "'" +
  10791. _stage +
  10792. "'" +
  10793. ", " +
  10794. "'" +
  10795. _task +
  10796. "'" +
  10797. ", " +
  10798. "'" +
  10799. _tool +
  10800. "'" +
  10801. ", " +
  10802. "'" +
  10803. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10804. "'" +
  10805. ", " +
  10806. "'" +
  10807. aTool +
  10808. "'" +
  10809. ", " +
  10810. "`" +
  10811. text +
  10812. "`" +
  10813. ")\n" +
  10814. " });\n" +
  10815. "}\n" +
  10816. "document.head.appendChild(_js);\n";
  10817. _iframe.contentWindow.document.head.appendChild(_ajs);
  10818. }
  10819. }
  10820. //U.MD.D.I.openClick(str);
  10821. //如果有任务栏信息
  10822. // if (_taskbar) {
  10823. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10824. // }
  10825. }
  10826. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10827. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10828. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10829. _userinfo = US.userInfo, //登录用户信息
  10830. _userid = US.userInfo.userid //登录用户id
  10831. let _iframe;
  10832. let _cid = cid,
  10833. _stage = stage,
  10834. _task = task,
  10835. _tool = tool;
  10836. var _jie = $$("div", {
  10837. "style": {
  10838. "position": "absolute",
  10839. "bottom": "50px",
  10840. "right": "50px",
  10841. "zIndex": "9999",
  10842. "backgroundColor": "#2268bc",
  10843. "color": "#fff",
  10844. "padding": "12px 20px",
  10845. "cursor": "pointer",
  10846. "borderRadius": "4px",
  10847. },
  10848. "innerHTML": "上传模板"
  10849. })
  10850. let aTool = ''
  10851. let _loading = document.createElement('div')
  10852. _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;"
  10853. // _loading.id = "";
  10854. let _lchild = document.createElement('div')
  10855. let _limg = document.createElement('img')
  10856. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10857. _limg.style = "width: 26px;margin-right: 10px;"
  10858. _lchild.appendChild(_limg)
  10859. let _lspan = document.createElement('span')
  10860. _lspan.innerHTML = "上传中..."
  10861. _lchild.appendChild(_lspan)
  10862. _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%);"
  10863. _loading.appendChild(_lchild)
  10864. var _box = $$('div', {
  10865. "style": {
  10866. "position": "relative",
  10867. "width": "100%",
  10868. "height": "100%",
  10869. },
  10870. })
  10871. _box.appendChild(_loading)
  10872. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10873. switch (str) {
  10874. case "whiteboard":
  10875. aTool = 1;
  10876. _iframe = $$("iframe", {
  10877. "frameborder": "no",
  10878. "border": "0",
  10879. "scrolling ": "no",
  10880. "style": {
  10881. "cssText": "border:0;width:100%;height:100%"
  10882. },
  10883. "src": "https://beta.iwb.cocorobo.cn/"
  10884. })
  10885. _box.appendChild(_iframe);
  10886. _box.appendChild(_jie);
  10887. _formdiv = new U.UF.UI.form(
  10888. "电子白板",
  10889. _box, {
  10890. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10891. "style": {
  10892. "width": "90%",
  10893. "height": "90%",
  10894. "overflow": 'hidden'
  10895. },
  10896. "onresize": function () { }
  10897. }, {
  10898. closecallback: function () { }
  10899. }, {
  10900. "style": {
  10901. "height": "36px"
  10902. }
  10903. }).form; //创建窗体
  10904. _taskbar = {
  10905. "id": str + _formdiv.id,
  10906. "style": {
  10907. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10908. },
  10909. "name": "电子白板",
  10910. "forms": _formdiv,
  10911. "click": function () {
  10912. U.MD.D.I.openApplication(str, obj, info);
  10913. }
  10914. }
  10915. break;
  10916. case "mind":
  10917. aTool = 3;
  10918. _iframe = $$("iframe", {
  10919. "frameborder": "no",
  10920. "border": "0",
  10921. "scrolling ": "no",
  10922. "style": {
  10923. "cssText": "border:0;width:100%;height:100%"
  10924. },
  10925. "src": "/kityminder-editor/dist/index.html"
  10926. });
  10927. _box.appendChild(_iframe);
  10928. _box.appendChild(_jie);
  10929. _formdiv = new U.UF.UI.form(
  10930. "思维导图",
  10931. _box, { //"/jsmind/example/demo.html"
  10932. "id": "minds_Yu" + cid + stage + task + tool,
  10933. "style": {
  10934. "width": "90%",
  10935. "height": "90%",
  10936. "overflow": 'hidden'
  10937. },
  10938. "onresize": function () { }
  10939. }, {
  10940. closecallback: function () { }
  10941. }, {
  10942. "style": {
  10943. "height": "36px"
  10944. }
  10945. }).form; //创建窗体
  10946. _taskbar = {
  10947. "id": str + _formdiv.id,
  10948. "style": {
  10949. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10950. },
  10951. "name": "思维导图",
  10952. "forms": _formdiv,
  10953. "click": function () {
  10954. U.MD.D.I.openApplication(str, obj, info);
  10955. }
  10956. }
  10957. break;
  10958. case "doc":
  10959. aTool = 6;
  10960. _iframe = $$("iframe", {
  10961. "frameborder": "no",
  10962. "border": "0",
  10963. "scrolling ": "no",
  10964. "style": {
  10965. "cssText": "border:0;width:100%;height:100%"
  10966. },
  10967. "src": "/Office/Word/WordEditArea.htm"
  10968. })
  10969. _box.appendChild(_iframe);
  10970. _box.appendChild(_jie);
  10971. _formdiv = new U.UF.UI.form(
  10972. "协同文档",
  10973. _box, {
  10974. "id": "docs_Yu" + cid + stage + task + tool,
  10975. "style": {
  10976. "width": "90%",
  10977. "height": "90%",
  10978. "overflow": 'hidden'
  10979. },
  10980. "onresize": function () { }
  10981. }, {
  10982. closecallback: function () { }
  10983. }, {
  10984. "style": {
  10985. "height": "36px"
  10986. }
  10987. }).form; //创建窗体
  10988. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10989. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10990. })
  10991. _taskbar = {
  10992. "id": str + _formdiv.id,
  10993. "style": {
  10994. "backgroundImage": "url(/img/icon/doc.png)"
  10995. },
  10996. "name": "协同文档",
  10997. "forms": _formdiv,
  10998. "click": function () {
  10999. U.MD.D.I.openApplication(str, obj, info);
  11000. }
  11001. }
  11002. break;
  11003. case "CocoPi":
  11004. aTool = 57;
  11005. _iframe = $$("iframe", {
  11006. "allowpaymentrequest": "allowpaymentrequest",
  11007. "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",
  11008. "webkitallowfullscreen": "",
  11009. "mozallowfullscreen": "",
  11010. "frameborder": "no",
  11011. "border": "0",
  11012. "scrolling ": "no",
  11013. "style": {
  11014. "cssText": "border:0;width:100%;height:100%"
  11015. },
  11016. "src": "https://pi.cocorobo.cn/"
  11017. })
  11018. _box.appendChild(_iframe);
  11019. _box.appendChild(_jie);
  11020. _formdiv = new U.UF.UI.form(
  11021. "CocoPi",
  11022. _box, {
  11023. "id": "CocoPi_Yu" + cid + stage + task + tool,
  11024. "style": {
  11025. "width": "90%",
  11026. "height": "90%",
  11027. "overflow": 'hidden'
  11028. },
  11029. "onresize": function () { }
  11030. }, {
  11031. closecallback: function () { }
  11032. }, {
  11033. "style": {
  11034. "height": "36px"
  11035. }
  11036. }).form; //创建窗体
  11037. _taskbar = {
  11038. "id": str + _formdiv.id,
  11039. "style": {
  11040. "backgroundImage": "url(/img/icon/cocopi.png)"
  11041. },
  11042. "name": "CocoPi",
  11043. "forms": _formdiv,
  11044. "click": function () {
  11045. U.MD.D.I.openApplication(str, obj, info);
  11046. }
  11047. }
  11048. break;
  11049. case "ppt":
  11050. aTool = 73;
  11051. _iframe = $$("iframe", {
  11052. "frameborder": "no",
  11053. "border": "0",
  11054. "scrolling ": "no",
  11055. "style": {
  11056. "cssText": "border:0;width:100%;height:100%"
  11057. },
  11058. "src": "https://ppt.cocorobo.cn/"
  11059. });
  11060. _box.appendChild(_iframe);
  11061. _box.appendChild(_jie);
  11062. _formdiv = new U.UF.UI.form(
  11063. "PPT",
  11064. _box, { //"/jsmind/example/demo.html"
  11065. "id": "ppts_Yu" + cid + stage + task + tool,
  11066. "style": {
  11067. "width": "90%",
  11068. "height": "90%",
  11069. "overflow": 'hidden'
  11070. },
  11071. "onresize": function () { }
  11072. }, {
  11073. closecallback: function () { }
  11074. }, {
  11075. "style": {
  11076. "height": "36px"
  11077. }
  11078. }).form; //创建窗体
  11079. _taskbar = {
  11080. "id": str + _formdiv.id,
  11081. "style": {
  11082. "backgroundImage": "url(/img/icon/ppt.png)"
  11083. },
  11084. "name": "PPT",
  11085. "forms": _formdiv,
  11086. "click": function () {
  11087. U.MD.D.I.openApplication(str, obj, info);
  11088. }
  11089. }
  11090. break;
  11091. }
  11092. if (_iframe) {
  11093. if (str == 'doc') {
  11094. _iframe = _formdiv.querySelector('iframe')
  11095. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11096. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  11097. })
  11098. if (onloadListener) {
  11099. _iframe.contentDocument.location.reload()
  11100. } else {
  11101. _iframe.contentDocument.location.reload()
  11102. }
  11103. } else if (str == 'mind') {
  11104. _iframe = _formdiv.querySelector('iframe')
  11105. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11106. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  11107. })
  11108. if (onloadListener) {
  11109. _iframe.contentDocument.location.reload()
  11110. } else {
  11111. _iframe.contentDocument.location.reload()
  11112. }
  11113. } else if (str == 'whiteboard') {
  11114. _iframe = _formdiv.querySelector('iframe')
  11115. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11116. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  11117. })
  11118. // if (onloadListener) {
  11119. // try {
  11120. // _iframe.src += "?cocorobo="+new Date().getTime()
  11121. // _iframe.contentWindow.document.location.reload()
  11122. // } catch (error) {
  11123. // }
  11124. // } else {
  11125. // _iframe.contentDocument.location.reload()
  11126. // }
  11127. } else if (str == 'CocoPi') {
  11128. _iframe = _formdiv.querySelector('iframe')
  11129. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11130. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  11131. })
  11132. if (onloadListener) {
  11133. _iframe.contentDocument.location.reload()
  11134. } else {
  11135. _iframe.contentDocument.location.reload()
  11136. }
  11137. } else if (str == 'ppt') {
  11138. _iframe = _formdiv.querySelector('iframe')
  11139. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11140. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  11141. })
  11142. if (onloadListener) {
  11143. _iframe.contentDocument.location.reload()
  11144. } else {
  11145. _iframe.contentDocument.location.reload()
  11146. }
  11147. } else {
  11148. _iframe.onload = () => { };
  11149. }
  11150. _jie.onclick = async () => {
  11151. let text = ''
  11152. let files = ''
  11153. let type = '2'
  11154. if (aTool == 1) {
  11155. text = _iframe.contentWindow.h.app.scene.elements
  11156. files = _iframe.contentWindow.h.app.files
  11157. type = '3'
  11158. } else if (aTool == 6) {
  11159. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  11160. type = '1'
  11161. } else if (aTool == 3) {
  11162. text = await U.MD.D.I.getEditorContent(_iframe);
  11163. type = '2'
  11164. } else if (aTool == 57) {
  11165. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  11166. type = '4'
  11167. } else if (aTool == 73) {
  11168. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  11169. type = '5'
  11170. }
  11171. _loading.style.display = 'flex'
  11172. if(aTool == 1){
  11173. U.MD.D.I.downloadFile(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan, files)
  11174. }else {
  11175. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  11176. }
  11177. }
  11178. }
  11179. //U.MD.D.I.openClick(str);
  11180. //如果有任务栏信息
  11181. // if (_taskbar) {
  11182. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  11183. // }
  11184. }
  11185. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  11186. var xmlhttp;
  11187. var Mac, Sn, DeviceId
  11188. if (window.XMLHttpRequest) {
  11189. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11190. xmlhttp = new XMLHttpRequest();
  11191. } else {
  11192. // IE6, IE5 浏览器执行代码
  11193. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11194. }
  11195. xmlhttp.onreadystatechange = function () {
  11196. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11197. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11198. // resolve(res.value[0][0].text);
  11199. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11200. }
  11201. }
  11202. }
  11203. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11204. xmlhttp.send();
  11205. }
  11206. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  11207. var xmlhttp;
  11208. var Mac, Sn, DeviceId
  11209. if (window.XMLHttpRequest) {
  11210. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11211. xmlhttp = new XMLHttpRequest();
  11212. } else {
  11213. // IE6, IE5 浏览器执行代码
  11214. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11215. }
  11216. xmlhttp.onreadystatechange = function () {
  11217. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11218. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11219. // resolve(res.value[0][0].text);
  11220. if (type == '2') {
  11221. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11222. } else if (type == '3') {
  11223. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  11224. // 如果是数组或含有 elements 并且 elements 是数组
  11225. let updateSceneData;
  11226. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  11227. if (Array.isArray(text)) {
  11228. // 兼容原有结构:仅为数组时
  11229. updateSceneData = { elements: text };
  11230. } else {
  11231. // 有 elements 和可能的 files 字段时,直接传递整个对象
  11232. updateSceneData = { ...text };
  11233. }
  11234. } else if (text && (text.elements || text.files)) {
  11235. updateSceneData = { ...text };
  11236. } else {
  11237. // fallback 兼容早期意外结构,作为 elements
  11238. updateSceneData = { elements: text };
  11239. }
  11240. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  11241. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  11242. const files = updateSceneData.files;
  11243. const fileKeys = Object.keys(files);
  11244. let promises = [];
  11245. let needConvert = false;
  11246. fileKeys.forEach(key => {
  11247. let file = files[key];
  11248. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  11249. // 是网络地址,需转换
  11250. needConvert = true;
  11251. let p = fetch(file.dataURL)
  11252. .then(res => res.blob())
  11253. .then(blob => {
  11254. return new Promise(resolve => {
  11255. const reader = new FileReader();
  11256. reader.onloadend = function () {
  11257. // data:[mime];base64,...
  11258. const base64 = reader.result;
  11259. file.dataURL = base64;
  11260. resolve();
  11261. };
  11262. reader.readAsDataURL(blob);
  11263. });
  11264. });
  11265. promises.push(p);
  11266. }
  11267. });
  11268. if (needConvert && promises.length > 0) {
  11269. Promise.all(promises).then(() => {
  11270. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11271. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  11272. });
  11273. } else {
  11274. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11275. }
  11276. } else {
  11277. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11278. }
  11279. } else if (type == '4') {
  11280. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  11281. } else if (type == '5') {
  11282. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11283. }
  11284. } else {
  11285. if (type == '2') {
  11286. iframe.contentWindow.editor.minder.importData('json', '')
  11287. } else if (type == '3') {
  11288. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11289. } else if (type == '4') {
  11290. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11291. }
  11292. }
  11293. }
  11294. }
  11295. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11296. xmlhttp.send();
  11297. }
  11298. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11299. var xmlhttp;
  11300. var Mac, Sn, DeviceId
  11301. if (window.XMLHttpRequest) {
  11302. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11303. xmlhttp = new XMLHttpRequest();
  11304. } else {
  11305. // IE6, IE5 浏览器执行代码
  11306. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11307. }
  11308. xmlhttp.onreadystatechange = function () {
  11309. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11310. if (xmlhttp.response) {
  11311. // resolve(res.value[0][0].text);
  11312. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11313. // $(fileInput).val('');
  11314. // });
  11315. span.innerHTML = '上传成功'
  11316. setTimeout(() => {
  11317. loading.style.display = 'none'
  11318. }, 1000);
  11319. }
  11320. }
  11321. }
  11322. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11323. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11324. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11325. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11326. // 设置请求头,表示请求体的编码格式
  11327. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11328. // 设置请求体,使用url-encoded格式的数据
  11329. }
  11330. // 解密英文字符的函数
  11331. const decryptEnglish = (encryptedText) => {
  11332. if (!encryptedText) return '';
  11333. return encryptedText.replace(/[a-zA-Z]/g, (char) => {
  11334. const base = char <= 'Z' ? 65 : 97;
  11335. return String.fromCharCode(((char.charCodeAt(0) - base - 3 + 26) % 26) + base);
  11336. });
  11337. };
  11338. U.MD.D.I.downloadFile = function (cid, s, task, t, uid, type, text, loading, span, files) {
  11339. // 遍历 files,上传后只把 dataURL 变成链接,其它结构不变
  11340. let _fileArray = Object.keys(files);
  11341. if (!_fileArray.length) {
  11342. let text_str = JSON.stringify({
  11343. elements: text,
  11344. files: []
  11345. });
  11346. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11347. return;
  11348. }
  11349. let credentials = JSON.parse(decodeURIComponent(decryptEnglish('%7E%22dffhvvNhbLg%22%3D%22DNLDWOSHGX37TY5FKOPK%22%2F%22vhfuhwDffhvvNhb%22%3D%22T2VTz37KiroV7bhdU1Qgsb9Mo4H2BCNXxxb2pxCU%22%7G')));
  11350. window.AWS.config.update(credentials);
  11351. window.AWS.config.region = "cn-northwest-1";
  11352. var b2 = new window.AWS.S3({
  11353. params: { Bucket: "ccrb" }
  11354. });
  11355. let uploadedCount = 0;
  11356. let total = _fileArray.length;
  11357. _fileArray.forEach(function (key, idx) {
  11358. let fileObj = files[key];
  11359. if (!fileObj || !fileObj.dataURL) {
  11360. // 没有内容就直接加计数
  11361. uploadedCount++;
  11362. if (uploadedCount === total) finalizeUpload();
  11363. return;
  11364. }
  11365. // 如果 dataURL 已经是链接(http, https, //, oss, cloud, cocorobo)就不上传
  11366. if (
  11367. typeof fileObj.dataURL === "string" &&
  11368. (
  11369. /^https?:\/\//.test(fileObj.dataURL) ||
  11370. /^\/\//.test(fileObj.dataURL) ||
  11371. fileObj.dataURL.startsWith('oss://') ||
  11372. fileObj.dataURL.startsWith('cloud://') ||
  11373. fileObj.dataURL.indexOf('.cocorobo.cn/') > -1
  11374. )
  11375. ) {
  11376. // 已经是链接,不上传,直接计数
  11377. uploadedCount++;
  11378. if (uploadedCount === total) finalizeUpload();
  11379. return;
  11380. }
  11381. // 是 base64 字符串转 File
  11382. if (typeof fileObj.dataURL === "string") {
  11383. let filename = fileObj.name || ('file_' + key);
  11384. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11385. }
  11386. let file = fileObj.dataURL;
  11387. if (file) {
  11388. // fileObj 结构类似:
  11389. // {
  11390. // name: "file_3344aa4c0fa552dc01cb2fe5edb6e4eb3aed9e39",
  11391. // size: 12034,
  11392. // type: "image/jpeg",
  11393. // webkitRelativePath: "",
  11394. // dataURL: File对象
  11395. // }
  11396. let ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11397. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11398. : (file.type ? file.type.split('/')[1] : 'png');
  11399. let basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11400. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11401. : (fileObj.name || ('file_' + key));
  11402. var params = {
  11403. Key: basename + '_' + new Date().getTime() + "." + ext,
  11404. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11405. Body: file,
  11406. "Access-Control-Allow-Credentials": "*",
  11407. ACL: "public-read",
  11408. };
  11409. var options = {
  11410. partSize: 2048 * 1024 * 1024,
  11411. queueSize: 2,
  11412. leavePartsOnError: true,
  11413. };
  11414. b2.upload(params, options)
  11415. .on("httpUploadProgress", function (evt) {
  11416. // 进度处理
  11417. })
  11418. .send(function (err, data) {
  11419. if (data) {
  11420. // 只将 dataURL 字段替换为链接,其它原样不动
  11421. files[key].dataURL = data.Location;
  11422. }
  11423. // 上传出错仍然整体结构
  11424. uploadedCount++;
  11425. if (uploadedCount === total) finalizeUpload();
  11426. });
  11427. } else {
  11428. uploadedCount++;
  11429. if (uploadedCount === total) finalizeUpload();
  11430. }
  11431. });
  11432. function finalizeUpload() {
  11433. // 最终打包时,files结构不变,只是dataURL变为链接
  11434. // let fileList = _fileArray.map(key => files[key]);
  11435. let text_str = JSON.stringify({
  11436. elements: text,
  11437. files: files
  11438. });
  11439. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11440. }
  11441. }
  11442. U.MD.D.I.downloadFile2 = function (cid, stage, task, t, uid, text, loading, span, files, _iframe, str) {
  11443. // 优化:常量抽离、合并相同代码、结构简化
  11444. const b1 = "ccrb";
  11445. const r1 = "cn-northwest-1";
  11446. function injectScreenshotScript(text_str) {
  11447. // 注入屏幕截图脚本到iframe
  11448. loading.style.display = 'flex';
  11449. const doc = _iframe.contentWindow.document;
  11450. var s = doc.createElement("script");
  11451. s.type = "text/javascript";
  11452. // 优化脚本内容拼接
  11453. s.innerHTML = `
  11454. var _js = document.createElement("script");
  11455. _js.type="text/javascript";
  11456. _js.charset="UTF-8";
  11457. _js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  11458. _js.onload = function(){
  11459. var imgs = document.getElementsByTagName("img");
  11460. for(var i = 0; i < imgs.length; i++) { imgs[i].crossOrigin = "anonymous"; }
  11461. html2canvas(document.body, {
  11462. allowTaint: true,
  11463. useCORS: true,
  11464. height: document.body.scrollHeight,
  11465. windowHeight: document.body.scrollHeight
  11466. }).then(canvas => {
  11467. var base64Url = canvas.toDataURL("image/png");
  11468. var file = dataURLtoFile_shishi(base64Url, "截图");
  11469. beforeUpload_shishi(
  11470. file,
  11471. '${uid}',
  11472. '${cid}',
  11473. '${stage}',
  11474. '${task}',
  11475. '${t}',
  11476. '${str}_loadLi_Jie${cid}${stage}${task}${t}${uid}',
  11477. '1',
  11478. \`${text_str}\`
  11479. );
  11480. });
  11481. };
  11482. document.head.appendChild(_js);
  11483. `;
  11484. doc.head.appendChild(s);
  11485. }
  11486. let _fileArray = Object.keys(files);
  11487. if (!_fileArray.length) {
  11488. const text_str = JSON.stringify({ elements: text, files: [] });
  11489. console.log(loading);
  11490. injectScreenshotScript(text_str);
  11491. return;
  11492. }
  11493. let credentials = JSON.parse(decodeURIComponent(decryptEnglish('%7E%22dffhvvNhbLg%22%3D%22DNLDWOSHGX37TY5FKOPK%22%2F%22vhfuhwDffhvvNhb%22%3D%22T2VTz37KiroV7bhdU1Qgsb9Mo4H2BCNXxxb2pxCU%22%7G')));
  11494. // AWS 配置初始化(只做一次)
  11495. if (!window.AWS?.S3?.__ccrbInitialized) {
  11496. window.AWS.config.update(credentials);
  11497. window.AWS.config.region = r1;
  11498. window.AWS.S3.__ccrbInitialized = true;
  11499. }
  11500. const b2 = new window.AWS.S3({ params: { Bucket: b1 } });
  11501. let uploadedCount = 0;
  11502. const total = _fileArray.length;
  11503. function isFileUrl(url) {
  11504. return typeof url === "string" && (
  11505. /^https?:\/\//.test(url) ||
  11506. /^\/\//.test(url) ||
  11507. url.startsWith('oss://') ||
  11508. url.startsWith('cloud://') ||
  11509. url.indexOf('.cocorobo.cn/') > -1
  11510. );
  11511. }
  11512. function finalizeUpload() {
  11513. // 优化:只注入脚本,不重复提交
  11514. const text_str = JSON.stringify({ elements: text, files });
  11515. console.log(loading);
  11516. injectScreenshotScript(text_str);
  11517. }
  11518. _fileArray.forEach(function (key) {
  11519. const fileObj = files[key];
  11520. if (!fileObj || !fileObj.dataURL) {
  11521. uploadedCount++;
  11522. if (uploadedCount === total) finalizeUpload();
  11523. return;
  11524. }
  11525. if (isFileUrl(fileObj.dataURL)) {
  11526. uploadedCount++;
  11527. if (uploadedCount === total) finalizeUpload();
  11528. return;
  11529. }
  11530. // base64字符串转 File
  11531. if (typeof fileObj.dataURL === "string") {
  11532. const filename = fileObj.name || ('file_' + key);
  11533. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11534. }
  11535. const file = fileObj.dataURL;
  11536. if (!file) {
  11537. uploadedCount++;
  11538. if (uploadedCount === total) finalizeUpload();
  11539. return;
  11540. }
  11541. const ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11542. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11543. : (file.type ? file.type.split('/')[1] : 'png');
  11544. const basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11545. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11546. : (fileObj.name || ('file_' + key));
  11547. const params = {
  11548. Key: `${basename}_${Date.now()}.${ext}`,
  11549. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11550. Body: file,
  11551. "Access-Control-Allow-Credentials": "*",
  11552. ACL: "public-read"
  11553. };
  11554. const options = {
  11555. partSize: 2048 * 1024 * 1024,
  11556. queueSize: 2,
  11557. leavePartsOnError: true
  11558. };
  11559. b2.upload(params, options)
  11560. .on("httpUploadProgress", function (evt) {
  11561. // 进度处理可自定义
  11562. })
  11563. .send(function (err, data) {
  11564. if (data) {
  11565. files[key].dataURL = data.Location;
  11566. }
  11567. uploadedCount++;
  11568. if (uploadedCount === total) finalizeUpload();
  11569. });
  11570. });
  11571. }
  11572. function dataURLtoFile_shishi(dataurl, filename) {
  11573. try {
  11574. if (typeof dataurl !== "string" || dataurl.indexOf(',') === -1) {
  11575. throw new Error("Invalid dataurl");
  11576. }
  11577. let arr = dataurl.split(","),
  11578. mimeMatch = arr[0].match(/:(.*?);/);
  11579. if (!mimeMatch) {
  11580. throw new Error("Mime type not found in dataurl");
  11581. }
  11582. let mime = mimeMatch[1];
  11583. let bstr = atob(arr[1]);
  11584. let n = bstr.length;
  11585. let u8arr = new Uint8Array(n);
  11586. for (let i = 0; i < n; i++) {
  11587. u8arr[i] = bstr.charCodeAt(i);
  11588. }
  11589. // Check for File constructor compatibility
  11590. if (typeof File === "function") {
  11591. return new File([u8arr], filename, { type: mime });
  11592. } else {
  11593. // fallback for very old browsers
  11594. let blob = new Blob([u8arr], { type: mime });
  11595. blob.name = filename;
  11596. return blob;
  11597. }
  11598. } catch(e) {
  11599. console.error("dataURLtoFile_shishi error:", e, dataurl, filename);
  11600. // 返回null,调用方自行判断
  11601. return null;
  11602. }
  11603. }
  11604. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11605. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11606. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11607. _userinfo = US.userInfo, //登录用户信息
  11608. _userid = US.userInfo.userid //登录用户id
  11609. let _iframe;
  11610. let _cid = cid,
  11611. _stage = stage,
  11612. _task = task,
  11613. _tool = tool;
  11614. var _jie = $$("div", {
  11615. "style": {
  11616. "position": "absolute",
  11617. "bottom": "50px",
  11618. "right": "50px",
  11619. "zIndex": "9999",
  11620. "backgroundColor": "#2268bc",
  11621. "color": "#fff",
  11622. "padding": "12px 20px",
  11623. "cursor": "pointer",
  11624. "borderRadius": "4px",
  11625. },
  11626. "innerHTML": "提交作业"
  11627. })
  11628. let aTool = ''
  11629. let _loading = document.createElement('div')
  11630. _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;"
  11631. // _loading.id = "";
  11632. let _lchild = document.createElement('div')
  11633. let _limg = document.createElement('img')
  11634. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11635. _limg.style = "width: 26px;margin-right: 10px;"
  11636. _lchild.appendChild(_limg)
  11637. let _lspan = document.createElement('span')
  11638. _lspan.innerHTML = "上传中..."
  11639. _lchild.appendChild(_lspan)
  11640. _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%);"
  11641. _loading.appendChild(_lchild)
  11642. var _box = $$('div', {
  11643. "style": {
  11644. "position": "relative",
  11645. "width": "100%",
  11646. "height": "100%",
  11647. },
  11648. })
  11649. _box.appendChild(_loading)
  11650. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11651. switch (str) {
  11652. case "CocoPi":
  11653. aTool = 57;
  11654. _iframe = $$("iframe", {
  11655. "allowpaymentrequest": "allowpaymentrequest",
  11656. "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",
  11657. "webkitallowfullscreen": "",
  11658. "mozallowfullscreen": "",
  11659. "frameborder": "no",
  11660. "border": "0",
  11661. "scrolling ": "no",
  11662. "style": {
  11663. "cssText": "border:0;width:100%;height:100%"
  11664. },
  11665. "src": "https://pi.cocorobo.cn/"
  11666. })
  11667. _box.appendChild(_iframe);
  11668. _box.appendChild(_jie);
  11669. _formdiv = new U.UF.UI.form(
  11670. "CocoPi",
  11671. _box, {
  11672. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11673. "style": {
  11674. "width": "90%",
  11675. "height": "90%",
  11676. "overflow": 'hidden'
  11677. },
  11678. "onresize": function () { }
  11679. }, {
  11680. closecallback: function () { }
  11681. }, {
  11682. "style": {
  11683. "height": "36px"
  11684. }
  11685. }).form; //创建窗体
  11686. _taskbar = {
  11687. "id": str + _formdiv.id,
  11688. "style": {
  11689. "backgroundImage": "url(/img/icon/cocopi.png)"
  11690. },
  11691. "name": "CocoPi",
  11692. "forms": _formdiv,
  11693. "click": function () {
  11694. U.MD.D.I.openApplication(str, obj, info);
  11695. }
  11696. }
  11697. break;
  11698. }
  11699. if (_iframe) {
  11700. if (str == 'CocoPi') {
  11701. _iframe = _formdiv.querySelector('iframe')
  11702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11703. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11704. })
  11705. if (onloadListener) {
  11706. _iframe.contentDocument.location.reload()
  11707. } else {
  11708. _iframe.contentDocument.location.reload()
  11709. }
  11710. }
  11711. _jie.onclick = async () => {
  11712. let text = ''
  11713. if (aTool == 57) {
  11714. text = _iframe.contentWindow.getLoadXmlStr()
  11715. }
  11716. _loading.style.display = 'flex'
  11717. console.log(_loading);
  11718. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11719. _loading.style.display = 'none'
  11720. let _div = document.createElement('div')
  11721. _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;"
  11722. let _inner = document.createElement('div')
  11723. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11724. _inner.innerHTML = "上传成功"
  11725. _div.appendChild(_inner)
  11726. _iframe.contentWindow.window.document.body.appendChild(_div)
  11727. _div.onclick = () => {
  11728. _iframe.contentWindow.window.document.body.removeChild(_div)
  11729. }
  11730. setTimeout(() => {
  11731. _iframe.contentWindow.window.document.body.removeChild(_div)
  11732. }, 1000);
  11733. }, [], { "type": "POST", "withCredentials": true });
  11734. }
  11735. }
  11736. }
  11737. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11738. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11739. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11740. _userid = student.userid, //登录用户id
  11741. _username = student.student //用户名字
  11742. let _iframe;
  11743. let _cid = cid,
  11744. _stage = stage,
  11745. _task = task,
  11746. _tool = tool;
  11747. var _jie = $$("div", {
  11748. "style": {
  11749. "position": "absolute",
  11750. "bottom": "50px",
  11751. "right": "50px",
  11752. "zIndex": "9999",
  11753. "backgroundColor": "#2268bc",
  11754. "color": "#fff",
  11755. "padding": "12px 20px",
  11756. "cursor": "pointer",
  11757. "borderRadius": "4px",
  11758. },
  11759. "innerHTML": "提交作业"
  11760. })
  11761. let aTool = ''
  11762. let _loading = document.createElement('div')
  11763. _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;"
  11764. // _loading.id = "";
  11765. let _lchild = document.createElement('div')
  11766. let _limg = document.createElement('img')
  11767. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11768. _limg.style = "width: 26px;margin-right: 10px;"
  11769. _lchild.appendChild(_limg)
  11770. let _lspan = document.createElement('span')
  11771. _lspan.innerHTML = "上传中..."
  11772. _lchild.appendChild(_lspan)
  11773. _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%);"
  11774. _loading.appendChild(_lchild)
  11775. var _box = $$('div', {
  11776. "style": {
  11777. "position": "relative",
  11778. "width": "100%",
  11779. "height": "100%",
  11780. },
  11781. })
  11782. _box.appendChild(_loading)
  11783. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11784. switch (str) {
  11785. case "CocoPi":
  11786. aTool = 57;
  11787. _iframe = $$("iframe", {
  11788. "allowpaymentrequest": "allowpaymentrequest",
  11789. "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",
  11790. "webkitallowfullscreen": "",
  11791. "mozallowfullscreen": "",
  11792. "frameborder": "no",
  11793. "border": "0",
  11794. "scrolling ": "no",
  11795. "style": {
  11796. "cssText": "border:0;width:100%;height:100%"
  11797. },
  11798. "src": "https://pi.cocorobo.cn/"
  11799. })
  11800. _box.appendChild(_iframe);
  11801. _box.appendChild(_jie);
  11802. _formdiv = new U.UF.UI.form(
  11803. "CocoPi-" + _username,
  11804. _box, {
  11805. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11806. "style": {
  11807. "width": "90%",
  11808. "height": "90%",
  11809. "overflow": 'hidden'
  11810. },
  11811. "onresize": function () { }
  11812. }, {
  11813. closecallback: function () { }
  11814. }, {
  11815. "style": {
  11816. "height": "36px"
  11817. }
  11818. }).form; //创建窗体
  11819. _taskbar = {
  11820. "id": str + _formdiv.id,
  11821. "style": {
  11822. "backgroundImage": "url(/img/icon/cocopi.png)"
  11823. },
  11824. "name": "CocoPi",
  11825. "forms": _formdiv,
  11826. "click": function () {
  11827. U.MD.D.I.openApplication(str, obj, info);
  11828. }
  11829. }
  11830. break;
  11831. }
  11832. if (_iframe) {
  11833. if (str == 'CocoPi') {
  11834. _iframe = _formdiv.querySelector('iframe')
  11835. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11836. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11837. })
  11838. if (onloadListener) {
  11839. _iframe.contentDocument.location.reload()
  11840. } else {
  11841. _iframe.contentDocument.location.reload()
  11842. }
  11843. }
  11844. _jie.onclick = async () => {
  11845. let text = ''
  11846. if (aTool == 57) {
  11847. text = _iframe.contentWindow.getLoadXmlStr()
  11848. }
  11849. _loading.style.display = 'flex'
  11850. console.log(_loading);
  11851. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11852. _loading.style.display = 'none'
  11853. let _div = document.createElement('div')
  11854. _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;"
  11855. let _inner = document.createElement('div')
  11856. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11857. _inner.innerHTML = "上传成功"
  11858. _div.appendChild(_inner)
  11859. _iframe.contentWindow.window.document.body.appendChild(_div)
  11860. _div.onclick = () => {
  11861. _iframe.contentWindow.window.document.body.removeChild(_div)
  11862. }
  11863. setTimeout(() => {
  11864. _iframe.contentWindow.window.document.body.removeChild(_div)
  11865. }, 1000);
  11866. }, [], { "type": "POST", "withCredentials": true });
  11867. }
  11868. }
  11869. }
  11870. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11871. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11872. if (res.value[0].length > 0) {
  11873. if (atool == 57) {
  11874. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11875. }
  11876. } else {
  11877. if (atool == 57) {
  11878. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11879. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11880. }
  11881. }
  11882. }, [], { "type": "POST", "withCredentials": true });
  11883. }
  11884. U.MD.D.addOp = function (text, type, time) {
  11885. var userInfo = US.userInfo;
  11886. if (Object.keys(userInfo).length !== 0) {
  11887. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11888. }, [], { "type": "POST", "withCredentials": true });
  11889. }
  11890. }