DeskTop.js 671 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  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. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1379. ];
  1380. //nsfx
  1381. U.MD.D.I.nsfxStudentDeskIcon = [
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1386. ];
  1387. //stia
  1388. U.MD.D.I.stiaTeacherDeskIcon = [
  1389. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1390. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1391. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1392. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1393. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1398. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1399. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaStudentDeskIcon = [
  1406. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1408. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1409. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1410. ];
  1411. //szdjg
  1412. U.MD.D.I.szdjgTeacherDeskIcon = [
  1413. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1414. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1415. ];
  1416. //szdjg
  1417. U.MD.D.I.szdjgStudentDeskIcon = [
  1418. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1419. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1420. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. ];
  1423. //010607
  1424. U.MD.D.I.x010607TeacherDeskIcon = [
  1425. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1426. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1428. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1429. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1430. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1431. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1432. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1433. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1434. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1436. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1437. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1439. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607StudentDeskIcon = [
  1443. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1444. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1445. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1447. ];
  1448. //010608
  1449. U.MD.D.I.x010608TeacherDeskIcon = [
  1450. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1451. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1452. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1453. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1454. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1457. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1458. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1459. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1460. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1461. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1462. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1463. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608StudentDeskIcon = [
  1467. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1468. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1469. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1471. ];
  1472. //xhly
  1473. U.MD.D.I.xhlyTeacherDeskIcon = [
  1474. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1475. ];
  1476. //010608
  1477. U.MD.D.I.xhlyStudentDeskIcon = [
  1478. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. ];
  1480. //北师大
  1481. U.MD.D.I.BSDNSteacherDeskIcon = [
  1482. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1483. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1484. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1485. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1486. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1489. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1492. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1493. ];
  1494. //北师大
  1495. U.MD.D.I.BSDNSstudentDeskIcon = [
  1496. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1497. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1500. ];
  1501. //CUHK_EDU
  1502. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1505. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1506. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1507. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1511. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1512. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1513. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1514. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1515. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1516. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1517. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1521. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1525. ];
  1526. //010503
  1527. U.MD.D.I.x010503TeacherDeskIcon = [
  1528. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1529. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1530. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1531. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1532. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //010503
  1539. U.MD.D.I.x010503StudentDeskIcon = [
  1540. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. ];
  1545. //SPROUT Lab
  1546. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1550. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1551. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1556. ];
  1557. //SPROUT Lab
  1558. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1559. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1561. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //010204
  1565. U.MD.D.I.x010204TeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //010204
  1570. U.MD.D.I.x010204StudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //trail
  1577. U.MD.D.I.trailTeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. ];
  1581. //trail
  1582. U.MD.D.I.trailStudentDeskIcon = [
  1583. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1584. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1585. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1587. ];
  1588. //010504
  1589. U.MD.D.I.x010504TeacherDeskIcon = [
  1590. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1591. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1593. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1594. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1599. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1600. ];
  1601. //010504
  1602. U.MD.D.I.x010504StudentDeskIcon = [
  1603. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. ];
  1608. //SCNUET
  1609. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1610. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1611. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1613. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1614. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1615. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1616. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1619. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1620. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1621. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1622. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1623. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1625. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1627. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1628. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1629. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1631. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1632. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1633. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1634. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1635. ];
  1636. //SCNUET
  1637. U.MD.D.I.SCNUETAdminDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1642. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1643. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1644. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1645. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1646. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1647. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1648. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1649. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1650. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1651. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1653. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1654. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1655. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1656. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1657. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1658. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1659. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1660. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1661. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1662. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1663. ];
  1664. //SCNUET
  1665. U.MD.D.I.SCNUETStudentDeskIcon = [
  1666. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1667. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1668. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1669. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1670. ];
  1671. //x020201
  1672. U.MD.D.I.x020201TeacherDeskIcon = [
  1673. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1674. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1677. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1678. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1679. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1680. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1681. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1682. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1686. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1687. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1688. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1689. ];
  1690. //x020201
  1691. U.MD.D.I.x020201AdminDeskIcon = [
  1692. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1693. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1694. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1696. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1697. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //020201
  1711. U.MD.D.I.x020201StudentDeskIcon = [
  1712. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1713. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1716. ];
  1717. //010611
  1718. U.MD.D.I.x010611TeacherDeskIcon = [
  1719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1725. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1728. ];
  1729. //010611
  1730. U.MD.D.I.x010611StudentDeskIcon = [
  1731. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1732. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1735. ];
  1736. //tianyuan
  1737. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1738. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1739. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1740. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1741. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1742. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1744. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1749. ];
  1750. //010611
  1751. U.MD.D.I.tianyuanStudentDeskIcon = [
  1752. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1756. ];
  1757. //320101
  1758. U.MD.D.I.x320101TeacherDeskIcon = [
  1759. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1760. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1762. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1763. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1764. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1765. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1766. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1767. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1768. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1769. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1770. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1771. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1772. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1773. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1774. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1775. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1776. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1777. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1778. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1779. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1780. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1781. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1782. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1783. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1784. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1785. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1786. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1787. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1788. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1789. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1790. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1791. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1792. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1795. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1796. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1797. ];
  1798. //320101
  1799. U.MD.D.I.x320101StudentDeskIcon = [
  1800. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1802. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1804. ];
  1805. //#region 桌面初始化a
  1806. /**
  1807. * 初始化桌面的起始函数
  1808. *
  1809. */
  1810. U.MD.D.I.init = function () {
  1811. if ($("#U_MD_D_K")[0]) {
  1812. //初始化桌面图标
  1813. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1814. // var clickUrl = ':12588/requestIp.php';
  1815. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1816. // U.MD.D.I.Ip = data;
  1817. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1818. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1819. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1820. // })
  1821. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1822. // })
  1823. }
  1824. }
  1825. /**
  1826. * 模式切换
  1827. *
  1828. */
  1829. U.MD.D.I.ModeCheck = function (type) {
  1830. if (US.Config.type == type) {
  1831. return
  1832. }
  1833. US.Config.type = type
  1834. $('.U_PBL_Check .active')[0].className = ''
  1835. if (type == 1) {
  1836. $('.U_PBL_Check div')[0].className = 'active'
  1837. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1838. } else {
  1839. $('.U_PBL_Check div')[1].className = 'active'
  1840. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1841. }
  1842. //初始化桌面图标
  1843. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1844. if (type == 2) {
  1845. U.MD.D.I.openApplication("project")
  1846. }
  1847. }
  1848. /**
  1849. * 隐藏任务栏
  1850. *
  1851. * @param {element} 桌面元素
  1852. */
  1853. U.MD.D.I.hiddenTaskbar = function (el) {
  1854. //任务栏位置变小
  1855. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1856. //桌面的位置变大
  1857. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1858. }
  1859. /**
  1860. * 隐藏任务栏
  1861. *
  1862. * @param {element} 桌面元素
  1863. */
  1864. U.MD.D.I.hiddenTaskbarout = function (el) {
  1865. //任务栏位置变小
  1866. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1867. //任务栏位置变化
  1868. U.selectEl(el).css({ "bottom": "-60px" });
  1869. //桌面的位置变大
  1870. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1871. }
  1872. }
  1873. /**
  1874. * 初始化打印桌面图标
  1875. *
  1876. * @param {element} 桌面元素
  1877. */
  1878. U.MD.D.I.initDesktopIcons = function (el, type) {
  1879. var i, //用于循环
  1880. _content, //桌面图标元素
  1881. _iconcontent, //桌面图标元素
  1882. _frag = $$("frag"), //定义一个碎片元素
  1883. _type = US.userInfo.type,
  1884. _org = US.userInfo.org,
  1885. _oid = US.userInfo.organizeid,
  1886. _role = US.userInfo.role,
  1887. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1888. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1889. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1890. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1891. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1892. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1893. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1894. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1895. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1896. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1897. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1898. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1899. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1900. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1901. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1902. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1903. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1904. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1905. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1906. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1907. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1908. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1909. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1910. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1911. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1912. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1913. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1914. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1915. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1916. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1917. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1918. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1919. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1920. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1921. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1922. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1923. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1924. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1925. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1926. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1927. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1928. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1929. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1930. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1931. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1932. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1933. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1934. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1935. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1936. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1937. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1938. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1939. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1940. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1941. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1942. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1943. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1944. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1945. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1946. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1947. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1948. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1949. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1950. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1951. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1952. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1953. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1954. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1955. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1956. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1957. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1958. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1959. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1960. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1961. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1962. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1963. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1964. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1965. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1966. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1967. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1968. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1969. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1970. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1971. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1972. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1973. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1974. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1975. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1976. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1977. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1978. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1979. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1980. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1981. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1982. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1983. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1984. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1985. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1986. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1987. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1988. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1989. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1990. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1991. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1992. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1993. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1994. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1995. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1996. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1997. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1998. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1999. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2000. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2001. 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'];
  2002. //清楚桌面图标
  2003. el.innerHTML = "";
  2004. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2005. _teacherDesktopIconInfo.push(
  2006. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2007. { "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)" } },
  2008. )
  2009. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2010. }
  2011. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2012. _teacherDesktopIconInfo.push(
  2013. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2014. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2015. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2016. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2017. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2018. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2019. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2020. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2021. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2022. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2023. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2024. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2025. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2026. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2027. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2028. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2030. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2031. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2032. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2033. )
  2034. }
  2035. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2036. _teacherDesktopIconInfo.push(
  2037. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2038. )
  2039. }
  2040. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2041. // _teacherDesktopIconInfo.push(
  2042. // )
  2043. // }
  2044. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2045. _teacherDesktopIconInfo.push(
  2046. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2047. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2048. )
  2049. }
  2050. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2056. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2057. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2058. )
  2059. _studentDesktopIconInfo.push(
  2060. )
  2061. }
  2062. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2063. _teacherDesktopIconInfo.push(
  2064. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2065. )
  2066. _studentDesktopIconInfo.push(
  2067. )
  2068. }
  2069. //010606 组织
  2070. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2071. _teacherDesktopIconInfo.push(
  2072. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2073. )
  2074. _studentDesktopIconInfo.push(
  2075. )
  2076. }
  2077. //麒麟二中 和 民新小学
  2078. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2079. _teacherDesktopIconInfo.push(
  2080. )
  2081. }
  2082. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2083. _teacherDesktopIconInfo.push(
  2084. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2085. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2086. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2087. )
  2088. }
  2089. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2090. _hkTeacherDeskIconInfo.push(
  2091. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2092. )
  2093. }
  2094. //北师大附中(010601)
  2095. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2096. // _teacherDesktopIconInfo.push(
  2097. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2098. // )
  2099. // _studentDesktopIconInfo.push(
  2100. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. // )
  2102. // }
  2103. //樂善堂余近卿中學
  2104. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2105. _teacherDesktopIconInfo.push(
  2106. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2107. )
  2108. }
  2109. // Education Artificial Intelligence
  2110. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2111. _teacherDesktopIconInfo.push(
  2112. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2113. )
  2114. }
  2115. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2116. _teacherDesktopIconInfo.push(
  2117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2118. )
  2119. }
  2120. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2121. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2122. _teacherDesktopIconInfo.push(
  2123. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2125. )
  2126. }
  2127. //麒麟二中
  2128. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2129. _studentDesktopIconInfo.push(
  2130. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2131. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2132. )
  2133. }
  2134. //万科双语
  2135. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2136. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2137. if (el.Name == '项目管理') {
  2138. el.Name = 'PBL项目'
  2139. }
  2140. return el
  2141. })
  2142. _studentDesktopIconInfo3.push(
  2143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2144. )
  2145. }
  2146. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2147. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2148. return el.Name != '魔盒识字' && el.Name != '24点'
  2149. })
  2150. }
  2151. 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) {
  2152. _studentDesktopIconInfo.push(
  2153. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2154. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2155. )
  2156. }
  2157. //循环创建桌面图标
  2158. if (type == 1) {
  2159. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2160. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_studentDesktopIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_studentDesktopIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2177. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2178. _content = $$("div", {
  2179. className: "U_MD_D_KO",
  2180. "onmousedown": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_hkZJLSStudentDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2192. } //
  2193. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2194. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2195. _content = $$("div", {
  2196. className: "U_MD_D_KO",
  2197. "onmousedown": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_ytyStudentDeskIconInfo[i]]),
  2201. "onclick": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_ytyStudentDeskIconInfo[i]])
  2205. }, _frag); //
  2206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2209. } //
  2210. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2211. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2212. _content = $$("div", {
  2213. className: "U_MD_D_KO",
  2214. "onmousedown": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_jccssylStudentDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_jccssylStudentDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2226. }
  2227. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2228. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2229. _content = $$("div", {
  2230. className: "U_MD_D_KO",
  2231. "onmousedown": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_scnuaiStudentDeskIconInfo[i]]),
  2235. "onclick": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_scnuaiStudentDeskIconInfo[i]])
  2239. }, _frag); //
  2240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2243. }
  2244. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2245. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2246. _content = $$("div", {
  2247. className: "U_MD_D_KO",
  2248. "onmousedown": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_caleStudentDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_caleStudentDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2262. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2263. _content = $$("div", {
  2264. className: "U_MD_D_KO",
  2265. "onmousedown": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_thuioeStudentDeskIconInfo[i]]),
  2269. "onclick": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_thuioeStudentDeskIconInfo[i]])
  2273. }, _frag); //
  2274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2277. }
  2278. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2279. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2280. _content = $$("div", {
  2281. className: "U_MD_D_KO",
  2282. "onmousedown": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_tpcStudentDeskIconInfo[i]]),
  2286. "onclick": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_tpcStudentDeskIconInfo[i]])
  2290. }, _frag); //
  2291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2294. } //
  2295. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2296. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2297. _content = $$("div", {
  2298. className: "U_MD_D_KO",
  2299. "onmousedown": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_chjyjStudentDeskIconInfo[i]]),
  2303. "onclick": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_chjyjStudentDeskIconInfo[i]])
  2307. }, _frag); //
  2308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2311. }
  2312. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2313. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_szjkyStudentDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_szjkyStudentDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2330. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_x020201StudentDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_x020201StudentDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2347. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2348. _content = $$("div", {
  2349. className: "U_MD_D_KO",
  2350. "onmousedown": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_SCNUETStudentDeskIconInfo[i]]),
  2354. "onclick": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_SCNUETStudentDeskIconInfo[i]])
  2358. }, _frag); //
  2359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2362. }
  2363. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2364. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2365. _content = $$("div", {
  2366. className: "U_MD_D_KO",
  2367. "onmousedown": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_dseiStudentDeskIconInfo[i]]),
  2371. "onclick": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_dseiStudentDeskIconInfo[i]])
  2375. }, _frag); //
  2376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2379. }
  2380. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2381. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2382. _content = $$("div", {
  2383. className: "U_MD_D_KO",
  2384. "onmousedown": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2398. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2399. _content = $$("div", {
  2400. className: "U_MD_D_KO",
  2401. "onmousedown": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_nsfxStudentDeskIconInfo[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_nsfxStudentDeskIconInfo[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2413. }
  2414. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2415. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_stiaStudentDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_stiaStudentDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2432. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_szdjgStudentDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_szdjgStudentDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2447. }
  2448. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2449. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_x010607StudentDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010607StudentDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2466. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_xhlyStudentDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_xhlyStudentDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2483. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2500. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2501. _content = $$("div", {
  2502. className: "U_MD_D_KO",
  2503. "onmousedown": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_x010503StudentDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_x010503StudentDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2517. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_x010504StudentDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010504StudentDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2534. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_x010204StudentDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010204StudentDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2551. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_x320101StudentDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x320101StudentDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2568. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2569. _content = $$("div", {
  2570. className: "U_MD_D_KO",
  2571. "onmousedown": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_trailStudentDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_trailStudentDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2585. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2602. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2603. _content = $$("div", {
  2604. className: "U_MD_D_KO",
  2605. "onmousedown": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_x010608StudentDeskIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_x010608StudentDeskIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2619. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2620. _content = $$("div", {
  2621. className: "U_MD_D_KO",
  2622. "onmousedown": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_x010611StudentDeskIconInfo[i]]),
  2626. "onclick": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_x010611StudentDeskIconInfo[i]])
  2630. }, _frag); //
  2631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2634. }
  2635. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2636. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_tianyuantudentDeskIconInfo[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_tianyuantudentDeskIconInfo[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2651. }
  2652. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2653. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2654. _content = $$("div", {
  2655. className: "U_MD_D_KO",
  2656. "onmousedown": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_siesStudentDeskIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_siesStudentDeskIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2670. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_guzmsStudentDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_guzmsStudentDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2685. }
  2686. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2687. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2688. _content = $$("div", {
  2689. className: "U_MD_D_KO",
  2690. "onmousedown": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_hkStudentDeskIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_hkStudentDeskIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2704. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_hkaceStudentDeskIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_hkaceStudentDeskIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2721. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2722. _content = $$("div", {
  2723. className: "U_MD_D_KO",
  2724. "onmousedown": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2728. "onclick": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_BSDNSstudentDesktopIconInfo[i]])
  2732. }, _frag); //
  2733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2736. }
  2737. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2738. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2739. _content = $$("div", {
  2740. className: "U_MD_D_KO",
  2741. "onmousedown": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_cocobizStudentDeskIconInfo[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_cocobizStudentDeskIconInfo[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2753. }
  2754. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2755. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2756. _content = $$("div", {
  2757. className: "U_MD_D_KO",
  2758. "onmousedown": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_xxzjkyStudentDeskIconInfo[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2770. }
  2771. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2772. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_studentDesktopIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_studentDesktopIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2789. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_tcStudentDeskIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_tcStudentDeskIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2806. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2807. _content = $$("div", {
  2808. className: "U_MD_D_KO",
  2809. "onmousedown": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_szscStudentDeskIconInfo[i]]),
  2813. "onclick": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_szscStudentDeskIconInfo[i]])
  2817. }, _frag); //
  2818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2821. }
  2822. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2823. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2824. _content = $$("div", {
  2825. className: "U_MD_D_KO",
  2826. "onmousedown": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_studentDesktopIconInfo3[i]]),
  2830. "onclick": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_studentDesktopIconInfo3[i]])
  2834. }, _frag); //
  2835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2838. }
  2839. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2840. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_studentDesktopIconInfo2[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_studentDesktopIconInfo2[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2857. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2858. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2859. continue
  2860. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_wanketeacherDesktopIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2877. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_wankeAdminDesktopIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2894. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2895. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2896. continue
  2897. }
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_scnuaiTeacherDeskIconInfo[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2914. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2915. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2916. continue
  2917. }
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_BSDNSteacherDesktopIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2934. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_scnuaiAdminDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_scnuaiAdminDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2951. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2952. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_jccssylTeacherDeskIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_jccssylTeacherDeskIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2971. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2972. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_caleTeacherDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_caleTeacherDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2991. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_tpcOrganizerDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tpcOrganizerDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3008. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3009. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_tpcTeacherDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_tpcTeacherDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3028. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3029. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_teacherDesktopIconInfo2[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_teacherDesktopIconInfo2[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3048. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3049. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_thuioeTeacherDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_thuioeTeacherDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3068. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3069. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3070. continue
  3071. }
  3072. _content = $$("div", {
  3073. className: "U_MD_D_KO",
  3074. "onmousedown": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_lotechTeacherDeskIconInfo[i]]),
  3078. "onclick": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_lotechTeacherDeskIconInfo[i]])
  3082. }, _frag); //
  3083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3086. }//
  3087. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3088. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3089. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3090. continue
  3091. }
  3092. _content = $$("div", {
  3093. className: "U_MD_D_KO",
  3094. "onmousedown": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3098. "onclick": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3102. }, _frag); //
  3103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3106. }
  3107. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3108. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3109. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3110. continue
  3111. }
  3112. _content = $$("div", {
  3113. className: "U_MD_D_KO",
  3114. "onmousedown": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_siesTeacherDeskIconInfo[i]]),
  3118. "onclick": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_siesTeacherDeskIconInfo[i]])
  3122. }, _frag); //
  3123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3126. }
  3127. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3128. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3129. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3130. continue
  3131. }
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_guzmsTeacherDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_guzmsTeacherDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3148. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_longhuaTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_longhuaTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3168. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_ytyTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_ytyTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3188. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3189. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3190. continue
  3191. }
  3192. _content = $$("div", {
  3193. className: "U_MD_D_KO",
  3194. "onmousedown": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3198. "onclick": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_yunhaiTeacherDeskIconInfo[i]])
  3202. }, _frag); //
  3203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3206. } //_hkStudentDeskIconInfo
  3207. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3208. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3209. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3210. continue
  3211. }
  3212. _content = $$("div", {
  3213. className: "U_MD_D_KO",
  3214. "onmousedown": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3218. "onclick": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3222. }, _frag); //
  3223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3226. }
  3227. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3228. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3229. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3230. continue
  3231. }
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_hkTeacherDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_hkTeacherDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3248. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  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. }, [_hkaceTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3268. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3269. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3270. continue
  3271. }
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_cocobizTeacherDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_cocobizTeacherDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3288. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3289. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3290. continue
  3291. }
  3292. _content = $$("div", {
  3293. className: "U_MD_D_KO",
  3294. "onmousedown": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3298. "onclick": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3302. }, _frag); //
  3303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3306. }
  3307. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3308. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_gdjgAdminDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_gdjgAdminDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3325. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_gdjgTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_gdjgTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3345. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_szherTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_szherTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3365. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_heyuannAdminDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_heyuannAdminDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3382. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_heyuanTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_heyuanTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. } //
  3401. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3402. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_dseiAdminDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_dseiAdminDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3417. }
  3418. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3419. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3420. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_dseiTeacherDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_dseiTeacherDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3437. } //
  3438. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3439. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3440. _content = $$("div", {
  3441. className: "U_MD_D_KO",
  3442. "onmousedown": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_chjyjAdminDeskIconInfo[i]]),
  3446. "onclick": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_chjyjAdminDeskIconInfo[i]])
  3450. }, _frag); //
  3451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3454. }//
  3455. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3456. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3457. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3458. continue
  3459. }
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_chjyjTeacherDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_chjyjTeacherDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3476. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3477. _content = $$("div", {
  3478. className: "U_MD_D_KO",
  3479. "onmousedown": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_szjkyAdminDeskIconInfo[i]]),
  3483. "onclick": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_szjkyAdminDeskIconInfo[i]])
  3487. }, _frag); //
  3488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3491. }//
  3492. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3493. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3494. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3495. continue
  3496. }
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_szjkyTeacherDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_szjkyTeacherDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3513. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖动图标即打开了桌面应用
  3518. U.MD.D.click(this, obj);
  3519. }, [_x020201AdminDeskIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_x020201AdminDeskIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3528. }//
  3529. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3530. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3531. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3532. continue
  3533. }
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_x020201TeacherDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_x020201TeacherDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3550. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3551. _content = $$("div", {
  3552. className: "U_MD_D_KO",
  3553. "onmousedown": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_SCNUETAdminDeskIconInfo[i]]),
  3557. "onclick": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_SCNUETAdminDeskIconInfo[i]])
  3561. }, _frag); //
  3562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3565. }//
  3566. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3567. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3568. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3569. continue
  3570. }
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖动图标即打开了桌面应用
  3575. U.MD.D.click(this, obj);
  3576. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_SCNUETTeacherDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3585. }
  3586. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3587. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_futianAdminDeskIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_futianAdminDeskIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3604. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3605. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_futianTeacherDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_futianTeacherDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3624. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3625. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_MingdeTeacherDeskIcon[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_MingdeTeacherDeskIcon[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3644. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_lhsAdminDesktopIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_lhsAdminDesktopIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3659. }
  3660. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3661. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3662. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_lhsteacherDesktopIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_lhsteacherDesktopIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3681. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3682. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3683. continue
  3684. }
  3685. _content = $$("div", {
  3686. className: "U_MD_D_KO",
  3687. "onmousedown": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3691. "onclick": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_zhoujiateacherDesktopIconInfo[i]])
  3695. }, _frag); //
  3696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3699. }
  3700. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3701. for (i = 0; i < _hanDeskIcon.length; i++) {
  3702. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3703. continue
  3704. }
  3705. _content = $$("div", {
  3706. className: "U_MD_D_KO",
  3707. "onmousedown": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_hanDeskIcon[i]]),
  3711. "onclick": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_hanDeskIcon[i]])
  3715. }, _frag); //
  3716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3719. }
  3720. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3721. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3722. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3723. continue
  3724. }
  3725. _content = $$("div", {
  3726. className: "U_MD_D_KO",
  3727. "onmousedown": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_orgStemDeskIcon[i]]),
  3731. "onclick": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_orgStemDeskIcon[i]])
  3735. }, _frag); //
  3736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3739. }
  3740. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3741. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3742. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3743. continue
  3744. }
  3745. _content = $$("div", {
  3746. className: "U_MD_D_KO",
  3747. "onmousedown": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_szulsDeskIcon[i]]),
  3751. "onclick": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_szulsDeskIcon[i]])
  3755. }, _frag); //
  3756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3759. }
  3760. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3761. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3762. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3763. continue
  3764. }
  3765. _content = $$("div", {
  3766. className: "U_MD_D_KO",
  3767. "onmousedown": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_orgDesktopIconInfo[i]]),
  3771. "onclick": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_orgDesktopIconInfo[i]])
  3775. }, _frag); //
  3776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3779. }
  3780. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3781. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3782. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3783. continue
  3784. }
  3785. _content = $$("div", {
  3786. className: "U_MD_D_KO",
  3787. "onmousedown": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_schoolDesktopIconInfo[i]]),
  3791. "onclick": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_schoolDesktopIconInfo[i]])
  3795. }, _frag); //
  3796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3799. }
  3800. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3801. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3802. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3803. continue
  3804. }
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_GMteacherDesktopIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_GMteacherDesktopIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3821. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3822. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_SONGteacherDesktopIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_SONGteacherDesktopIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3841. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_GMstudentDesktopIconInfo[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_GMstudentDesktopIconInfo[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3858. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3859. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_tcTeacherDeskIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_tcTeacherDeskIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3878. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3879. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_tcOrganizerDeskIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_tcOrganizerDeskIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3898. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3899. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_szscTeacherDeskIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szscTeacherDeskIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3918. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3919. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_szscOrganizerDeskIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szscOrganizerDeskIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3938. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3939. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_nsfxTeacherDeskIconInfo[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_nsfxTeacherDeskIconInfo[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3958. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3959. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_stiaTeacherDeskIconInfo[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_stiaTeacherDeskIconInfo[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3978. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3979. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_szdjgTeacherDeskIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_szdjgTeacherDeskIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3998. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3999. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_x010607TeacherDeskIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_x010607TeacherDeskIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4018. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4019. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_xhlyTeacherDeskIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_xhlyTeacherDeskIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4038. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4039. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4058. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4059. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4060. continue
  4061. }
  4062. _content = $$("div", {
  4063. className: "U_MD_D_KO",
  4064. "onmousedown": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_x010503TeacherDeskIconInfo[i]]),
  4068. "onclick": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_x010503TeacherDeskIconInfo[i]])
  4072. }, _frag); //
  4073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4076. }
  4077. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4078. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4079. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4080. continue
  4081. }
  4082. _content = $$("div", {
  4083. className: "U_MD_D_KO",
  4084. "onmousedown": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_x010504TeacherDeskIconInfo[i]]),
  4088. "onclick": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_x010504TeacherDeskIconInfo[i]])
  4092. }, _frag); //
  4093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4096. }
  4097. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4098. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4099. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4100. continue
  4101. }
  4102. _content = $$("div", {
  4103. className: "U_MD_D_KO",
  4104. "onmousedown": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_x010204TeacherDeskIconInfo[i]]),
  4108. "onclick": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_x010204TeacherDeskIconInfo[i]])
  4112. }, _frag); //
  4113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4116. }
  4117. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4118. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4119. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4120. continue
  4121. }
  4122. _content = $$("div", {
  4123. className: "U_MD_D_KO",
  4124. "onmousedown": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_x320101TeacherDeskIconInfo[i]]),
  4128. "onclick": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_x320101TeacherDeskIconInfo[i]])
  4132. }, _frag); //
  4133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4136. }
  4137. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4138. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4139. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4140. continue
  4141. }
  4142. _content = $$("div", {
  4143. className: "U_MD_D_KO",
  4144. "onmousedown": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_trailTeacherDeskIconInfo[i]]),
  4148. "onclick": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_trailTeacherDeskIconInfo[i]])
  4152. }, _frag); //
  4153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4156. }
  4157. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4158. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4159. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4160. continue
  4161. }
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4178. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4179. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_x010608TeacherDeskIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_x010608TeacherDeskIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4198. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4199. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_x010611TeacherDeskIconInfo[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_x010611TeacherDeskIconInfo[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4218. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4219. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_tianyuanTeacherDeskIconInfo[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4236. }
  4237. } else {
  4238. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4239. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_teacherDesktopIconInfo[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_teacherDesktopIconInfo[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4256. }
  4257. }
  4258. } else {
  4259. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4260. _content = $$("div", {
  4261. className: "U_MD_D_KO",
  4262. style: { 'width': '124px', 'height': '145px' },
  4263. "onmousedown": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_easyDesktopIconInfo[i]]),
  4267. "onclick": U.UF.C.closure(function (obj) {
  4268. //防止拖动图标即打开了桌面应用
  4269. U.MD.D.click(this, obj);
  4270. }, [_easyDesktopIconInfo[i]])
  4271. }, _frag); //
  4272. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4275. }
  4276. }
  4277. if (type == 1) {
  4278. //加载好后给图标定位
  4279. U.MD.D.iconPostion($(_frag).Child());
  4280. } else {
  4281. //加载好后给图标定位
  4282. U.MD.D.iconPostion2($(_frag).Child());
  4283. }
  4284. //把图标加载到页面
  4285. el.appendChild(_frag);
  4286. }
  4287. /**
  4288. * 显示任务栏
  4289. *
  4290. * @param {element} 桌面元素
  4291. */
  4292. U.MD.D.I.displayTaskbar = function (el) {
  4293. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4294. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4295. //任务栏位置变化
  4296. U.selectEl(el).css({ "bottom": "0px" });
  4297. //桌面位置变话
  4298. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4299. }
  4300. }
  4301. //#region 桌面图标拖动逻辑
  4302. /**
  4303. * 桌面排列图标
  4304. *
  4305. * @param {element} 桌面元素
  4306. * @param {object} 上下相距的距离
  4307. * @param {object} 左右相距的距离
  4308. * @return {object} 命名空间
  4309. */
  4310. U.MD.D.iconPostion = function (childs, top, left) {
  4311. var i; //用于循环处理
  4312. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4313. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4314. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4315. for (i = 0; i < childs.length; i++) {
  4316. //如果竖排top超过了范围处理
  4317. if (top + 95 > US.height - 10) {
  4318. //left超过了页面范围处理,则向上重叠打印处理
  4319. if ((left + 180) > US.width) {
  4320. top -= 110;
  4321. left -= 90;
  4322. }
  4323. //没有超过范围,那么left+90添加到下一个竖排打印
  4324. else {
  4325. left += 90;
  4326. top = 15;
  4327. };
  4328. }
  4329. //给图标的位置赋值
  4330. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4331. if (i < childs.length - 1) {
  4332. //页面图标每次向下加95
  4333. top += 95;
  4334. }
  4335. }
  4336. //返回最后调用的图标的位置
  4337. return [top, left];
  4338. }
  4339. /**
  4340. * 桌面排列图标
  4341. *
  4342. * @param {element} 桌面元素
  4343. * @param {object} 上下相距的距离
  4344. * @param {object} 左右相距的距离
  4345. * @return {object} 命名空间
  4346. */
  4347. U.MD.D.iconPostion2 = function (childs, top, left) {
  4348. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4349. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4350. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4351. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4352. for (i = 0; i < childs.length; i++) {
  4353. //如果竖排top超过了范围处理
  4354. if (left + 150 > US.width - 10) {
  4355. //left超过了页面范围处理,则向上重叠打印处理
  4356. if ((top + 180) > US.Height) {
  4357. top -= 150;
  4358. left -= 150;
  4359. }
  4360. //没有超过范围,那么left+90添加到下一个竖排打印
  4361. else {
  4362. top += 150;
  4363. left = ol;
  4364. };
  4365. }
  4366. //给图标的位置赋值
  4367. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4368. if (i < childs.length - 1) {
  4369. //页面图标每次向下加95
  4370. left += 150;
  4371. }
  4372. }
  4373. //返回最后调用的图标的位置
  4374. return [top, left];
  4375. }
  4376. /**
  4377. * 桌面点击事件逻辑
  4378. *
  4379. * @param {element} 桌面元素
  4380. * @param {object} 上下相距的距离
  4381. * @param {object} 左右相距的距离
  4382. * @return {object} 命名空间
  4383. */
  4384. U.MD.D.click = function (el, obj) {
  4385. var _buttonnumber = event.button; //点击的按钮的事件值
  4386. var _userinfo = US.userInfo;
  4387. U.UF.EV.stopBubble(); //阻止向上冒泡
  4388. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4389. if (_buttonnumber < 2) {
  4390. //如果是click事件的处理
  4391. if (event.type == "click") {
  4392. //如果元素在mousemove事件中没有移动则出发click事件
  4393. if (!U.MD.D.I.IsDrag) {
  4394. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4395. U.alert("请先登录您的账号!");
  4396. setTimeout(() => {
  4397. U.MD.U.L.login();
  4398. }, 2000);
  4399. } else {
  4400. //打开应用处理
  4401. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4402. }
  4403. }
  4404. }
  4405. //如果是mouse事件的处理
  4406. else {
  4407. if (US.Config.type == '1') {
  4408. //拖动处理,添加拖动和拖动结束事件
  4409. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4410. }
  4411. }
  4412. U.MD.D.I.IsDrag = false;
  4413. }
  4414. }
  4415. /**
  4416. * 拖动的处理
  4417. *
  4418. */
  4419. U.MD.D.iconMove = function () {
  4420. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4421. U.MD.D.I.IsDrag = true;
  4422. }
  4423. /**
  4424. * 拖动结束后,这里是定位处理,以网状的形式定位
  4425. *
  4426. * @param {element} 拖动的元素
  4427. * @return {object} 命名空间
  4428. */
  4429. U.MD.D.iconUp = function (el) {
  4430. var _top = 15,
  4431. _left = 20,
  4432. _margin,
  4433. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4434. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4435. if (_positioninfo["OT"] > 15) {
  4436. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4437. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4438. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4439. }
  4440. if (_positioninfo["OL"] > 20) {
  4441. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4442. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4443. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4444. }
  4445. //while循环判断么一个重叠的元素
  4446. do {
  4447. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4448. _top = _positioninfo[0] + 95; //得到定位后的top
  4449. _left = _positioninfo[1]; //得到定位后的left
  4450. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4451. }
  4452. /**
  4453. * 判断拖动后图标是否重叠
  4454. *
  4455. * @param {element} 拖动的元素
  4456. * @param {element} 桌面所有的元素
  4457. * @param {array} 拖动元素的位置
  4458. ----------[0] 上 top
  4459. ----------[1] 左 left
  4460. * @return {object} 命名空间
  4461. */
  4462. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4463. //循环所有的图标
  4464. for (var i = 0; i < childs.length; i++) {
  4465. //判断有没有和该图标诶子重叠的元素
  4466. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4467. return childs[i]; //如果有返回
  4468. }
  4469. }
  4470. }
  4471. //#endregion
  4472. //#endregion
  4473. //#region 桌面应用
  4474. /**
  4475. * 打开应用
  4476. *
  4477. * @param {string} 类型
  4478. -----------------Disk 网盘系统
  4479. -----------------PDisk 学习系统网盘
  4480. -----------------Poto 图片
  4481. -----------------Video 视频
  4482. -----------------Music 音乐
  4483. -----------------Word word
  4484. -----------------Excel excel
  4485. -----------------Txt 记事本
  4486. -----------------PB 学习系统
  4487. -----------------Blog 朋友圈系统
  4488. -----------------FTP ftp系统
  4489. -----------------Group 好友群
  4490. -----------------SY 首页系统
  4491. -----------------Set 个人设置
  4492. -----------------XSet 系统设置
  4493. -----------------App 我们所有的app
  4494. -----------------BC c.1473.cn 平台
  4495. -----------------CWeb d.1473.cn 变成平台
  4496. -----------------其他的外联系统 我们统一用iframe打开
  4497. * @param {array} 类型
  4498. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4499. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4500. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4501. 如果第一个参数为其他,则无第二个参数
  4502. * @returns {array}
  4503. */
  4504. window.addEventListener('message', function (e) { // 监听 message 事件
  4505. // alert(e.data.type);
  4506. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4507. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4508. //3是展示全部阶段 2学生 1老师 4专家
  4509. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4510. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4511. //3是展示全部阶段 2学生 1老师 4专家
  4512. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4513. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4514. //3是展示全部阶段 2学生 1老师 4专家
  4515. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4516. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4517. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4518. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4519. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4520. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4521. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4522. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4524. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4527. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4529. //3是展示全部阶段 2学生 1老师 4专家
  4530. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4531. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4532. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4533. U.MD.D.I.selectUser();
  4534. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4535. var _formel = document.getElementById("study");
  4536. U.UF.F.windowZooming(_formel);
  4537. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4538. var _formel = document.getElementById("studyDetail");
  4539. U.UF.F.windowZooming(_formel);
  4540. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4541. var _formel = document.getElementById("studyDetail");
  4542. U.UF.F.windowZooming(_formel);
  4543. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4544. var _formel = document.getElementById("studentStudy");
  4545. U.UF.F.windowZooming(_formel);
  4546. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4547. // var _formel = document.getElementById("study");
  4548. //如果最大化了,那么就把他缩小
  4549. // if (_formel.ismaximize) {
  4550. // return;
  4551. // }
  4552. // U.UF.F.windowZooming(_formel);
  4553. // U.UF.F.topWindow(_formel);
  4554. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4555. // var _formel = document.getElementById("studyDetail");
  4556. //如果最大化了,那么就把他缩小
  4557. // if (_formel.ismaximize) {
  4558. // return;
  4559. // }
  4560. // U.UF.F.windowZooming(_formel);
  4561. // U.UF.F.topWindow(_formel);
  4562. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4563. // var _formel = document.getElementById("studentStudy");
  4564. // if (_formel.ismaximize) {
  4565. // return;
  4566. // }
  4567. // U.UF.F.windowZooming(_formel);
  4568. // U.UF.F.topWindow(_formel);
  4569. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4570. var _formel = document.getElementById("study");
  4571. // if (_formel.ismaximize) {
  4572. // return;
  4573. // }
  4574. // U.UF.F.windowZooming(_formel);
  4575. U.UF.F.topWindow(_formel);
  4576. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4577. var _formel = document.getElementById("studentIndex");
  4578. U.UF.F.windowZooming(_formel);
  4579. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4580. var _formel = document.getElementById("studyDetailS");
  4581. U.UF.F.windowZooming(_formel);
  4582. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4583. var _formel = document.getElementById("studioIndex");
  4584. U.UF.F.windowZooming(_formel);
  4585. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4586. var _formel = document.getElementById("studyDetailStudio");
  4587. U.UF.F.windowZooming(_formel);
  4588. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4589. var _formel = document.getElementById("studyDetailStudio");
  4590. U.UF.F.windowZooming(_formel);
  4591. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4592. var _formel = document.getElementById("studyDetailNT");
  4593. U.UF.F.windowZooming(_formel);
  4594. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4595. var _formel = document.getElementById("studyDetailS");
  4596. U.UF.F.windowZooming(_formel);
  4597. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4598. var _formel = document.getElementById("studyDetailS");
  4599. U.UF.F.topWindow(_formel);
  4600. } else if (e.data.tools && e.data.tools == "1") {
  4601. // U.MD.D.I.openApplication("whiteboard")
  4602. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "2") {
  4604. U.MD.D.I.openApplication("note")
  4605. } else if (e.data.tools && e.data.tools == "3") {
  4606. // U.MD.D.I.openApplication("mind")
  4607. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "4") {
  4609. U.MD.D.I.openApplication("investigation")
  4610. } else if (e.data.tools && e.data.tools == "6") {
  4611. // U.MD.D.I.openApplication("doc")
  4612. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "7") {
  4614. // U.MD.D.I.openApplication("mindNetwork")
  4615. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4616. } else if (e.data.tools && e.data.tools == "8") {
  4617. U.MD.D.I.openApplication("library")
  4618. } else if (e.data.tools && e.data.tools == "17") {
  4619. U.MD.D.I.openApplication("stuLibrary")
  4620. } else if (e.data.tools && e.data.tools == "18") {
  4621. U.MD.D.I.openApplication("train")
  4622. } else if (e.data.tools && e.data.tools == "21") {
  4623. U.MD.D.I.openApplication("program")
  4624. } else if (e.data.tools && e.data.tools == "22") {
  4625. U.MD.D.I.openApplication("AIprogram2")
  4626. } else if (e.data.tools && e.data.tools == "23") {
  4627. U.MD.D.I.openApplication("Pythonprogram")
  4628. } else if (e.data.tools && e.data.tools == "24") {
  4629. U.MD.D.I.openApplication("AIprogram")
  4630. } else if (e.data.tools && e.data.tools == "25") {
  4631. U.MD.D.I.openApplication("sys")
  4632. } else if (e.data.tools && e.data.tools == "26") {
  4633. // U.MD.D.I.openApplication("courseDesign")
  4634. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4635. } else if (e.data.tools && e.data.tools == "31") {
  4636. U.MD.D.I.openApplication("netWorkPanel")
  4637. } else if (e.data.tools && e.data.tools == "32") {
  4638. U.MD.D.I.openApplication("codeEdit")
  4639. } else if (e.data.tools && e.data.tools == "57") {
  4640. U.MD.D.I.openApplication("CocoPi")
  4641. } else if (e.data.tools && e.data.tools == "63") {
  4642. U.MD.D.I.openApplication("Wood")
  4643. } else if (e.data.tools && e.data.tools == "58") {
  4644. U.MD.D.I.openApplication("car")
  4645. } else if (e.data.tools && e.data.tools == "59") {
  4646. U.MD.D.I.openApplication("lineSearch")
  4647. } else if (e.data.tools && e.data.tools == "60") {
  4648. U.MD.D.I.openApplication("deepLearning")
  4649. } else if (e.data.tools && e.data.tools == "61") {
  4650. U.MD.D.I.openApplication("allHistory")
  4651. } else if (e.data.tools && e.data.tools == "28") {
  4652. U.MD.D.I.openApplication("translation")
  4653. } else if (e.data.tools && e.data.tools == "37") {
  4654. U.MD.D.I.openApplication("mohe")
  4655. } else if (e.data.tools && e.data.tools == "38") {
  4656. U.MD.D.I.openApplication("24game")
  4657. } else if (e.data.tools && e.data.tools == "39") {
  4658. U.MD.D.I.openApplication("GeoGebra")
  4659. } else if (e.data.tools && e.data.tools == "43") {
  4660. U.MD.D.I.openApplication("studentEvaluate")
  4661. } else if (e.data.tools && e.data.tools == "44") {
  4662. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4663. } else if (e.data.tools && e.data.tools == "46") {
  4664. U.MD.D.I.openApplication("project")
  4665. } else if (e.data.tools && e.data.tools == "71") {
  4666. U.MD.D.I.openApplication("aigptCourse")
  4667. } else if (e.data.tools && e.data.tools == "1s") {
  4668. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4669. } else if (e.data.tools && e.data.tools == "3s") {
  4670. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4671. } else if (e.data.tools && e.data.tools == "6s") {
  4672. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4673. } else if (e.data.tools && e.data.tools == "1studio") {
  4674. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "3studio") {
  4676. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "6studio") {
  4678. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "3y") {
  4680. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "1y") {
  4682. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4684. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4685. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4686. U.MD.D.I.openApplication("AIAnalyse")
  4687. } else if (e.data.tools && e.data.tools == "1teacher") {
  4688. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4689. } else if (e.data.tools && e.data.tools == "3teacher") {
  4690. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4691. } else if (e.data.tools && e.data.tools == "7teacher") {
  4692. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4693. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4694. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4696. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "1E") {
  4698. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4699. } else if (e.data.tools && e.data.tools == "3E") {
  4700. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4701. } else if (e.data.tools && e.data.tools == "57y") {
  4702. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4703. } else if (e.data.tools && e.data.tools == "57u") {
  4704. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "57teacher") {
  4706. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4707. } else if (e.data.tools && e.data.tools == "64") {
  4708. U.MD.D.I.openApplication("AIChat")
  4709. } else if (e.data.tools && e.data.tools == "66") {
  4710. U.MD.D.I.openApplication("formulaEdi")
  4711. } else if (e.data.tools && e.data.tools == "67") {
  4712. U.MD.D.I.openApplication("molStr")
  4713. } else if (e.data.tools && e.data.tools == "68") {
  4714. U.MD.D.I.openApplication("timeAxis")
  4715. } else if (e.data.tools && e.data.tools == "openCourse") {
  4716. let _data = {
  4717. typea: e.data.typea || '',
  4718. typeb: e.data.typeb || '',
  4719. typed: e.data.typed || '',
  4720. }
  4721. U.MD.D.I.openInApplication("index", _data)
  4722. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4723. let _data = {
  4724. classid: e.data.classid || '',
  4725. }
  4726. U.MD.D.I.openInApplication("dataClass", _data)
  4727. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4728. let _data = {
  4729. cid: e.data.cid || '',
  4730. gid: e.data.gid || '',
  4731. }
  4732. U.MD.D.I.openInApplication("opencCscl", _data)
  4733. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4734. U.MD.D.I.openApplication("dataBoardTest")
  4735. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4736. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4737. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4738. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4739. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4740. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4741. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4742. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4744. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4746. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "loginSz") {
  4748. U.MD.D.I.openInApplication("loginSz")
  4749. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4750. if($('#classroom_observation_board')[0]){
  4751. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4752. }
  4753. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4754. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4755. if($('#classroom_observation_ob_comment')[0]){
  4756. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4757. }
  4758. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4759. }else if (e.data.tools && e.data.tools == "logout"){
  4760. U.MD.U.LO.logoutSystem()
  4761. }else if (e.data.tools && e.data.tools == "getLogin"){
  4762. let _iframe = $('#UI_Login')[0];
  4763. if (_iframe) {
  4764. var userInfo = US.userInfo;
  4765. var type = 2
  4766. if(userInfo && userInfo.userid){
  4767. type = 1
  4768. }
  4769. _contentWindow = _iframe.contentWindow;
  4770. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4771. }
  4772. }
  4773. });
  4774. U.MD.D.I.selectUser = function () {
  4775. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4776. if (res.value[0].length > 0) {
  4777. US.userInfo = res.value[0][0];
  4778. $(".userName")[0].innerHTML = US.userInfo.username;
  4779. }
  4780. }, [], { "type": "GET", "withCredentials": true });
  4781. }
  4782. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4783. var _userinfo = US.userInfo, //登录用户信息
  4784. _userid = US.userInfo.userid, //登录用户id
  4785. _oid = _userinfo.organizeid,
  4786. _type = US.userInfo.type,
  4787. _org = US.userInfo.org,
  4788. _role = US.userInfo.role,
  4789. _classId = US.userInfo.classid;
  4790. if (_type == 4) {
  4791. tType = 4
  4792. }
  4793. switch (str) {
  4794. case "studyDetailNT": //无终端模式
  4795. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4796. setTimeout(() => {
  4797. U.MD.U.L.login();
  4798. }, 2000);
  4799. } else {
  4800. _formdiv = new U.UF.UI.form(
  4801. "课程详情",
  4802. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4803. "id": "studyDetailNT",
  4804. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4805. "onresize": function () { }
  4806. }, {
  4807. closecallback: function () { }
  4808. }, { "style": { "height": "36px" } }).form; //创建窗体
  4809. _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); } }
  4810. break;
  4811. }
  4812. case "studyDetail":
  4813. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4814. setTimeout(() => {
  4815. U.MD.U.L.login();
  4816. }, 2000);
  4817. } else {
  4818. _formdiv = new U.UF.UI.form(
  4819. "课程详情",
  4820. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4821. "id": "studyDetail",
  4822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. }
  4830. case "studyDetailTrain":
  4831. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4832. setTimeout(() => {
  4833. U.MD.U.L.login();
  4834. }, 2000);
  4835. } else {
  4836. _formdiv = new U.UF.UI.form(
  4837. "培训详情",
  4838. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4839. "id": "studyDetailTrain",
  4840. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. }
  4848. case "studyDetailS":
  4849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4850. setTimeout(() => {
  4851. U.MD.U.L.login();
  4852. }, 2000);
  4853. } else {
  4854. _formdiv = new U.UF.UI.form(
  4855. "项目详情",
  4856. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4857. "id": "studyDetailS",
  4858. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. }
  4866. case "studyDetailStudio":
  4867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4868. setTimeout(() => {
  4869. U.MD.U.L.login();
  4870. }, 2000);
  4871. } else {
  4872. _formdiv = new U.UF.UI.form(
  4873. "工作详情",
  4874. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4875. "id": "studyDetailStudio",
  4876. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. }
  4884. case "studyDetailS5":
  4885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4886. setTimeout(() => {
  4887. U.MD.U.L.login();
  4888. }, 2000);
  4889. } else {
  4890. _formdiv = new U.UF.UI.form(
  4891. "项目详情",
  4892. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4893. "id": "studyDetailS",
  4894. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. }
  4902. case "studyDetailGM":
  4903. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4904. setTimeout(() => {
  4905. U.MD.U.L.login();
  4906. }, 2000);
  4907. } else {
  4908. _formdiv = new U.UF.UI.form(
  4909. "课程详情",
  4910. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4911. "id": "studyDetail",
  4912. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. _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); } }
  4918. break;
  4919. }
  4920. case "hanUrl":
  4921. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4922. setTimeout(() => {
  4923. U.MD.U.L.login();
  4924. }, 2000);
  4925. } else {
  4926. _formdiv = new U.UF.UI.form(
  4927. "汉字宫",
  4928. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4929. "id": "hanUrl",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. }
  4938. case "index":
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. _formdiv = new U.UF.UI.form(
  4945. "课程中心",
  4946. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4947. "id": "study",
  4948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. _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); } }
  4954. break;
  4955. }
  4956. case "dataClass":
  4957. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4958. setTimeout(() => {
  4959. U.MD.U.L.login();
  4960. }, 2000);
  4961. } else {
  4962. _formdiv = new U.UF.UI.form(
  4963. "数据报告",
  4964. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4965. "id": "dataClass",
  4966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. _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); } }
  4972. break;
  4973. }
  4974. case "opencCscl":
  4975. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4976. setTimeout(() => {
  4977. U.MD.U.L.login();
  4978. }, 2000);
  4979. } else {
  4980. _formdiv = new U.UF.UI.form(
  4981. "协同建构",
  4982. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4983. "id": "futureClass",
  4984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4985. "onresize": function () { }
  4986. }, {
  4987. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4988. }, { "style": { "height": "36px" } }).form; //创建窗体
  4989. _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); } }
  4990. break;
  4991. }
  4992. case "openCourseUpdate":
  4993. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4994. setTimeout(() => {
  4995. U.MD.U.L.login();
  4996. }, 2000);
  4997. } else {
  4998. _formdiv = new U.UF.UI.form(
  4999. "课程管理",
  5000. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5001. "id": "openCourseUpdate",
  5002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. break;
  5008. }
  5009. case "openNewCourseUpdate":
  5010. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5011. setTimeout(() => {
  5012. U.MD.U.L.login();
  5013. }, 2000);
  5014. } else {
  5015. _formdiv = new U.UF.UI.form(
  5016. "课程管理",
  5017. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5018. "id": "openCourseUpdate",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. break;
  5025. }
  5026. case "openCourseEUpdate":
  5027. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5028. setTimeout(() => {
  5029. U.MD.U.L.login();
  5030. }, 2000);
  5031. } else {
  5032. _formdiv = new U.UF.UI.form(
  5033. "课程管理",
  5034. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5035. "id": "openCourseUpdate",
  5036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5037. "onresize": function () { }
  5038. }, {
  5039. closecallback: function () { }
  5040. }, { "style": { "height": "36px" } }).form; //创建窗体
  5041. break;
  5042. }
  5043. case "openCourseAiUpdate":
  5044. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5045. setTimeout(() => {
  5046. U.MD.U.L.login();
  5047. }, 2000);
  5048. } else {
  5049. _formdiv = new U.UF.UI.form(
  5050. "课程管理",
  5051. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5052. "id": "openCourseUpdate",
  5053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. break;
  5059. }
  5060. case "openCourseAiUpdate2":
  5061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5062. setTimeout(() => {
  5063. U.MD.U.L.login();
  5064. }, 2000);
  5065. } else {
  5066. _formdiv = new U.UF.UI.form(
  5067. "课程管理",
  5068. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5069. "id": "openCourseUpdate",
  5070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. break;
  5076. }
  5077. case "openCourseNewUpdate":
  5078. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5079. setTimeout(() => {
  5080. U.MD.U.L.login();
  5081. }, 2000);
  5082. } else {
  5083. _formdiv = new U.UF.UI.form(
  5084. "课程管理",
  5085. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5086. "id": "openCourseUpdate",
  5087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5088. "onresize": function () { }
  5089. }, {
  5090. closecallback: function () { }
  5091. }, { "style": { "height": "36px" } }).form; //创建窗体
  5092. break;
  5093. }
  5094. case "inviteLoginSz":
  5095. _formdiv = new U.UF.UI.form(
  5096. "随机码登录",
  5097. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5098. "id": "loginSz",
  5099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5100. "onresize": function () { }
  5101. }, {
  5102. closecallback: function () { }
  5103. }, { "style": { "height": "36px" } }).form; //创建窗体
  5104. break;
  5105. case "loginSz":
  5106. _formdiv = new U.UF.UI.form(
  5107. "教师登录",
  5108. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5109. "id": "loginSz",
  5110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5111. "onresize": function () { }
  5112. }, {
  5113. closecallback: function () { }
  5114. }, { "style": { "height": "36px" } }).form; //创建窗体
  5115. break;
  5116. case "teacher":
  5117. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5118. setTimeout(() => {
  5119. U.MD.U.L.login();
  5120. }, 2000);
  5121. } else {
  5122. _formdiv = new U.UF.UI.form(
  5123. "教师管理",
  5124. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5125. "id": "teacher",
  5126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5127. "onresize": function () { }
  5128. }, {
  5129. closecallback: function () { }
  5130. }, { "style": { "height": "36px" } }).form; //创建窗体
  5131. break;
  5132. }
  5133. case "dataBoardSZArea":
  5134. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5135. setTimeout(() => {
  5136. U.MD.U.L.login();
  5137. }, 2000);
  5138. } else {
  5139. _formdiv = new U.UF.UI.form(
  5140. "综合数据看板",
  5141. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5142. "id": "dataBoardSZArea",
  5143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. break;
  5149. }
  5150. case "dataBoardSZCity":
  5151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5152. setTimeout(() => {
  5153. U.MD.U.L.login();
  5154. }, 2000);
  5155. } else {
  5156. _formdiv = new U.UF.UI.form(
  5157. "综合数据看板",
  5158. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5159. "id": "dataBoardSZCity",
  5160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. break;
  5166. }
  5167. case "classroom_observation_board":
  5168. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5169. setTimeout(() => {
  5170. U.MD.U.L.login();
  5171. }, 2000);
  5172. } else {
  5173. _formdiv = new U.UF.UI.form(
  5174. "课堂观察",
  5175. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5176. "id": "classroom_observation_board",
  5177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. break;
  5183. }
  5184. case "classroom_observation_ob_comment":
  5185. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5186. setTimeout(() => {
  5187. U.MD.U.L.login();
  5188. }, 2000);
  5189. } else {
  5190. _formdiv = new U.UF.UI.form(
  5191. "课堂审核",
  5192. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5193. "id": "classroom_observation_ob_comment",
  5194. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. break;
  5200. }
  5201. }
  5202. }
  5203. U.MD.D.I.openApplication = function (str, obj, info) {
  5204. obj = obj || {};
  5205. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5206. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5207. _userinfo = US.userInfo, //登录用户信息
  5208. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5209. _oid = obj.organizeid || _userinfo.organizeid,
  5210. _type = US.userInfo.type,
  5211. _org = US.userInfo.org,
  5212. _role = US.userInfo.role,
  5213. _classId = US.userInfo.classid,
  5214. _TscreenType = 1
  5215. _screenType = 2,
  5216. _SscreenType = 3;
  5217. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5218. return;
  5219. }
  5220. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5221. switch (str) {
  5222. case "studnetProject": //好友打开
  5223. _formdiv = new U.UF.UI.form(
  5224. "我的项目",
  5225. $$("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 }), {
  5226. "id": "studnetProject",
  5227. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _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); } }
  5233. break;
  5234. case "studentEvaluate": //好友打开
  5235. _formdiv = new U.UF.UI.form(
  5236. "我的评价",
  5237. $$("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 }), {
  5238. "id": "studentEvaluate",
  5239. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "my":
  5247. _formdiv = new U.UF.UI.form(
  5248. "我的资料",
  5249. $$("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 }), {
  5250. "id": "my",
  5251. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _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); } }
  5257. break;
  5258. case "program":
  5259. _formdiv = new U.UF.UI.form(
  5260. "编程平台",
  5261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5262. "id": "program",
  5263. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _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); } }
  5269. break;
  5270. case "library":
  5271. _formdiv = new U.UF.UI.form(
  5272. "素材库",
  5273. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5274. "id": "library",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. _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); } }
  5281. break;
  5282. case "whiteboard":
  5283. _formdiv = new U.UF.UI.form(
  5284. "电子白板",
  5285. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5286. "id": "whiteboard",
  5287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5288. "onresize": function () { }
  5289. }, {
  5290. closecallback: function () { }
  5291. }, { "style": { "height": "36px" } }).form; //创建窗体
  5292. _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); } }
  5293. break;
  5294. case "investigation":
  5295. _formdiv = new U.UF.UI.form(
  5296. "问卷调查",
  5297. $$("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 }), {
  5298. "id": "investigation",
  5299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _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); } }
  5305. break;
  5306. case "note":
  5307. _formdiv = new U.UF.UI.form(
  5308. "便签分类",
  5309. $$("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 }), {
  5310. "id": "note",
  5311. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5312. "onresize": function () { }
  5313. }, {
  5314. closecallback: function () { }
  5315. }, { "style": { "height": "36px" } }).form; //创建窗体
  5316. _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); } }
  5317. break;
  5318. // case "score":
  5319. // _formdiv = new U.UF.UI.form(
  5320. // "量规评分",
  5321. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5322. // "id": "score",
  5323. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5324. // "onresize": function() {}
  5325. // }, {
  5326. // closecallback: function() {}
  5327. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5328. // _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); } }
  5329. // break;
  5330. case "mind":
  5331. _formdiv = new U.UF.UI.form(
  5332. "思维导图",
  5333. $$("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"
  5334. "id": "mind",
  5335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _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); } }
  5341. break;
  5342. case "doc":
  5343. // U.MD.D.I.isRoom();
  5344. _formdiv = new U.UF.UI.form(
  5345. "协同文档",
  5346. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5347. "id": "doc",
  5348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5354. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5355. // })
  5356. _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); } }
  5357. break;
  5358. case "studentStudy":
  5359. _formdiv = new U.UF.UI.form(
  5360. "课程中心",
  5361. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5362. "id": "studentStudy",
  5363. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. case "train": //好友打开
  5371. _formdiv = new U.UF.UI.form(
  5372. "训练平台",
  5373. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5374. "id": "train",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _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); } }
  5381. break;
  5382. case "mindNetwork": //好友打开
  5383. _formdiv = new U.UF.UI.form(
  5384. "思维网格",
  5385. $$("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 }), {
  5386. "id": "mindNetwork",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "studentClassRoom": //好友打开
  5395. _formdiv = new U.UF.UI.form(
  5396. "实时课堂",
  5397. $$("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 }), {
  5398. "id": "studentClassRoom",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _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); } }
  5405. setTimeout(() => {
  5406. U.UF.F.windowZooming(_formdiv)
  5407. }, 0);
  5408. break;
  5409. }
  5410. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5411. switch (str) {
  5412. case "studnetProject": //好友打开
  5413. _formdiv = new U.UF.UI.form(
  5414. "我的项目",
  5415. $$("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 }), {
  5416. "id": "studnetProject",
  5417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _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); } }
  5423. break;
  5424. case "studentEvaluate": //好友打开
  5425. _formdiv = new U.UF.UI.form(
  5426. "我的评价",
  5427. $$("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 }), {
  5428. "id": "studentEvaluate",
  5429. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "my":
  5437. _formdiv = new U.UF.UI.form(
  5438. "我的资料",
  5439. $$("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 }), {
  5440. "id": "my",
  5441. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. case "program":
  5449. _formdiv = new U.UF.UI.form(
  5450. "编程平台",
  5451. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5452. "id": "program",
  5453. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5454. "onresize": function () { }
  5455. }, {
  5456. closecallback: function () { }
  5457. }, { "style": { "height": "36px" } }).form; //创建窗体
  5458. _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); } }
  5459. break;
  5460. case "library":
  5461. _formdiv = new U.UF.UI.form(
  5462. "素材库",
  5463. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5464. "id": "library",
  5465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5466. "onresize": function () { }
  5467. }, {
  5468. closecallback: function () { }
  5469. }, { "style": { "height": "36px" } }).form; //创建窗体
  5470. _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); } }
  5471. break;
  5472. case "whiteboard":
  5473. _formdiv = new U.UF.UI.form(
  5474. "电子白板",
  5475. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5476. "id": "whiteboard",
  5477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //创建窗体
  5482. _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); } }
  5483. break;
  5484. case "investigation":
  5485. _formdiv = new U.UF.UI.form(
  5486. "问卷调查",
  5487. $$("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 }), {
  5488. "id": "investigation",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. _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); } }
  5495. break;
  5496. case "note":
  5497. _formdiv = new U.UF.UI.form(
  5498. "便签分类",
  5499. $$("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 }), {
  5500. "id": "note",
  5501. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. _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); } }
  5507. break;
  5508. // case "score":
  5509. // _formdiv = new U.UF.UI.form(
  5510. // "量规评分",
  5511. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5512. // "id": "score",
  5513. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5514. // "onresize": function() {}
  5515. // }, {
  5516. // closecallback: function() {}
  5517. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5518. // _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); } }
  5519. // break;
  5520. case "mind":
  5521. _formdiv = new U.UF.UI.form(
  5522. "思维导图",
  5523. $$("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"
  5524. "id": "mind",
  5525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5526. "onresize": function () { }
  5527. }, {
  5528. closecallback: function () { }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _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); } }
  5531. break;
  5532. case "doc":
  5533. // U.MD.D.I.isRoom();
  5534. _formdiv = new U.UF.UI.form(
  5535. "协同文档",
  5536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5537. "id": "doc",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5544. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5545. })
  5546. _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); } }
  5547. break;
  5548. case "train": //好友打开
  5549. _formdiv = new U.UF.UI.form(
  5550. "训练平台",
  5551. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5552. "id": "train",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "studentStudy":
  5561. _formdiv = new U.UF.UI.form(
  5562. "课程中心",
  5563. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5564. "id": "studentStudy",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "mindNetwork": //好友打开
  5573. _formdiv = new U.UF.UI.form(
  5574. "思维网格",
  5575. $$("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 }), {
  5576. "id": "mindNetwork",
  5577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "studentClassRoom": //好友打开
  5585. _formdiv = new U.UF.UI.form(
  5586. "实时课堂",
  5587. $$("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 }), {
  5588. "id": "studentClassRoom",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. setTimeout(() => {
  5596. U.UF.F.windowZooming(_formdiv)
  5597. }, 0);
  5598. break;
  5599. }
  5600. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5601. //选择应用处理
  5602. switch (str) {
  5603. case "project": //好友打开
  5604. _formdiv = new U.UF.UI.form(
  5605. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5606. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5607. "id": "project",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. _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); } }
  5614. break;
  5615. case "student":
  5616. _formdiv = new U.UF.UI.form(
  5617. "学生管理",
  5618. $$("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 }), {
  5619. "id": "student",
  5620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5621. "onresize": function () { }
  5622. }, {
  5623. closecallback: function () { }
  5624. }, { "style": { "height": "36px" } }).form; //创建窗体
  5625. _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); } }
  5626. break;
  5627. case "evaluate":
  5628. _formdiv = new U.UF.UI.form(
  5629. "学生评价",
  5630. $$("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 }), {
  5631. "id": "evaluate",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _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); } }
  5638. break;
  5639. case "sys":
  5640. _formdiv = new U.UF.UI.form(
  5641. "目标管理",
  5642. $$("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 }), {
  5643. "id": "sys",
  5644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _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); } }
  5650. break;
  5651. case "courseDesign":
  5652. _formdiv = new U.UF.UI.form(
  5653. "项目设计",
  5654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5655. "id": "courseDesign",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _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); } }
  5662. break;
  5663. case "program":
  5664. _formdiv = new U.UF.UI.form(
  5665. "编程平台",
  5666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5667. "id": "program",
  5668. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _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); } }
  5674. break;
  5675. case "class":
  5676. _formdiv = new U.UF.UI.form(
  5677. "班级管理",
  5678. $$("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 }), {
  5679. "id": "class",
  5680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5686. break;
  5687. case "Grade":
  5688. _formdiv = new U.UF.UI.form(
  5689. "年级管理",
  5690. $$("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 }), {
  5691. "id": "Grade",
  5692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _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); } }
  5698. break;
  5699. case "teacherOffice":
  5700. _formdiv = new U.UF.UI.form(
  5701. "教研室",
  5702. $$("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 }), {
  5703. "id": "teacherOffice",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _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); } }
  5710. break;
  5711. case "my":
  5712. _formdiv = new U.UF.UI.form(
  5713. "我的资料",
  5714. $$("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 }), {
  5715. "id": "my",
  5716. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. break;
  5723. case "notice":
  5724. _formdiv = new U.UF.UI.form(
  5725. "通知公告",
  5726. $$("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 }), {
  5727. "id": "notice",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. _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); } }
  5734. break;
  5735. case "library":
  5736. _formdiv = new U.UF.UI.form(
  5737. "素材库",
  5738. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5739. "id": "library",
  5740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _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); } }
  5746. break;
  5747. case "whiteboard":
  5748. _formdiv = new U.UF.UI.form(
  5749. "电子白板",
  5750. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5751. "id": "whiteboard",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. case "investigation":
  5760. _formdiv = new U.UF.UI.form(
  5761. "问卷调查",
  5762. $$("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 }), {
  5763. "id": "investigation",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _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); } }
  5770. break;
  5771. case "note":
  5772. _formdiv = new U.UF.UI.form(
  5773. "便签分类",
  5774. $$("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 }), {
  5775. "id": "note",
  5776. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //创建窗体
  5781. _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); } }
  5782. break;
  5783. // case "score":
  5784. // _formdiv = new U.UF.UI.form(
  5785. // "量规评分",
  5786. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5787. // "id": "score",
  5788. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. // "onresize": function() {}
  5790. // }, {
  5791. // closecallback: function() {}
  5792. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5794. // break;
  5795. case "mind":
  5796. _formdiv = new U.UF.UI.form(
  5797. "思维导图",
  5798. $$("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"
  5799. "id": "mind",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _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); } }
  5806. break;
  5807. case "doc":
  5808. // U.MD.D.I.isRoom();
  5809. _formdiv = new U.UF.UI.form(
  5810. "协同文档",
  5811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5812. "id": "doc",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5819. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5820. })
  5821. _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); } }
  5822. break;
  5823. case "study":
  5824. _formdiv = new U.UF.UI.form(
  5825. "课程中心",
  5826. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5827. "id": "study",
  5828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. break;
  5835. case "mindNetwork": //好友打开
  5836. _formdiv = new U.UF.UI.form(
  5837. "思维网格",
  5838. $$("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 }), {
  5839. "id": "mindNetwork",
  5840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _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); } }
  5846. break;
  5847. case "train": //好友打开
  5848. _formdiv = new U.UF.UI.form(
  5849. "训练平台",
  5850. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5851. "id": "mindNetwork",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. break;
  5859. case "teacherClassRoom": //好友打开
  5860. _formdiv = new U.UF.UI.form(
  5861. "实时课堂",
  5862. $$("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 }), {
  5863. "id": "teacherClassRoom",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _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); } }
  5870. setTimeout(() => {
  5871. U.UF.F.windowZooming(_formdiv)
  5872. }, 0);
  5873. break;
  5874. }
  5875. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5876. switch (str) {
  5877. case "project": //好友打开
  5878. _formdiv = new U.UF.UI.form(
  5879. "课程管理",
  5880. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5881. "id": "project",
  5882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _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); } }
  5888. break;
  5889. case "evaluate":
  5890. _formdiv = new U.UF.UI.form(
  5891. "学生评价",
  5892. $$("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 }), {
  5893. "id": "evaluate",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _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); } }
  5900. break;
  5901. case "notice":
  5902. _formdiv = new U.UF.UI.form(
  5903. "通知公告",
  5904. $$("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 }), {
  5905. "id": "notice",
  5906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _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); } }
  5912. break;
  5913. case "stuLibrary":
  5914. _formdiv = new U.UF.UI.form(
  5915. "学习资料",
  5916. $$("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 }), {
  5917. "id": "stuLibrary",
  5918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _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); } }
  5924. break;
  5925. case "program":
  5926. _formdiv = new U.UF.UI.form(
  5927. "编程平台",
  5928. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5929. "id": "program",
  5930. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5931. "onresize": function () { }
  5932. }, {
  5933. closecallback: function () { }
  5934. }, { "style": { "height": "36px" } }).form; //创建窗体
  5935. _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); } }
  5936. break;
  5937. case "whiteboard":
  5938. _formdiv = new U.UF.UI.form(
  5939. "电子白板",
  5940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5941. "id": "whiteboard",
  5942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. _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); } }
  5948. break;
  5949. case "investigation":
  5950. _formdiv = new U.UF.UI.form(
  5951. "问卷调查",
  5952. $$("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 }), {
  5953. "id": "investigation",
  5954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. _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); } }
  5960. break;
  5961. case "mind":
  5962. _formdiv = new U.UF.UI.form(
  5963. "思维导图",
  5964. $$("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"
  5965. "id": "mind",
  5966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //创建窗体
  5971. _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); } }
  5972. break;
  5973. case "doc":
  5974. // U.MD.D.I.isRoom();
  5975. _formdiv = new U.UF.UI.form(
  5976. "协同文档",
  5977. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5978. "id": "doc",
  5979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5985. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5986. })
  5987. _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); } }
  5988. break;
  5989. case "study":
  5990. _formdiv = new U.UF.UI.form(
  5991. "课程中心",
  5992. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5993. "id": "study",
  5994. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "mindNetwork": //好友打开
  6002. _formdiv = new U.UF.UI.form(
  6003. "思维网格",
  6004. $$("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 }), {
  6005. "id": "mindNetwork",
  6006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "train": //好友打开
  6014. _formdiv = new U.UF.UI.form(
  6015. "训练平台",
  6016. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6017. "id": "train",
  6018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "sys":
  6026. _formdiv = new U.UF.UI.form(
  6027. "目标管理",
  6028. $$("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 }), {
  6029. "id": "sys",
  6030. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "courseDesign":
  6038. _formdiv = new U.UF.UI.form(
  6039. "项目设计",
  6040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6041. "id": "courseDesign",
  6042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. }
  6050. } else if (!_type) {
  6051. switch (str) {
  6052. case "my":
  6053. _formdiv = new U.UF.UI.form(
  6054. "我的资料",
  6055. $$("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 }), {
  6056. "id": "my",
  6057. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6063. break;
  6064. }
  6065. }
  6066. switch (str) {
  6067. // AIprogram2 AI体验 aihub.cocorobo.cn
  6068. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6069. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6070. case "formulaEdi": //公式编辑
  6071. _formdiv = new U.UF.UI.form(
  6072. "公式编辑",
  6073. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6074. "id": "formulaEdi",
  6075. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "molStr": //分子结构
  6083. _formdiv = new U.UF.UI.form(
  6084. "分子结构",
  6085. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6086. "id": "molStr",
  6087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "timeAxis": //时间轴
  6095. _formdiv = new U.UF.UI.form(
  6096. "时间轴",
  6097. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6098. "id": "timeAxis",
  6099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "AIprogram2": //AI体验
  6107. _formdiv = new U.UF.UI.form(
  6108. "AI体验",
  6109. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6110. "id": "AIprogram2",
  6111. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "Pythonprogram": //python编程
  6119. _formdiv = new U.UF.UI.form(
  6120. "Python编程",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6122. "id": "Pythonprogram",
  6123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. case "AIprogram": //ai编程
  6131. _formdiv = new U.UF.UI.form(
  6132. "AI编程平台",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6134. "id": "AIprogram",
  6135. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "CocoPi": //CocoPi
  6143. _formdiv = new U.UF.UI.form(
  6144. "CocoPi",
  6145. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  6146. "id": "CocoPi",
  6147. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. case "Wood": //Wood
  6155. _formdiv = new U.UF.UI.form(
  6156. "海龟编程",
  6157. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6158. "id": "Wood",
  6159. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. case "car": //模拟驾驶
  6167. _formdiv = new U.UF.UI.form(
  6168. "模拟驾驶",
  6169. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6170. "id": "car",
  6171. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "lineSearch": //路径搜索
  6179. _formdiv = new U.UF.UI.form(
  6180. "路径搜索",
  6181. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  6182. "id": "lineSearch",
  6183. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. case "deepLearning": //深度学习
  6191. _formdiv = new U.UF.UI.form(
  6192. "深度学习",
  6193. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  6194. "id": "deepLearning",
  6195. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _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); } }
  6201. break;
  6202. case "allHistory": //深度学习
  6203. _formdiv = new U.UF.UI.form(
  6204. "全历史",
  6205. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  6206. "id": "allHistory",
  6207. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _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); } }
  6213. break;
  6214. case "chatPDF": //ai编程
  6215. _formdiv = new U.UF.UI.form(
  6216. "chatPDF",
  6217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6218. "id": "chatPDF",
  6219. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _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); } }
  6225. break;
  6226. case "resources": //国家教育
  6227. _formdiv = new U.UF.UI.form(
  6228. "国家教育",
  6229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6230. "id": "resources",
  6231. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _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); } }
  6237. break;
  6238. case "codeEdit": //源码编辑
  6239. _formdiv = new U.UF.UI.form(
  6240. "源码编辑",
  6241. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6242. "id": "codeEdit",
  6243. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _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); } }
  6249. break; //
  6250. case "MindMap": //MindMap
  6251. _formdiv = new U.UF.UI.form(
  6252. "MindMap",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6254. "id": "MindMap",
  6255. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _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); } }
  6261. break;
  6262. case "netWorkPanel": //netWorkPanel
  6263. _formdiv = new U.UF.UI.form(
  6264. "netWorkPanel",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6266. "id": "netWorkPanel",
  6267. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _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); } }
  6273. break;
  6274. case "GeoGebra": //GeoGebra
  6275. _formdiv = new U.UF.UI.form(
  6276. "GeoGebra",
  6277. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  6278. "id": "GeoGebra",
  6279. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _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); } }
  6285. break;
  6286. case "translation": //翻译
  6287. _formdiv = new U.UF.UI.form(
  6288. "翻译",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6290. "id": "translation",
  6291. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "mohe": //魔盒
  6299. _formdiv = new U.UF.UI.form(
  6300. "魔盒识字",
  6301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6302. "id": "mohe",
  6303. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "24game": //24点
  6311. _formdiv = new U.UF.UI.form(
  6312. "24点",
  6313. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6314. "id": "24game",
  6315. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6321. break;
  6322. case "case":
  6323. _formdiv = new U.UF.UI.form(
  6324. "课程进展",
  6325. $$("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 }), {
  6326. "id": "case",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6333. break;
  6334. case "snf":
  6335. _formdiv = new U.UF.UI.form(
  6336. "赛诺梵",
  6337. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6338. "id": "snf",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6345. break;
  6346. case "hanFamily":
  6347. _formdiv = new U.UF.UI.form(
  6348. "汉字家族",
  6349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6350. "id": "hanFamily",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6357. break;
  6358. case "hanClassics":
  6359. _formdiv = new U.UF.UI.form(
  6360. "国学经典",
  6361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6362. "id": "hanClassics",
  6363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6364. "onresize": function () { }
  6365. }, {
  6366. closecallback: function () { }
  6367. }, { "style": { "height": "36px" } }).form; //创建窗体
  6368. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6369. break;
  6370. case "hanTraining":
  6371. _formdiv = new U.UF.UI.form(
  6372. "笔画训练",
  6373. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6374. "id": "hanTraining",
  6375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6376. "onresize": function () { }
  6377. }, {
  6378. closecallback: function () { }
  6379. }, { "style": { "height": "36px" } }).form; //创建窗体
  6380. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6381. break;
  6382. case "hanClass":
  6383. _formdiv = new U.UF.UI.form(
  6384. "书法课堂",
  6385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6386. "id": "hanClass",
  6387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6388. "onresize": function () { }
  6389. }, {
  6390. closecallback: function () { }
  6391. }, { "style": { "height": "36px" } }).form; //创建窗体
  6392. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6393. break;
  6394. case "han":
  6395. _formdiv = new U.UF.UI.form(
  6396. "汉字宫",
  6397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6398. "id": "han",
  6399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, { "style": { "height": "36px" } }).form; //创建窗体
  6404. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6405. break;
  6406. case "projectGM": //课程管理
  6407. _formdiv = new U.UF.UI.form(
  6408. "课程管理",
  6409. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6410. "id": "projectGM",
  6411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6412. "onresize": function () { }
  6413. }, {
  6414. closecallback: function () { }
  6415. }, { "style": { "height": "36px" } }).form; //创建窗体
  6416. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6417. break;
  6418. case "studyGM": //课程中心
  6419. _formdiv = new U.UF.UI.form(
  6420. "课程中心",
  6421. $$("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
  6422. "id": "study",
  6423. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6429. break;
  6430. // studentGM
  6431. case "studentGM": //学生管理
  6432. _formdiv = new U.UF.UI.form(
  6433. "学生管理",
  6434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6435. "id": "studentGM",
  6436. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6442. break;
  6443. case "evaluateGM": //学生评价
  6444. _formdiv = new U.UF.UI.form(
  6445. "学生评价",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6447. "id": "evaluateGM",
  6448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. // classGM
  6456. case "classGM": //班级管理
  6457. _formdiv = new U.UF.UI.form(
  6458. "班级管理",
  6459. $$("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 }), {
  6460. "id": "classGM",
  6461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. // dataGM
  6469. case "dataGM":
  6470. _formdiv = new U.UF.UI.form(
  6471. "我的资料",
  6472. $$("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 }), {
  6473. "id": "dataGM",
  6474. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. break;
  6481. // caseGM
  6482. case "caseGM": //课程进展
  6483. _formdiv = new U.UF.UI.form(
  6484. "课程进展",
  6485. $$("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 }), {
  6486. "id": "caseGM",
  6487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6488. "onresize": function () { }
  6489. }, {
  6490. closecallback: function () { }
  6491. }, { "style": { "height": "36px" } }).form; //创建窗体
  6492. _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); } }
  6493. break;
  6494. // meterialGM
  6495. case "meterialGM": //素材库
  6496. _formdiv = new U.UF.UI.form(
  6497. "素材库",
  6498. $$("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 }), {
  6499. "id": "meterialGM",
  6500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, { "style": { "height": "36px" } }).form; //创建窗体
  6505. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6506. break;
  6507. // evaluateSGM
  6508. case "evaluateSGM": //我的评价
  6509. _formdiv = new U.UF.UI.form(
  6510. "我的评价",
  6511. $$("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 }), {
  6512. "id": "evaluateSGM",
  6513. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6519. break;
  6520. case "jupyter": //jupyter
  6521. _formdiv = new U.UF.UI.form(
  6522. "jupyter",
  6523. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6524. "id": "jupyter",
  6525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6531. break;
  6532. case "number": //数字实验室
  6533. _formdiv = new U.UF.UI.form(
  6534. "数字实验室",
  6535. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6536. "id": "number",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _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); } }
  6543. break;
  6544. case "studentCourse": //项目管理 学生
  6545. _formdiv = new U.UF.UI.form(
  6546. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6547. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6548. "id": "studentCourse",
  6549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _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); } }
  6555. break;
  6556. case "studentCourseS": //项目管理 老师
  6557. _formdiv = new U.UF.UI.form(
  6558. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6559. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6560. "id": "studentCourseS",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "studentIndex": //项目中心
  6569. _formdiv = new U.UF.UI.form(
  6570. "项目中心",
  6571. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6572. "id": "studentIndex",
  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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6579. break;
  6580. case "CaseDesignS":
  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/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6584. "id": "case",
  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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6591. break;
  6592. case "tcStudent": //腾讯学生管理
  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/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6596. "id": "tcStudent",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6603. break;
  6604. case "tcSchool": //腾讯学校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6608. "id": "tcSchool",
  6609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. break;
  6616. case "tcTeacher": //腾讯学校管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6620. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6627. break;
  6628. case "teacher":
  6629. _formdiv = new U.UF.UI.form(
  6630. "教师管理",
  6631. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6632. "id": "teacher",
  6633. "style": { "width": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6639. break;
  6640. case "tcData": //腾讯我的资料
  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/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6644. "id": "tcData",
  6645. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6651. break;
  6652. case "tcNotice": //腾讯消息通知
  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/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6656. "id": "tcNotice",
  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/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6663. break;
  6664. case "myReport": //好友打开
  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/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6668. "id": "myReport",
  6669. "style": { "width": "100%", "height": "100%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6675. break;
  6676. case "learnAna": //好友打开
  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/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6680. "id": "learnAna",
  6681. "style": { "width": "100%", "height": "100%", "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/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6687. break;
  6688. case "AIChat": //AI共创
  6689. _formdiv = new U.UF.UI.form(
  6690. "AI共创",
  6691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6692. "id": "AIChat",
  6693. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. istop: true,
  6697. closecallback: function () { $("#aichat_icon").remove(); },
  6698. narrowcallback: function () {
  6699. if (!$("#aichat_icon")[0]) {
  6700. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6701. }
  6702. },
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "ainew": //AI共创
  6707. _formdiv = new U.UF.UI.form(
  6708. "AI协同",
  6709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6710. "id": "ainew",
  6711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "gpt4": //gpt4
  6719. _formdiv = new U.UF.UI.form(
  6720. "AI助手",
  6721. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6722. "id": "gpt4",
  6723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _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); } }
  6729. break;
  6730. case "aigpt": //gpt4
  6731. _formdiv = new U.UF.UI.form(
  6732. "AI助手+",
  6733. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6734. "id": "aigpt",
  6735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () {
  6739. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6740. }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6744. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6745. })
  6746. break;
  6747. case "aiKnowledge": //aiKnowledge
  6748. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6749. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6750. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6751. }
  6752. _formdiv = new U.UF.UI.form(
  6753. "知识建构",
  6754. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6755. "id": "aiKnowledge",
  6756. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //创建窗体
  6761. _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); } }
  6762. break;
  6763. case "futureClass": //AI共创
  6764. _formdiv = new U.UF.UI.form(
  6765. "协同建构",
  6766. $$("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
  6767. "id": "synergyCourse",
  6768. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6769. "onresize": function () { }
  6770. }, {
  6771. closecallback: function () {
  6772. $("iframe", _formdiv)[0].contentWindow.loginout();
  6773. }
  6774. }, { "style": { "height": "36px" } }).form; //创建窗体
  6775. _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); } }
  6776. break;
  6777. case "aiagent": //ai agent
  6778. _formdiv = new U.UF.UI.form(
  6779. "AI Agent",
  6780. $$("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" }), {
  6781. "id": "AIAgent",
  6782. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _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); } }
  6788. break;
  6789. case "dataBoard": //数据看板
  6790. _formdiv = new U.UF.UI.form(
  6791. "数据看板",
  6792. $$("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 }), {
  6793. "id": "dataBoard",
  6794. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6795. "onresize": function () { }
  6796. }, {
  6797. closecallback: function () { }
  6798. }, { "style": { "height": "36px" } }).form; //创建窗体
  6799. _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); } }
  6800. break;
  6801. case "dataBoardSies": //数据融合
  6802. _formdiv = new U.UF.UI.form(
  6803. "数据融合",
  6804. $$("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 }), {
  6805. "id": "dataBoardSies",
  6806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6807. "onresize": function () { }
  6808. }, {
  6809. closecallback: function () { }
  6810. }, { "style": { "height": "36px" } }).form; //创建窗体
  6811. _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); } }
  6812. break;
  6813. case "dataBoardNew": //数据看板
  6814. _formdiv = new U.UF.UI.form(
  6815. "综合看板",
  6816. $$("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 }), {
  6817. "id": "dataBoardNew",
  6818. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6819. "onresize": function () { }
  6820. }, {
  6821. closecallback: function () { }
  6822. }, { "style": { "height": "36px" } }).form; //创建窗体
  6823. _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); } }
  6824. break;
  6825. case "dataBoardTest": //数据看板
  6826. _formdiv = new U.UF.UI.form(
  6827. "评测看板",
  6828. $$("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 }), {
  6829. "id": "dataBoardTest",
  6830. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6831. "onresize": function () { }
  6832. }, {
  6833. closecallback: function () { }
  6834. }, { "style": { "height": "36px" } }).form; //创建窗体
  6835. _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); } }
  6836. break;
  6837. case "AIAnalyse": //AI共创
  6838. _formdiv = new U.UF.UI.form(
  6839. "AI分析",
  6840. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6841. "id": "AIAnalyse",
  6842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6843. "onresize": function () { }
  6844. }, {
  6845. closecallback: function () { }
  6846. }, { "style": { "height": "36px" } }).form; //创建窗体
  6847. _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); } }
  6848. break;
  6849. case "studioCourse": //AI共创
  6850. _formdiv = new U.UF.UI.form(
  6851. "工作管理",
  6852. $$("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 }), {
  6853. "id": "studioCourse",
  6854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6855. "onresize": function () { }
  6856. }, {
  6857. closecallback: function () { }
  6858. }, { "style": { "height": "36px" } }).form; //创建窗体
  6859. _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); } }
  6860. break;
  6861. case "studioIndex": //AI共创
  6862. _formdiv = new U.UF.UI.form(
  6863. "工作中心",
  6864. $$("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 }), {
  6865. "id": "studioIndex",
  6866. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //创建窗体
  6871. _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); } }
  6872. break;
  6873. case "source":
  6874. _formdiv = new U.UF.UI.form(
  6875. "教学资源",
  6876. $$("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 }), {
  6877. "id": "source",
  6878. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, { "style": { "height": "36px" } }).form; //创建窗体
  6883. _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); } }
  6884. break;
  6885. case "testTeacher":
  6886. _formdiv = new U.UF.UI.form(
  6887. "智能表单",
  6888. $$("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 }), {
  6889. "id": "testTeacher",
  6890. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6891. "onresize": function () { }
  6892. }, {
  6893. closecallback: function () { }
  6894. }, { "style": { "height": "36px" } }).form; //创建窗体
  6895. _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); } }
  6896. break;
  6897. case "testStudent":
  6898. _formdiv = new U.UF.UI.form(
  6899. "教师中心",
  6900. $$("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 }), {
  6901. "id": "testStudent",
  6902. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6903. "onresize": function () { }
  6904. }, {
  6905. closecallback: function () { }
  6906. }, { "style": { "height": "36px" } }).form; //创建窗体
  6907. _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); } }
  6908. break;
  6909. case "testTeacherSies":
  6910. _formdiv = new U.UF.UI.form(
  6911. "教师管理",
  6912. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6913. "id": "testTeacherSies",
  6914. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, { "style": { "height": "36px" } }).form; //创建窗体
  6919. _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); } }
  6920. break;
  6921. case "testStudentSies":
  6922. _formdiv = new U.UF.UI.form(
  6923. "教师中心",
  6924. $$("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 }), {
  6925. "id": "testStudentSies",
  6926. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6927. "onresize": function () { }
  6928. }, {
  6929. closecallback: function () { }
  6930. }, { "style": { "height": "36px" } }).form; //创建窗体
  6931. _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); } }
  6932. break;
  6933. case "ytpbl": //消息通知
  6934. _formdiv = new U.UF.UI.form(
  6935. "案例征集",
  6936. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6937. "id": "ytpbl",
  6938. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6939. "onresize": function () { }
  6940. }, {
  6941. closecallback: function () { }
  6942. }, { "style": { "height": "36px" } }).form; //创建窗体
  6943. _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); } }
  6944. // 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");
  6945. break;
  6946. case "aiCourseResource": //人工智能窗体
  6947. _formdiv = new U.UF.UI.form(
  6948. false,
  6949. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  6950. "id": "aiCourseResource",
  6951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6952. "onresize": function () { },
  6953. "isdrag": false,
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. _taskbar = ''
  6958. break;
  6959. case "szdjgCocooroboX": //图形化编程
  6960. _formdiv = new U.UF.UI.form(
  6961. "图形化编程",
  6962. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  6963. "id": "szdjgCocooroboX",
  6964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //创建窗体
  6969. _taskbar = ''
  6970. break;
  6971. case "szdjgPython": //python编程
  6972. _formdiv = new U.UF.UI.form(
  6973. "Python编程",
  6974. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  6975. "id": "szdjgPython",
  6976. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _taskbar = ''
  6982. break;
  6983. case "Record":
  6984. _formdiv = new U.UF.UI.form(
  6985. "观察记录",
  6986. $$("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 }), {
  6987. "id": "Record",
  6988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () { }
  6992. }, { "style": { "height": "36px" } }).form; //创建窗体
  6993. _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); } }
  6994. break;
  6995. case "aigptCourse":
  6996. _formdiv = new U.UF.UI.form(
  6997. "AI智能体",
  6998. $$("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' }), {
  6999. "id": "aigptCourse",
  7000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7001. "onresize": function () { }
  7002. }, {
  7003. closecallback: function () { }
  7004. }, { "style": { "height": "36px" } }).form; //创建窗体
  7005. _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); } }
  7006. break;
  7007. case "classroomObservation":
  7008. _formdiv = new U.UF.UI.form(
  7009. "课堂观察",
  7010. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7011. "id": "classroomObservation",
  7012. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7018. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7019. break;
  7020. case "pblCourse":
  7021. _formdiv = new U.UF.UI.form(
  7022. "学生PBL",
  7023. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7024. "id": "pblCourse",
  7025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _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); } }
  7031. break;
  7032. case "appStore":
  7033. _formdiv = new U.UF.UI.form(
  7034. "CocoFlow",
  7035. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7036. "id": "appStore",
  7037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _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); } }
  7043. break;
  7044. case "EDU":
  7045. _formdiv = new U.UF.UI.form(
  7046. "EDU",
  7047. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7048. "id": "EDU",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //创建窗体
  7054. _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); } }
  7055. break;
  7056. case "knowledge":
  7057. _formdiv = new U.UF.UI.form(
  7058. "知识库",
  7059. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7060. "id": "knowledge",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //创建窗体
  7066. _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); } }
  7067. break;
  7068. case "userExamine":
  7069. _formdiv = new U.UF.UI.form(
  7070. "账号申请",
  7071. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7072. "id": "userExamine",
  7073. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //创建窗体
  7078. break;
  7079. }
  7080. //U.MD.D.I.openClick(str);
  7081. //如果有任务栏信息
  7082. if (_taskbar) {
  7083. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7084. }
  7085. }
  7086. // U.MD.D.I.openClick = function(str){
  7087. // var click = '';
  7088. // switch(str){
  7089. // case 'friend':
  7090. // click = '我的好友';
  7091. // break;
  7092. // case 'domain':
  7093. // click = '域名管理';
  7094. // break;
  7095. // case 'disk':
  7096. // click = '我的云盘';
  7097. // break;
  7098. // case 'word':
  7099. // click = 'Word';
  7100. // break;
  7101. // case 'excel':
  7102. // click = 'Execl';
  7103. // break;
  7104. // case 'txt':
  7105. // click = '文本文件';
  7106. // break;
  7107. // case 'lookupFriend':
  7108. // click = '查找好友';
  7109. // break;
  7110. // case 'ftp':
  7111. // click = 'FTP';
  7112. // break;
  7113. // case 'group':
  7114. // click = '群组';
  7115. // break;
  7116. // case 'set':
  7117. // click = '我的设置';
  7118. // break;
  7119. // case 'systemSet':
  7120. // click = '系统设置';
  7121. // break;
  7122. // case 'boomYun':
  7123. // click = '互联办公';
  7124. // break;
  7125. // case 'xz':
  7126. // click = '云端下载';
  7127. // break;
  7128. // case 'client':
  7129. // click = '有思浏览器';
  7130. // break;
  7131. // case 'backEndProgramming':
  7132. // click = '在线后台编程';
  7133. // break;
  7134. // case 'frontEndProgramming':
  7135. // click = '在线前端编程';
  7136. // break;
  7137. // default: break;
  7138. // }
  7139. // if(U.MD.D.I.Ip && click){
  7140. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7141. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7142. // })
  7143. // }
  7144. // }
  7145. /**
  7146. *函数作用:ajax简易函数,使用post格式
  7147. *@param url {data} 后台地址
  7148. *@param data {data} 参数json
  7149. *@param fn {data} 回调函数
  7150. *
  7151. */
  7152. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7153. // var xhr = new XMLHttpRequest();
  7154. // xhr.open("GET",url,true);
  7155. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7156. // xhr.onreadystatechange = function(){
  7157. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7158. // fn.call(this,xhr.responseText);
  7159. // }
  7160. // };
  7161. // xhr.send();
  7162. // }
  7163. /*判断是否是内网IP*/
  7164. // U.MD.D.I.isInnerIPFn = function(str){
  7165. // var curPageUrl = str;
  7166. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7167. // curPageUrl =curPageUrl.replace(reg1,'');
  7168. // // console.log('curPageUrl-1 '+curPageUrl);
  7169. // var reg2 = /\:+/g;//替换冒号为一点
  7170. // curPageUrl =curPageUrl.replace(reg2,'.');
  7171. // // console.log('curPageUrl-2 '+curPageUrl);
  7172. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7173. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7174. // if(curPageUrl[2] != '16'){
  7175. // return ipAddress;
  7176. // }else{
  7177. // return false;
  7178. // }
  7179. // }
  7180. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7181. // //compatibility for firefox and chrome
  7182. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7183. // var pc = new myPeerConnection({
  7184. // iceServers: []
  7185. // }),
  7186. // noop = function() {},
  7187. // localIPs = {},
  7188. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7189. // key;
  7190. // function iterateIP(ip) {
  7191. // if (!localIPs[ip]) onNewIP(ip);
  7192. // localIPs[ip] = true;
  7193. // }
  7194. // //create a bogus data channel
  7195. // pc.createDataChannel("");
  7196. // // create offer and set local description
  7197. // pc.createOffer().then(function(sdp) {
  7198. // sdp.sdp.split('\n').forEach(function(line) {
  7199. // if (line.indexOf('candidate') < 0) return;
  7200. // line.match(ipRegex).forEach(iterateIP);
  7201. // });
  7202. // pc.setLocalDescription(sdp, noop, noop);
  7203. // }).catch(function(reason) {
  7204. // // An error occurred, so handle the failure to connect
  7205. // });
  7206. // //sten for candidate events
  7207. // pc.onicecandidate = function(ice) {
  7208. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7209. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7210. // };
  7211. // }
  7212. // U.MD.D.I.getUserIpBool = function(callback){
  7213. // U.MD.D.I.getUserIP(function(ip){
  7214. // alert("Got IP! :" + ip);
  7215. // });
  7216. //}
  7217. //#endregion
  7218. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7219. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7220. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7221. _userinfo = US.userInfo, //登录用户信息
  7222. _userid = US.userInfo.userid //登录用户id
  7223. let _iframe;
  7224. let _cid = cid,
  7225. _stage = stage,
  7226. _task = task,
  7227. _tool = tool;
  7228. var _jie = $$("div", {
  7229. "style": {
  7230. "position": "absolute",
  7231. "bottom": "50px",
  7232. "right": "50px",
  7233. "zIndex": "9999",
  7234. "backgroundColor": "#2268bc",
  7235. "color": "#fff",
  7236. "padding": "12px 20px",
  7237. "cursor": "pointer",
  7238. "borderRadius": "4px",
  7239. },
  7240. "innerHTML": "提交作业"
  7241. })
  7242. let aTool = ''
  7243. let _loading = document.createElement('div')
  7244. _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;"
  7245. // _loading.id = "";
  7246. let _lchild = document.createElement('div')
  7247. let _limg = document.createElement('img')
  7248. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7249. _limg.style = "width: 26px;margin-right: 10px;"
  7250. _lchild.appendChild(_limg)
  7251. let _lspan = document.createElement('span')
  7252. _lspan.innerHTML = "上传中..."
  7253. _lchild.appendChild(_lspan)
  7254. _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%);"
  7255. _loading.appendChild(_lchild)
  7256. var _box = $$('div', {
  7257. "style": {
  7258. "position": "relative",
  7259. "width": "100%",
  7260. "height": "100%",
  7261. },
  7262. })
  7263. _box.appendChild(_loading)
  7264. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7265. switch (str) {
  7266. case "whiteboard":
  7267. aTool = 1;
  7268. _iframe = $$("iframe", {
  7269. "frameborder": "no",
  7270. "border": "0",
  7271. "scrolling ": "no",
  7272. "style": {
  7273. "cssText": "border:0;width:100%;height:100%"
  7274. },
  7275. "src": "https://beta.iwb.cocorobo.cn/"
  7276. })
  7277. _box.appendChild(_iframe);
  7278. _box.appendChild(_jie);
  7279. _formdiv = new U.UF.UI.form(
  7280. "电子白板",
  7281. _box, {
  7282. "id": "whiteboard" + cid + stage + task + tool,
  7283. "style": {
  7284. "width": "90%",
  7285. "height": "90%",
  7286. "overflow": 'hidden'
  7287. },
  7288. "onresize": function () { }
  7289. }, {
  7290. closecallback: function () { }
  7291. }, {
  7292. "style": {
  7293. "height": "36px"
  7294. }
  7295. }).form; //创建窗体
  7296. _taskbar = {
  7297. "id": str + _formdiv.id,
  7298. "style": {
  7299. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7300. },
  7301. "name": "电子白板",
  7302. "forms": _formdiv,
  7303. "click": function () {
  7304. U.MD.D.I.openApplication(str, obj, info);
  7305. }
  7306. }
  7307. break;
  7308. case "mind":
  7309. aTool = 3;
  7310. _iframe = $$("iframe", {
  7311. "frameborder": "no",
  7312. "border": "0",
  7313. "scrolling ": "no",
  7314. "style": {
  7315. "cssText": "border:0;width:100%;height:100%"
  7316. },
  7317. "src": "/kityminder-editor/dist/index.html"
  7318. })
  7319. _box.appendChild(_iframe);
  7320. _box.appendChild(_jie);
  7321. _formdiv = new U.UF.UI.form(
  7322. "思维导图",
  7323. _box, { //"/jsmind/example/demo.html"
  7324. "id": "mind" + cid + stage + task + tool,
  7325. "style": {
  7326. "width": "90%",
  7327. "height": "90%",
  7328. "overflow": 'hidden'
  7329. },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, {
  7334. "style": {
  7335. "height": "36px"
  7336. }
  7337. }).form; //创建窗体
  7338. _taskbar = {
  7339. "id": str + _formdiv.id,
  7340. "style": {
  7341. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7342. },
  7343. "name": "思维导图",
  7344. "forms": _formdiv,
  7345. "click": function () {
  7346. U.MD.D.I.openApplication(str, obj, info);
  7347. }
  7348. }
  7349. break;
  7350. case "MindMap":
  7351. aTool = 3;
  7352. _iframe = $$("iframe", {
  7353. "frameborder": "no",
  7354. "border": "0",
  7355. "scrolling ": "no",
  7356. "style": {
  7357. "cssText": "border:0;width:100%;height:100%"
  7358. },
  7359. "src": "//cloud.cocorobo.cn/mind/"
  7360. })
  7361. _box.appendChild(_iframe);
  7362. _box.appendChild(_jie);
  7363. _formdiv = new U.UF.UI.form(
  7364. "思维导图",
  7365. _box, { //"/jsmind/example/demo.html"
  7366. "id": "mind" + cid + stage + task + tool,
  7367. "style": {
  7368. "width": "90%",
  7369. "height": "90%",
  7370. "overflow": 'hidden'
  7371. },
  7372. "onresize": function () { }
  7373. }, {
  7374. closecallback: function () { }
  7375. }, {
  7376. "style": {
  7377. "height": "36px"
  7378. }
  7379. }).form; //创建窗体
  7380. _taskbar = {
  7381. "id": str + _formdiv.id,
  7382. "style": {
  7383. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7384. },
  7385. "name": "思维导图",
  7386. "forms": _formdiv,
  7387. "click": function () {
  7388. U.MD.D.I.openApplication(str, obj, info);
  7389. }
  7390. }
  7391. break;
  7392. case "doc":
  7393. aTool = 6;
  7394. _iframe = $$("iframe", {
  7395. "frameborder": "no",
  7396. "border": "0",
  7397. "scrolling ": "no",
  7398. "style": {
  7399. "cssText": "border:0;width:100%;height:100%"
  7400. },
  7401. "src": "/Office/Word/WordEditArea.htm"
  7402. })
  7403. _box.appendChild(_iframe);
  7404. _box.appendChild(_jie);
  7405. _formdiv = new U.UF.UI.form(
  7406. "协同文档",
  7407. _box, {
  7408. "id": "doc" + cid + stage + task + tool,
  7409. "style": {
  7410. "width": "90%",
  7411. "height": "90%",
  7412. "overflow": 'hidden'
  7413. },
  7414. "onresize": function () { }
  7415. }, {
  7416. closecallback: function () { }
  7417. }, {
  7418. "style": {
  7419. "height": "36px"
  7420. }
  7421. }).form; //创建窗体
  7422. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7423. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7424. })
  7425. _taskbar = {
  7426. "id": str + _formdiv.id,
  7427. "style": {
  7428. "backgroundImage": "url(/img/icon/doc.png)"
  7429. },
  7430. "name": "协同文档",
  7431. "forms": _formdiv,
  7432. "click": function () {
  7433. U.MD.D.I.openApplication(str, obj, info);
  7434. }
  7435. }
  7436. break;
  7437. case "mindNetwork": //好友打开
  7438. aTool = 7;
  7439. _iframe = $$("iframe", {
  7440. "webkitallowfullscreen": "",
  7441. "mozallowfullscreen": "",
  7442. "allowfullscreen": "",
  7443. "frameborder": "no",
  7444. "border": "0",
  7445. "scrolling ": "no",
  7446. "style": {
  7447. "cssText": "border:0; width:100%; height:100%;"
  7448. },
  7449. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7450. })
  7451. _box.appendChild(_iframe);
  7452. _box.appendChild(_jie);
  7453. _formdiv = new U.UF.UI.form(
  7454. "思维网格",
  7455. _box, {
  7456. "id": "mindNetwork" + cid + stage + task + tool,
  7457. "style": {
  7458. "width": "90%",
  7459. "height": "90%",
  7460. "overflow": 'hidden'
  7461. },
  7462. "onresize": function () { }
  7463. }, {
  7464. closecallback: function () { }
  7465. }, {
  7466. "style": {
  7467. "height": "36px"
  7468. }
  7469. }).form; //创建窗体
  7470. _taskbar = {
  7471. "id": str + _formdiv.id,
  7472. "style": {
  7473. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7474. },
  7475. "name": "思维网格",
  7476. "forms": _formdiv,
  7477. "click": function () {
  7478. U.MD.D.I.openApplication(str, obj, info);
  7479. }
  7480. }
  7481. break;
  7482. case "courseDesign":
  7483. _iframe = $$("iframe", {
  7484. "webkitallowfullscreen": "",
  7485. "mozallowfullscreen": "",
  7486. "allowfullscreen": "",
  7487. "frameborder": "no",
  7488. "border": "0",
  7489. "scrolling ": "no",
  7490. "style": {
  7491. "cssText": "border:0; width:100%; height:100%;"
  7492. },
  7493. "src": "/course-design-vue"
  7494. })
  7495. _box.appendChild(_iframe);
  7496. _box.appendChild(_jie);
  7497. _formdiv = new U.UF.UI.form(
  7498. "项目设计",
  7499. _box, {
  7500. "id": "courseDesign" + cid + stage + task + tool,
  7501. "style": {
  7502. "width": "90%",
  7503. "height": "90%",
  7504. "overflow": 'hidden'
  7505. },
  7506. "onresize": function () { }
  7507. }, {
  7508. closecallback: function () { }
  7509. }, {
  7510. "style": {
  7511. "height": "36px"
  7512. }
  7513. }).form; //创建窗体
  7514. _taskbar = {
  7515. "id": str + _formdiv.id,
  7516. "style": {
  7517. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7518. },
  7519. "name": "项目设计",
  7520. "forms": _formdiv,
  7521. "click": function () {
  7522. U.MD.D.I.openApplication(str, obj, info);
  7523. }
  7524. }
  7525. break;
  7526. }
  7527. const script1 = document.createElement("script");
  7528. script1.type = "text/javascript";
  7529. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7530. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7531. const script2 = document.createElement("script");
  7532. script2.type = "text/javascript";
  7533. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7534. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7535. const script3 = document.createElement("script");
  7536. script3.type = "text/javascript";
  7537. script3.charset = "UTF-8";
  7538. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7539. const script4 = document.createElement("script");
  7540. script4.type = "text/javascript";
  7541. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7542. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7543. if (_iframe) {
  7544. if (str == 'doc') {
  7545. _iframe = _formdiv.querySelector('iframe')
  7546. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7547. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7548. _iframe.contentWindow.document.body.appendChild(script1);
  7549. _iframe.contentWindow.document.body.appendChild(script2);
  7550. // _iframe.contentWindow.document.body.appendChild(script3);
  7551. _iframe.contentWindow.document.body.appendChild(script4);
  7552. })
  7553. if (onloadListener) {
  7554. _iframe.contentDocument.location.reload()
  7555. } else {
  7556. _iframe.contentDocument.location.reload()
  7557. }
  7558. } else if (str == 'courseDesign') {
  7559. U.UF.DL.iframeLoad(_iframe, function () {
  7560. // _iframe.contentWindow.U.MD.O.W.load();
  7561. // _iframe.contentWindow.document.body.appendChild(script1);
  7562. _iframe.contentWindow.document.body.appendChild(script2);
  7563. _iframe.contentWindow.document.body.appendChild(script4);
  7564. })
  7565. } else if (str == 'mind') {
  7566. _iframe = _formdiv.querySelector('iframe')
  7567. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7568. //
  7569. _iframe.contentWindow.document.body.appendChild(script1);
  7570. _iframe.contentWindow.document.body.appendChild(script2);
  7571. _iframe.contentWindow.document.body.appendChild(script4);
  7572. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7573. })
  7574. if (onloadListener) {
  7575. _iframe.contentDocument.location.reload()
  7576. } else {
  7577. _iframe.contentDocument.location.reload()
  7578. }
  7579. } else if (str == 'whiteboard') {
  7580. _iframe = _formdiv.querySelector('iframe')
  7581. let onloadListener = _iframe.onload = () => {
  7582. _iframe.contentWindow.document.body.appendChild(script1);
  7583. _iframe.contentWindow.document.body.appendChild(script2);
  7584. _iframe.contentWindow.document.body.appendChild(script4);
  7585. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7586. };
  7587. // if (onloadListener) {
  7588. // try {
  7589. // _iframe.src += "?cocorobo="+new Date().getTime()
  7590. // _iframe.contentWindow.document.location.reload()
  7591. // } catch (error) {
  7592. // }
  7593. // } else {
  7594. // _iframe.contentDocument.location.reload()
  7595. // }
  7596. } else {
  7597. _iframe.onload = () => {
  7598. _iframe.contentWindow.document.body.appendChild(script1);
  7599. _iframe.contentWindow.document.body.appendChild(script2);
  7600. // _iframe.contentWindow.document.body.appendChild(script3);
  7601. _iframe.contentWindow.document.body.appendChild(script4);
  7602. };
  7603. }
  7604. _jie.onclick = async () => {
  7605. let text = ''
  7606. if (aTool == 1) {
  7607. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7608. } else if (aTool == 6) {
  7609. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7610. } else if (aTool == 3) {
  7611. text = await U.MD.D.I.getEditorContent(_iframe);
  7612. }
  7613. _loading.style.display = 'flex'
  7614. console.log(_loading);
  7615. var _ajs = _iframe.contentWindow.document.createElement("script");
  7616. _ajs.type = "text/javascript";
  7617. _ajs.innerHTML =
  7618. // 'console.log(' + _loading + ');\n' +
  7619. 'var _js = document.createElement("script");\n' +
  7620. '_js.type="text/javascript";\n' +
  7621. '_js.charset="UTF-8";\n' +
  7622. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7623. "_js.onload = function(){\n" +
  7624. ' var a = document.getElementsByTagName("img")\n' +
  7625. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7626. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7627. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7628. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7629. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7630. "beforeUpload_shishi(file," +
  7631. "'" +
  7632. _userid +
  7633. "'" +
  7634. ", " +
  7635. "'" +
  7636. _cid +
  7637. "'" +
  7638. ", " +
  7639. "'" +
  7640. _stage +
  7641. "'" +
  7642. ", " +
  7643. "'" +
  7644. _task +
  7645. "'" +
  7646. ", " +
  7647. "'" +
  7648. _tool +
  7649. "'" +
  7650. ", " +
  7651. "'" +
  7652. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7653. "'" +
  7654. ", " +
  7655. "'" +
  7656. aTool +
  7657. "'" +
  7658. ", " +
  7659. "`" +
  7660. text +
  7661. "`" +
  7662. ")\n" +
  7663. " });\n" +
  7664. "}\n" +
  7665. "document.head.appendChild(_js);\n";
  7666. _iframe.contentWindow.document.head.appendChild(_ajs);
  7667. }
  7668. }
  7669. //U.MD.D.I.openClick(str);
  7670. //如果有任务栏信息
  7671. // if (_taskbar) {
  7672. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7673. // }
  7674. }
  7675. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7676. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7677. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7678. _userinfo = US.userInfo, //登录用户信息
  7679. _userid = US.userInfo.userid //登录用户id
  7680. let _iframe;
  7681. let _cid = cid,
  7682. _stage = stage,
  7683. _task = task,
  7684. _tool = tool;
  7685. var _jie = $$("div", {
  7686. "style": {
  7687. "position": "absolute",
  7688. "bottom": "50px",
  7689. "right": "50px",
  7690. "zIndex": "9999",
  7691. "backgroundColor": "#2268bc",
  7692. "color": "#fff",
  7693. "padding": "12px 20px",
  7694. "cursor": "pointer",
  7695. "borderRadius": "4px",
  7696. },
  7697. "innerHTML": "提交作业"
  7698. })
  7699. let aTool = ''
  7700. let _loading = document.createElement('div')
  7701. _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;"
  7702. // _loading.id = "";
  7703. let _lchild = document.createElement('div')
  7704. let _limg = document.createElement('img')
  7705. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7706. _limg.style = "width: 26px;margin-right: 10px;"
  7707. _lchild.appendChild(_limg)
  7708. let _lspan = document.createElement('span')
  7709. _lspan.innerHTML = "上传中..."
  7710. _lchild.appendChild(_lspan)
  7711. _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%);"
  7712. _loading.appendChild(_lchild)
  7713. let _box = $$('div', {
  7714. "style": {
  7715. "position": "relative",
  7716. "width": "100%",
  7717. "height": "100%",
  7718. },
  7719. })
  7720. _box.appendChild(_loading)
  7721. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7722. switch (str) {
  7723. case "whiteboard":
  7724. aTool = 1;
  7725. _iframe = $$("iframe", {
  7726. "frameborder": "no",
  7727. "border": "0",
  7728. "scrolling ": "no",
  7729. "style": {
  7730. "cssText": "border:0;width:100%;height:100%"
  7731. },
  7732. "src": "https://beta.iwb.cocorobo.cn/"
  7733. })
  7734. _box.appendChild(_iframe);
  7735. _box.appendChild(_jie);
  7736. _formdiv = new U.UF.UI.form(
  7737. "电子白板",
  7738. _box, {
  7739. "id": "whiteboard" + cid + stage + task + tool,
  7740. "style": {
  7741. "width": "90%",
  7742. "height": "90%",
  7743. "overflow": 'hidden'
  7744. },
  7745. "onresize": function () { }
  7746. }, {
  7747. closecallback: function () { }
  7748. }, {
  7749. "style": {
  7750. "height": "36px"
  7751. }
  7752. }).form; //创建窗体
  7753. _taskbar = {
  7754. "id": str + _formdiv.id,
  7755. "style": {
  7756. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7757. },
  7758. "name": "电子白板",
  7759. "forms": _formdiv,
  7760. "click": function () {
  7761. U.MD.D.I.openApplication(str, obj, info);
  7762. }
  7763. }
  7764. break;
  7765. case "mind":
  7766. aTool = 3;
  7767. _iframe = $$("iframe", {
  7768. "frameborder": "no",
  7769. "border": "0",
  7770. "scrolling ": "no",
  7771. "style": {
  7772. "cssText": "border:0;width:100%;height:100%"
  7773. },
  7774. "src": "/kityminder-editor/dist/index.html"
  7775. })
  7776. _box.appendChild(_iframe);
  7777. _box.appendChild(_jie);
  7778. _formdiv = new U.UF.UI.form(
  7779. "思维导图",
  7780. _box, { //"/jsmind/example/demo.html"
  7781. "id": "mind" + cid + stage + task + tool,
  7782. "style": {
  7783. "width": "90%",
  7784. "height": "90%",
  7785. "overflow": 'hidden'
  7786. },
  7787. "onresize": function () { }
  7788. }, {
  7789. closecallback: function () { }
  7790. }, {
  7791. "style": {
  7792. "height": "36px"
  7793. }
  7794. }).form; //创建窗体
  7795. _taskbar = {
  7796. "id": str + _formdiv.id,
  7797. "style": {
  7798. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7799. },
  7800. "name": "思维导图",
  7801. "forms": _formdiv,
  7802. "click": function () {
  7803. U.MD.D.I.openApplication(str, obj, info);
  7804. }
  7805. }
  7806. break;
  7807. case "MindMap":
  7808. aTool = 3;
  7809. _iframe = $$("iframe", {
  7810. "frameborder": "no",
  7811. "border": "0",
  7812. "scrolling ": "no",
  7813. "style": {
  7814. "cssText": "border:0;width:100%;height:100%"
  7815. },
  7816. "src": "//cloud.cocorobo.cn/mind/"
  7817. })
  7818. _box.appendChild(_iframe);
  7819. _box.appendChild(_jie);
  7820. _formdiv = new U.UF.UI.form(
  7821. "思维导图",
  7822. _box, { //"/jsmind/example/demo.html"
  7823. "id": "mind" + cid + stage + task + tool,
  7824. "style": {
  7825. "width": "90%",
  7826. "height": "90%",
  7827. "overflow": 'hidden'
  7828. },
  7829. "onresize": function () { }
  7830. }, {
  7831. closecallback: function () { }
  7832. }, {
  7833. "style": {
  7834. "height": "36px"
  7835. }
  7836. }).form; //创建窗体
  7837. _taskbar = {
  7838. "id": str + _formdiv.id,
  7839. "style": {
  7840. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7841. },
  7842. "name": "思维导图",
  7843. "forms": _formdiv,
  7844. "click": function () {
  7845. U.MD.D.I.openApplication(str, obj, info);
  7846. }
  7847. }
  7848. break;
  7849. case "doc":
  7850. aTool = 6;
  7851. _iframe = $$("iframe", {
  7852. "frameborder": "no",
  7853. "border": "0",
  7854. "scrolling ": "no",
  7855. "style": {
  7856. "cssText": "border:0;width:100%;height:100%"
  7857. },
  7858. "src": "/Office/Word/WordEditArea.htm"
  7859. })
  7860. _box.appendChild(_iframe);
  7861. _box.appendChild(_jie);
  7862. _formdiv = new U.UF.UI.form(
  7863. "协同文档",
  7864. _box, {
  7865. "id": "doc" + cid + stage + task + tool,
  7866. "style": {
  7867. "width": "90%",
  7868. "height": "90%",
  7869. "overflow": 'hidden'
  7870. },
  7871. "onresize": function () { }
  7872. }, {
  7873. closecallback: function () { }
  7874. }, {
  7875. "style": {
  7876. "height": "36px"
  7877. }
  7878. }).form; //创建窗体
  7879. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7880. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7881. })
  7882. _taskbar = {
  7883. "id": str + _formdiv.id,
  7884. "style": {
  7885. "backgroundImage": "url(/img/icon/doc.png)"
  7886. },
  7887. "name": "协同文档",
  7888. "forms": _formdiv,
  7889. "click": function () {
  7890. U.MD.D.I.openApplication(str, obj, info);
  7891. }
  7892. }
  7893. break;
  7894. case "mindNetwork": //好友打开
  7895. aTool = 7;
  7896. _iframe = $$("iframe", {
  7897. "webkitallowfullscreen": "",
  7898. "mozallowfullscreen": "",
  7899. "allowfullscreen": "",
  7900. "frameborder": "no",
  7901. "border": "0",
  7902. "scrolling ": "no",
  7903. "style": {
  7904. "cssText": "border:0; width:100%; height:100%;"
  7905. },
  7906. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7907. })
  7908. _box.appendChild(_iframe);
  7909. _box.appendChild(_jie);
  7910. _formdiv = new U.UF.UI.form(
  7911. "思维网格",
  7912. _box, {
  7913. "id": "mindNetwork" + cid + stage + task + tool,
  7914. "style": {
  7915. "width": "90%",
  7916. "height": "90%",
  7917. "overflow": 'hidden'
  7918. },
  7919. "onresize": function () { }
  7920. }, {
  7921. closecallback: function () { }
  7922. }, {
  7923. "style": {
  7924. "height": "36px"
  7925. }
  7926. }).form; //创建窗体
  7927. _taskbar = {
  7928. "id": str + _formdiv.id,
  7929. "style": {
  7930. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7931. },
  7932. "name": "思维网格",
  7933. "forms": _formdiv,
  7934. "click": function () {
  7935. U.MD.D.I.openApplication(str, obj, info);
  7936. }
  7937. }
  7938. break;
  7939. case "courseDesign":
  7940. _iframe = $$("iframe", {
  7941. "webkitallowfullscreen": "",
  7942. "mozallowfullscreen": "",
  7943. "allowfullscreen": "",
  7944. "frameborder": "no",
  7945. "border": "0",
  7946. "scrolling ": "no",
  7947. "style": {
  7948. "cssText": "border:0; width:100%; height:100%;"
  7949. },
  7950. "src": "/course-design-vue"
  7951. })
  7952. _box.appendChild(_iframe);
  7953. _box.appendChild(_jie);
  7954. _formdiv = new U.UF.UI.form(
  7955. "项目设计",
  7956. _box, {
  7957. "id": "courseDesign" + cid + stage + task + tool,
  7958. "style": {
  7959. "width": "90%",
  7960. "height": "90%",
  7961. "overflow": 'hidden'
  7962. },
  7963. "onresize": function () { }
  7964. }, {
  7965. closecallback: function () { }
  7966. }, {
  7967. "style": {
  7968. "height": "36px"
  7969. }
  7970. }).form; //创建窗体
  7971. _taskbar = {
  7972. "id": str + _formdiv.id,
  7973. "style": {
  7974. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7975. },
  7976. "name": "项目设计",
  7977. "forms": _formdiv,
  7978. "click": function () {
  7979. U.MD.D.I.openApplication(str, obj, info);
  7980. }
  7981. }
  7982. break;
  7983. }
  7984. const script1 = document.createElement("script");
  7985. script1.type = "text/javascript";
  7986. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7987. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7988. const script2 = document.createElement("script");
  7989. script2.type = "text/javascript";
  7990. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7991. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7992. const script3 = document.createElement("script");
  7993. script3.type = "text/javascript";
  7994. script3.charset = "UTF-8";
  7995. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7996. const script4 = document.createElement("script");
  7997. script4.type = "text/javascript";
  7998. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7999. script4.src = window.origin + "/js/Common/jietu2E.js";
  8000. if (_iframe) {
  8001. if (str == 'doc') {
  8002. _iframe = _formdiv.querySelector('iframe')
  8003. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8004. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8005. _iframe.contentWindow.document.body.appendChild(script1);
  8006. _iframe.contentWindow.document.body.appendChild(script2);
  8007. // _iframe.contentWindow.document.body.appendChild(script3);
  8008. _iframe.contentWindow.document.body.appendChild(script4);
  8009. })
  8010. if (onloadListener) {
  8011. _iframe.contentDocument.location.reload()
  8012. } else {
  8013. _iframe.contentDocument.location.reload()
  8014. }
  8015. } else if (str == 'courseDesign') {
  8016. U.UF.DL.iframeLoad(_iframe, function () {
  8017. // _iframe.contentWindow.U.MD.O.W.load();
  8018. // _iframe.contentWindow.document.body.appendChild(script1);
  8019. _iframe.contentWindow.document.body.appendChild(script2);
  8020. _iframe.contentWindow.document.body.appendChild(script4);
  8021. })
  8022. } else if (str == 'mind') {
  8023. _iframe = _formdiv.querySelector('iframe')
  8024. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8025. //
  8026. _iframe.contentWindow.document.body.appendChild(script1);
  8027. _iframe.contentWindow.document.body.appendChild(script2);
  8028. _iframe.contentWindow.document.body.appendChild(script4);
  8029. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8030. })
  8031. if (onloadListener) {
  8032. _iframe.contentDocument.location.reload()
  8033. } else {
  8034. _iframe.contentDocument.location.reload()
  8035. }
  8036. } else if (str == 'whiteboard') {
  8037. _iframe = _formdiv.querySelector('iframe')
  8038. let onloadListener = _iframe.onload = () => {
  8039. _iframe.contentWindow.document.body.appendChild(script1);
  8040. _iframe.contentWindow.document.body.appendChild(script2);
  8041. _iframe.contentWindow.document.body.appendChild(script4);
  8042. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8043. };
  8044. // if (onloadListener) {
  8045. // try {
  8046. // _iframe.src += "?cocorobo="+new Date().getTime()
  8047. // _iframe.contentWindow.document.location.reload()
  8048. // } catch (error) {
  8049. // }
  8050. // } else {
  8051. // _iframe.contentDocument.location.reload()
  8052. // }
  8053. } else {
  8054. _iframe.onload = () => {
  8055. _iframe.contentWindow.document.body.appendChild(script1);
  8056. _iframe.contentWindow.document.body.appendChild(script2);
  8057. // _iframe.contentWindow.document.body.appendChild(script3);
  8058. _iframe.contentWindow.document.body.appendChild(script4);
  8059. };
  8060. }
  8061. _jie.onclick = async () => {
  8062. let text = ''
  8063. if (aTool == 1) {
  8064. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8065. } else if (aTool == 6) {
  8066. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8067. } else if (aTool == 3) {
  8068. text = await U.MD.D.I.getEditorContent(_iframe);
  8069. }
  8070. _loading.style.display = 'flex'
  8071. console.log(_loading);
  8072. var _ajs = _iframe.contentWindow.document.createElement("script");
  8073. _ajs.type = "text/javascript";
  8074. _ajs.innerHTML =
  8075. // 'console.log(' + _loading + ');\n' +
  8076. 'var _js = document.createElement("script");\n' +
  8077. '_js.type="text/javascript";\n' +
  8078. '_js.charset="UTF-8";\n' +
  8079. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8080. "_js.onload = function(){\n" +
  8081. ' var a = document.getElementsByTagName("img")\n' +
  8082. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8083. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8084. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8085. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8086. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8087. "beforeUpload_shishi(file," +
  8088. "'" +
  8089. _userid +
  8090. "'" +
  8091. ", " +
  8092. "'" +
  8093. _cid +
  8094. "'" +
  8095. ", " +
  8096. "'" +
  8097. _stage +
  8098. "'" +
  8099. ", " +
  8100. "'" +
  8101. _task +
  8102. "'" +
  8103. ", " +
  8104. "'" +
  8105. _tool +
  8106. "'" +
  8107. ", " +
  8108. "'" +
  8109. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8110. "'" +
  8111. ", " +
  8112. "'" +
  8113. aTool +
  8114. "'" +
  8115. ", " +
  8116. "`" +
  8117. text +
  8118. "`" +
  8119. ")\n" +
  8120. " });\n" +
  8121. "}\n" +
  8122. "document.head.appendChild(_js);\n";
  8123. _iframe.contentWindow.document.head.appendChild(_ajs);
  8124. }
  8125. }
  8126. //U.MD.D.I.openClick(str);
  8127. //如果有任务栏信息
  8128. // if (_taskbar) {
  8129. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8130. // }
  8131. }
  8132. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8133. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8134. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8135. _userid = student.userid, //登录用户id
  8136. _username = student.student //用户名字
  8137. let _iframe;
  8138. let _cid = cid,
  8139. _stage = stage,
  8140. _task = task,
  8141. _tool = tool;
  8142. var _jie = $$("div", {
  8143. "style": {
  8144. "position": "absolute",
  8145. "bottom": "50px",
  8146. "right": "50px",
  8147. "zIndex": "9999",
  8148. "backgroundColor": "#2268bc",
  8149. "color": "#fff",
  8150. "padding": "12px 20px",
  8151. "cursor": "pointer",
  8152. "borderRadius": "4px",
  8153. },
  8154. "innerHTML": "提交作业"
  8155. })
  8156. let aTool = ''
  8157. let _loading = document.createElement('div')
  8158. _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;"
  8159. // _loading.id = "";
  8160. let _lchild = document.createElement('div')
  8161. let _limg = document.createElement('img')
  8162. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8163. _limg.style = "width: 26px;margin-right: 10px;"
  8164. _lchild.appendChild(_limg)
  8165. let _lspan = document.createElement('span')
  8166. _lspan.innerHTML = "上传中..."
  8167. _lchild.appendChild(_lspan)
  8168. _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%);"
  8169. _loading.appendChild(_lchild)
  8170. var _box = $$('div', {
  8171. "style": {
  8172. "position": "relative",
  8173. "width": "100%",
  8174. "height": "100%",
  8175. },
  8176. })
  8177. _box.appendChild(_loading)
  8178. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8179. switch (str) {
  8180. case "whiteboard":
  8181. aTool = 1;
  8182. _iframe = $$("iframe", {
  8183. "frameborder": "no",
  8184. "border": "0",
  8185. "scrolling ": "no",
  8186. "style": {
  8187. "cssText": "border:0;width:100%;height:100%"
  8188. },
  8189. "src": "https://beta.iwb.cocorobo.cn/"
  8190. })
  8191. _box.appendChild(_iframe);
  8192. _box.appendChild(_jie);
  8193. _formdiv = new U.UF.UI.form(
  8194. "电子白板-" + _username,
  8195. _box, {
  8196. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8197. "style": {
  8198. "width": "90%",
  8199. "height": "90%",
  8200. "overflow": 'hidden'
  8201. },
  8202. "onresize": function () { }
  8203. }, {
  8204. closecallback: function () { }
  8205. }, {
  8206. "style": {
  8207. "height": "36px"
  8208. }
  8209. }).form; //创建窗体
  8210. _taskbar = {
  8211. "id": str + _formdiv.id,
  8212. "style": {
  8213. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8214. },
  8215. "name": "电子白板",
  8216. "forms": _formdiv,
  8217. "click": function () {
  8218. U.MD.D.I.openApplication(str, obj, info);
  8219. }
  8220. }
  8221. break;
  8222. case "mind":
  8223. aTool = 3;
  8224. _iframe = $$("iframe", {
  8225. "frameborder": "no",
  8226. "border": "0",
  8227. "scrolling ": "no",
  8228. "style": {
  8229. "cssText": "border:0;width:100%;height:100%"
  8230. },
  8231. "src": "/kityminder-editor/dist/index.html"
  8232. })
  8233. _box.appendChild(_iframe);
  8234. _box.appendChild(_jie);
  8235. _formdiv = new U.UF.UI.form(
  8236. "思维导图-" + _username,
  8237. _box, { //"/jsmind/example/demo.html"
  8238. "id": "mind" + cid + stage + task + tool + _userid,
  8239. "style": {
  8240. "width": "90%",
  8241. "height": "90%",
  8242. "overflow": 'hidden'
  8243. },
  8244. "onresize": function () { }
  8245. }, {
  8246. closecallback: function () { }
  8247. }, {
  8248. "style": {
  8249. "height": "36px"
  8250. }
  8251. }).form; //创建窗体
  8252. _taskbar = {
  8253. "id": str + _formdiv.id,
  8254. "style": {
  8255. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8256. },
  8257. "name": "思维导图",
  8258. "forms": _formdiv,
  8259. "click": function () {
  8260. U.MD.D.I.openApplication(str, obj, info);
  8261. }
  8262. }
  8263. break;
  8264. case "MindMap":
  8265. aTool = 3;
  8266. _iframe = $$("iframe", {
  8267. "frameborder": "no",
  8268. "border": "0",
  8269. "scrolling ": "no",
  8270. "style": {
  8271. "cssText": "border:0;width:100%;height:100%"
  8272. },
  8273. "src": "//cloud.cocorobo.cn/mind/"
  8274. })
  8275. _box.appendChild(_iframe);
  8276. _box.appendChild(_jie);
  8277. _formdiv = new U.UF.UI.form(
  8278. "思维导图-" + _username,
  8279. _box, { //"/jsmind/example/demo.html"
  8280. "id": "mind" + cid + stage + task + tool + _userid,
  8281. "style": {
  8282. "width": "90%",
  8283. "height": "90%",
  8284. "overflow": 'hidden'
  8285. },
  8286. "onresize": function () { }
  8287. }, {
  8288. closecallback: function () { }
  8289. }, {
  8290. "style": {
  8291. "height": "36px"
  8292. }
  8293. }).form; //创建窗体
  8294. _taskbar = {
  8295. "id": str + _formdiv.id,
  8296. "style": {
  8297. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8298. },
  8299. "name": "思维导图",
  8300. "forms": _formdiv,
  8301. "click": function () {
  8302. U.MD.D.I.openApplication(str, obj, info);
  8303. }
  8304. }
  8305. break;
  8306. case "doc":
  8307. aTool = 6;
  8308. _iframe = $$("iframe", {
  8309. "frameborder": "no",
  8310. "border": "0",
  8311. "scrolling ": "no",
  8312. "style": {
  8313. "cssText": "border:0;width:100%;height:100%"
  8314. },
  8315. "src": "/Office/Word/WordEditArea.htm"
  8316. })
  8317. _box.appendChild(_iframe);
  8318. _box.appendChild(_jie);
  8319. _formdiv = new U.UF.UI.form(
  8320. "协同文档-" + _username,
  8321. _box, {
  8322. "id": "doc" + cid + stage + task + tool + _userid,
  8323. "style": {
  8324. "width": "90%",
  8325. "height": "90%",
  8326. "overflow": 'hidden'
  8327. },
  8328. "onresize": function () { }
  8329. }, {
  8330. closecallback: function () { }
  8331. }, {
  8332. "style": {
  8333. "height": "36px"
  8334. }
  8335. }).form; //创建窗体
  8336. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8337. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8338. })
  8339. _taskbar = {
  8340. "id": str + _formdiv.id,
  8341. "style": {
  8342. "backgroundImage": "url(/img/icon/doc.png)"
  8343. },
  8344. "name": "协同文档",
  8345. "forms": _formdiv,
  8346. "click": function () {
  8347. U.MD.D.I.openApplication(str, obj, info);
  8348. }
  8349. }
  8350. break;
  8351. case "mindNetwork": //好友打开
  8352. aTool = 7;
  8353. _iframe = $$("iframe", {
  8354. "webkitallowfullscreen": "",
  8355. "mozallowfullscreen": "",
  8356. "allowfullscreen": "",
  8357. "frameborder": "no",
  8358. "border": "0",
  8359. "scrolling ": "no",
  8360. "style": {
  8361. "cssText": "border:0; width:100%; height:100%;"
  8362. },
  8363. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8364. })
  8365. _box.appendChild(_iframe);
  8366. _box.appendChild(_jie);
  8367. _formdiv = new U.UF.UI.form(
  8368. "思维网格-" + _username,
  8369. _box, {
  8370. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8371. "style": {
  8372. "width": "90%",
  8373. "height": "90%",
  8374. "overflow": 'hidden'
  8375. },
  8376. "onresize": function () { }
  8377. }, {
  8378. closecallback: function () { }
  8379. }, {
  8380. "style": {
  8381. "height": "36px"
  8382. }
  8383. }).form; //创建窗体
  8384. _taskbar = {
  8385. "id": str + _formdiv.id,
  8386. "style": {
  8387. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8388. },
  8389. "name": "思维网格",
  8390. "forms": _formdiv,
  8391. "click": function () {
  8392. U.MD.D.I.openApplication(str, obj, info);
  8393. }
  8394. }
  8395. break;
  8396. case "courseDesign":
  8397. _iframe = $$("iframe", {
  8398. "webkitallowfullscreen": "",
  8399. "mozallowfullscreen": "",
  8400. "allowfullscreen": "",
  8401. "frameborder": "no",
  8402. "border": "0",
  8403. "scrolling ": "no",
  8404. "style": {
  8405. "cssText": "border:0; width:100%; height:100%;"
  8406. },
  8407. "src": "/course-design-vue"
  8408. })
  8409. _box.appendChild(_iframe);
  8410. _box.appendChild(_jie);
  8411. _formdiv = new U.UF.UI.form(
  8412. "项目设计-" + _username,
  8413. _box, {
  8414. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8415. "style": {
  8416. "width": "90%",
  8417. "height": "90%",
  8418. "overflow": 'hidden'
  8419. },
  8420. "onresize": function () { }
  8421. }, {
  8422. closecallback: function () { }
  8423. }, {
  8424. "style": {
  8425. "height": "36px"
  8426. }
  8427. }).form; //创建窗体
  8428. _taskbar = {
  8429. "id": str + _formdiv.id,
  8430. "style": {
  8431. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8432. },
  8433. "name": "项目设计",
  8434. "forms": _formdiv,
  8435. "click": function () {
  8436. U.MD.D.I.openApplication(str, obj, info);
  8437. }
  8438. }
  8439. break;
  8440. }
  8441. const script1 = document.createElement("script");
  8442. script1.type = "text/javascript";
  8443. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8444. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8445. const script2 = document.createElement("script");
  8446. script2.type = "text/javascript";
  8447. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8448. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8449. const script3 = document.createElement("script");
  8450. script3.type = "text/javascript";
  8451. script3.charset = "UTF-8";
  8452. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8453. const script4 = document.createElement("script");
  8454. script4.type = "text/javascript";
  8455. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8456. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8457. if (_iframe) {
  8458. if (str == 'doc') {
  8459. _iframe = _formdiv.querySelector('iframe')
  8460. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8461. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8462. _iframe.contentWindow.document.body.appendChild(script1);
  8463. _iframe.contentWindow.document.body.appendChild(script2);
  8464. // _iframe.contentWindow.document.body.appendChild(script3);
  8465. _iframe.contentWindow.document.body.appendChild(script4);
  8466. })
  8467. if (onloadListener) {
  8468. _iframe.contentDocument.location.reload()
  8469. } else {
  8470. _iframe.contentDocument.location.reload()
  8471. }
  8472. } else if (str == 'courseDesign') {
  8473. U.UF.DL.iframeLoad(_iframe, function () {
  8474. // _iframe.contentWindow.U.MD.O.W.load();
  8475. // _iframe.contentWindow.document.body.appendChild(script1);
  8476. _iframe.contentWindow.document.body.appendChild(script2);
  8477. _iframe.contentWindow.document.body.appendChild(script4);
  8478. })
  8479. } else if (str == 'mind') {
  8480. _iframe = _formdiv.querySelector('iframe')
  8481. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8482. //
  8483. _iframe.contentWindow.document.body.appendChild(script1);
  8484. _iframe.contentWindow.document.body.appendChild(script2);
  8485. _iframe.contentWindow.document.body.appendChild(script4);
  8486. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8487. })
  8488. if (onloadListener) {
  8489. _iframe.contentDocument.location.reload()
  8490. } else {
  8491. _iframe.contentDocument.location.reload()
  8492. }
  8493. } else if (str == 'whiteboard') {
  8494. _iframe = _formdiv.querySelector('iframe')
  8495. let onloadListener = _iframe.onload = () => {
  8496. _iframe.contentWindow.document.body.appendChild(script1);
  8497. _iframe.contentWindow.document.body.appendChild(script2);
  8498. _iframe.contentWindow.document.body.appendChild(script4);
  8499. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8500. };
  8501. // if (onloadListener) {
  8502. // try {
  8503. // _iframe.src += "?cocorobo="+new Date().getTime()
  8504. // _iframe.contentWindow.document.location.reload()
  8505. // } catch (error) {
  8506. // }
  8507. // } else {
  8508. // _iframe.contentDocument.location.reload()
  8509. // }
  8510. } else {
  8511. _iframe.onload = () => {
  8512. _iframe.contentWindow.document.body.appendChild(script1);
  8513. _iframe.contentWindow.document.body.appendChild(script2);
  8514. // _iframe.contentWindow.document.body.appendChild(script3);
  8515. _iframe.contentWindow.document.body.appendChild(script4);
  8516. };
  8517. }
  8518. _jie.onclick = async () => {
  8519. let text = ''
  8520. if (aTool == 1) {
  8521. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8522. } else if (aTool == 6) {
  8523. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8524. } else if (aTool == 3) {
  8525. text = await U.MD.D.I.getEditorContent(_iframe);
  8526. }
  8527. _loading.style.display = 'flex'
  8528. console.log(_loading);
  8529. var _ajs = _iframe.contentWindow.document.createElement("script");
  8530. _ajs.type = "text/javascript";
  8531. _ajs.innerHTML =
  8532. // 'console.log(' + _loading + ');\n' +
  8533. 'var _js = document.createElement("script");\n' +
  8534. '_js.type="text/javascript";\n' +
  8535. '_js.charset="UTF-8";\n' +
  8536. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8537. "_js.onload = function(){\n" +
  8538. ' var a = document.getElementsByTagName("img")\n' +
  8539. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8540. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8541. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8542. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8543. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8544. "beforeUpload_shishi(file," +
  8545. "'" +
  8546. _userid +
  8547. "'" +
  8548. ", " +
  8549. "'" +
  8550. _cid +
  8551. "'" +
  8552. ", " +
  8553. "'" +
  8554. _stage +
  8555. "'" +
  8556. ", " +
  8557. "'" +
  8558. _task +
  8559. "'" +
  8560. ", " +
  8561. "'" +
  8562. _tool +
  8563. "'" +
  8564. ", " +
  8565. "'" +
  8566. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8567. "'" +
  8568. ", " +
  8569. "'" +
  8570. aTool +
  8571. "'" +
  8572. ", " +
  8573. "`" +
  8574. text +
  8575. "`" +
  8576. ")\n" +
  8577. " });\n" +
  8578. "}\n" +
  8579. "document.head.appendChild(_js);\n";
  8580. _iframe.contentWindow.document.head.appendChild(_ajs);
  8581. }
  8582. }
  8583. }
  8584. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8585. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8586. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8587. _userid = student.userid, //登录用户id
  8588. _username = student.student //用户名字
  8589. let _iframe;
  8590. let _cid = cid,
  8591. _stage = stage,
  8592. _task = task,
  8593. _tool = tool;
  8594. var _jie = $$("div", {
  8595. "style": {
  8596. "position": "absolute",
  8597. "bottom": "50px",
  8598. "right": "50px",
  8599. "zIndex": "9999",
  8600. "backgroundColor": "#2268bc",
  8601. "color": "#fff",
  8602. "padding": "12px 20px",
  8603. "cursor": "pointer",
  8604. "borderRadius": "4px",
  8605. },
  8606. "innerHTML": "提交作业"
  8607. })
  8608. let aTool = ''
  8609. let _loading = document.createElement('div')
  8610. _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;"
  8611. // _loading.id = "";
  8612. let _lchild = document.createElement('div')
  8613. let _limg = document.createElement('img')
  8614. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8615. _limg.style = "width: 26px;margin-right: 10px;"
  8616. _lchild.appendChild(_limg)
  8617. let _lspan = document.createElement('span')
  8618. _lspan.innerHTML = "上传中..."
  8619. _lchild.appendChild(_lspan)
  8620. _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%);"
  8621. _loading.appendChild(_lchild)
  8622. var _box = $$('div', {
  8623. "style": {
  8624. "position": "relative",
  8625. "width": "100%",
  8626. "height": "100%",
  8627. },
  8628. })
  8629. _box.appendChild(_loading)
  8630. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8631. switch (str) {
  8632. case "whiteboard":
  8633. aTool = 1;
  8634. _iframe = $$("iframe", {
  8635. "frameborder": "no",
  8636. "border": "0",
  8637. "scrolling ": "no",
  8638. "style": {
  8639. "cssText": "border:0;width:100%;height:100%"
  8640. },
  8641. "src": "https://beta.iwb.cocorobo.cn/"
  8642. })
  8643. _box.appendChild(_iframe);
  8644. _box.appendChild(_jie);
  8645. _formdiv = new U.UF.UI.form(
  8646. "电子白板-" + _username,
  8647. _box, {
  8648. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8649. "style": {
  8650. "width": "90%",
  8651. "height": "90%",
  8652. "overflow": 'hidden'
  8653. },
  8654. "onresize": function () { }
  8655. }, {
  8656. closecallback: function () { }
  8657. }, {
  8658. "style": {
  8659. "height": "36px"
  8660. }
  8661. }).form; //创建窗体
  8662. _taskbar = {
  8663. "id": str + _formdiv.id,
  8664. "style": {
  8665. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8666. },
  8667. "name": "电子白板",
  8668. "forms": _formdiv,
  8669. "click": function () {
  8670. U.MD.D.I.openApplication(str, obj, info);
  8671. }
  8672. }
  8673. break;
  8674. case "mind":
  8675. aTool = 3;
  8676. _iframe = $$("iframe", {
  8677. "frameborder": "no",
  8678. "border": "0",
  8679. "scrolling ": "no",
  8680. "style": {
  8681. "cssText": "border:0;width:100%;height:100%"
  8682. },
  8683. "src": "/kityminder-editor/dist/index.html"
  8684. })
  8685. _box.appendChild(_iframe);
  8686. _box.appendChild(_jie);
  8687. _formdiv = new U.UF.UI.form(
  8688. "思维导图-" + _username,
  8689. _box, { //"/jsmind/example/demo.html"
  8690. "id": "mind" + cid + stage + task + tool + _userid,
  8691. "style": {
  8692. "width": "90%",
  8693. "height": "90%",
  8694. "overflow": 'hidden'
  8695. },
  8696. "onresize": function () { }
  8697. }, {
  8698. closecallback: function () { }
  8699. }, {
  8700. "style": {
  8701. "height": "36px"
  8702. }
  8703. }).form; //创建窗体
  8704. _taskbar = {
  8705. "id": str + _formdiv.id,
  8706. "style": {
  8707. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8708. },
  8709. "name": "思维导图",
  8710. "forms": _formdiv,
  8711. "click": function () {
  8712. U.MD.D.I.openApplication(str, obj, info);
  8713. }
  8714. }
  8715. break;
  8716. case "MindMap":
  8717. aTool = 3;
  8718. _iframe = $$("iframe", {
  8719. "frameborder": "no",
  8720. "border": "0",
  8721. "scrolling ": "no",
  8722. "style": {
  8723. "cssText": "border:0;width:100%;height:100%"
  8724. },
  8725. "src": "//cloud.cocorobo.cn/mind/"
  8726. })
  8727. _box.appendChild(_iframe);
  8728. _box.appendChild(_jie);
  8729. _formdiv = new U.UF.UI.form(
  8730. "思维导图-" + _username,
  8731. _box, { //"/jsmind/example/demo.html"
  8732. "id": "mind" + cid + stage + task + tool + _userid,
  8733. "style": {
  8734. "width": "90%",
  8735. "height": "90%",
  8736. "overflow": 'hidden'
  8737. },
  8738. "onresize": function () { }
  8739. }, {
  8740. closecallback: function () { }
  8741. }, {
  8742. "style": {
  8743. "height": "36px"
  8744. }
  8745. }).form; //创建窗体
  8746. _taskbar = {
  8747. "id": str + _formdiv.id,
  8748. "style": {
  8749. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8750. },
  8751. "name": "思维导图",
  8752. "forms": _formdiv,
  8753. "click": function () {
  8754. U.MD.D.I.openApplication(str, obj, info);
  8755. }
  8756. }
  8757. break;
  8758. case "doc":
  8759. aTool = 6;
  8760. _iframe = $$("iframe", {
  8761. "frameborder": "no",
  8762. "border": "0",
  8763. "scrolling ": "no",
  8764. "style": {
  8765. "cssText": "border:0;width:100%;height:100%"
  8766. },
  8767. "src": "/Office/Word/WordEditArea.htm"
  8768. })
  8769. _box.appendChild(_iframe);
  8770. _box.appendChild(_jie);
  8771. _formdiv = new U.UF.UI.form(
  8772. "协同文档-" + _username,
  8773. _box, {
  8774. "id": "doc" + cid + stage + task + tool + _userid,
  8775. "style": {
  8776. "width": "90%",
  8777. "height": "90%",
  8778. "overflow": 'hidden'
  8779. },
  8780. "onresize": function () { }
  8781. }, {
  8782. closecallback: function () { }
  8783. }, {
  8784. "style": {
  8785. "height": "36px"
  8786. }
  8787. }).form; //创建窗体
  8788. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8789. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8790. })
  8791. _taskbar = {
  8792. "id": str + _formdiv.id,
  8793. "style": {
  8794. "backgroundImage": "url(/img/icon/doc.png)"
  8795. },
  8796. "name": "协同文档",
  8797. "forms": _formdiv,
  8798. "click": function () {
  8799. U.MD.D.I.openApplication(str, obj, info);
  8800. }
  8801. }
  8802. break;
  8803. case "mindNetwork": //好友打开
  8804. aTool = 7;
  8805. _iframe = $$("iframe", {
  8806. "webkitallowfullscreen": "",
  8807. "mozallowfullscreen": "",
  8808. "allowfullscreen": "",
  8809. "frameborder": "no",
  8810. "border": "0",
  8811. "scrolling ": "no",
  8812. "style": {
  8813. "cssText": "border:0; width:100%; height:100%;"
  8814. },
  8815. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8816. })
  8817. _box.appendChild(_iframe);
  8818. _box.appendChild(_jie);
  8819. _formdiv = new U.UF.UI.form(
  8820. "思维网格-" + _username,
  8821. _box, {
  8822. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8823. "style": {
  8824. "width": "90%",
  8825. "height": "90%",
  8826. "overflow": 'hidden'
  8827. },
  8828. "onresize": function () { }
  8829. }, {
  8830. closecallback: function () { }
  8831. }, {
  8832. "style": {
  8833. "height": "36px"
  8834. }
  8835. }).form; //创建窗体
  8836. _taskbar = {
  8837. "id": str + _formdiv.id,
  8838. "style": {
  8839. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8840. },
  8841. "name": "思维网格",
  8842. "forms": _formdiv,
  8843. "click": function () {
  8844. U.MD.D.I.openApplication(str, obj, info);
  8845. }
  8846. }
  8847. break;
  8848. case "courseDesign":
  8849. _iframe = $$("iframe", {
  8850. "webkitallowfullscreen": "",
  8851. "mozallowfullscreen": "",
  8852. "allowfullscreen": "",
  8853. "frameborder": "no",
  8854. "border": "0",
  8855. "scrolling ": "no",
  8856. "style": {
  8857. "cssText": "border:0; width:100%; height:100%;"
  8858. },
  8859. "src": "/course-design-vue"
  8860. })
  8861. _box.appendChild(_iframe);
  8862. _box.appendChild(_jie);
  8863. _formdiv = new U.UF.UI.form(
  8864. "项目设计-" + _username,
  8865. _box, {
  8866. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8867. "style": {
  8868. "width": "90%",
  8869. "height": "90%",
  8870. "overflow": 'hidden'
  8871. },
  8872. "onresize": function () { }
  8873. }, {
  8874. closecallback: function () { }
  8875. }, {
  8876. "style": {
  8877. "height": "36px"
  8878. }
  8879. }).form; //创建窗体
  8880. _taskbar = {
  8881. "id": str + _formdiv.id,
  8882. "style": {
  8883. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8884. },
  8885. "name": "项目设计",
  8886. "forms": _formdiv,
  8887. "click": function () {
  8888. U.MD.D.I.openApplication(str, obj, info);
  8889. }
  8890. }
  8891. break;
  8892. }
  8893. const script1 = document.createElement("script");
  8894. script1.type = "text/javascript";
  8895. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8896. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8897. const script2 = document.createElement("script");
  8898. script2.type = "text/javascript";
  8899. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8900. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8901. const script3 = document.createElement("script");
  8902. script3.type = "text/javascript";
  8903. script3.charset = "UTF-8";
  8904. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8905. const script4 = document.createElement("script");
  8906. script4.type = "text/javascript";
  8907. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8908. script4.src = window.origin + "/js/Common/jietu2E.js";
  8909. if (_iframe) {
  8910. if (str == 'doc') {
  8911. _iframe = _formdiv.querySelector('iframe')
  8912. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8913. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8914. _iframe.contentWindow.document.body.appendChild(script1);
  8915. _iframe.contentWindow.document.body.appendChild(script2);
  8916. // _iframe.contentWindow.document.body.appendChild(script3);
  8917. _iframe.contentWindow.document.body.appendChild(script4);
  8918. })
  8919. if (onloadListener) {
  8920. _iframe.contentDocument.location.reload()
  8921. } else {
  8922. _iframe.contentDocument.location.reload()
  8923. }
  8924. } else if (str == 'courseDesign') {
  8925. U.UF.DL.iframeLoad(_iframe, function () {
  8926. // _iframe.contentWindow.U.MD.O.W.load();
  8927. // _iframe.contentWindow.document.body.appendChild(script1);
  8928. _iframe.contentWindow.document.body.appendChild(script2);
  8929. _iframe.contentWindow.document.body.appendChild(script4);
  8930. })
  8931. } else if (str == 'mind') {
  8932. _iframe = _formdiv.querySelector('iframe')
  8933. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8934. //
  8935. _iframe.contentWindow.document.body.appendChild(script1);
  8936. _iframe.contentWindow.document.body.appendChild(script2);
  8937. _iframe.contentWindow.document.body.appendChild(script4);
  8938. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8939. })
  8940. if (onloadListener) {
  8941. _iframe.contentDocument.location.reload()
  8942. } else {
  8943. _iframe.contentDocument.location.reload()
  8944. }
  8945. } else if (str == 'whiteboard') {
  8946. _iframe = _formdiv.querySelector('iframe')
  8947. let onloadListener = _iframe.onload = () => {
  8948. _iframe.contentWindow.document.body.appendChild(script1);
  8949. _iframe.contentWindow.document.body.appendChild(script2);
  8950. _iframe.contentWindow.document.body.appendChild(script4);
  8951. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8952. };
  8953. // if (onloadListener) {
  8954. // try {
  8955. // _iframe.src += "?cocorobo="+new Date().getTime()
  8956. // _iframe.contentWindow.document.location.reload()
  8957. // } catch (error) {
  8958. // }
  8959. // } else {
  8960. // _iframe.contentDocument.location.reload()
  8961. // }
  8962. } else {
  8963. _iframe.onload = () => {
  8964. _iframe.contentWindow.document.body.appendChild(script1);
  8965. _iframe.contentWindow.document.body.appendChild(script2);
  8966. // _iframe.contentWindow.document.body.appendChild(script3);
  8967. _iframe.contentWindow.document.body.appendChild(script4);
  8968. };
  8969. }
  8970. _jie.onclick = async () => {
  8971. let text = ''
  8972. if (aTool == 1) {
  8973. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8974. } else if (aTool == 6) {
  8975. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8976. } else if (aTool == 3) {
  8977. text = await U.MD.D.I.getEditorContent(_iframe);
  8978. }
  8979. _loading.style.display = 'flex'
  8980. console.log(_loading);
  8981. var _ajs = _iframe.contentWindow.document.createElement("script");
  8982. _ajs.type = "text/javascript";
  8983. _ajs.innerHTML =
  8984. // 'console.log(' + _loading + ');\n' +
  8985. 'var _js = document.createElement("script");\n' +
  8986. '_js.type="text/javascript";\n' +
  8987. '_js.charset="UTF-8";\n' +
  8988. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8989. "_js.onload = function(){\n" +
  8990. ' var a = document.getElementsByTagName("img")\n' +
  8991. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8992. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8993. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8994. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8995. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8996. "beforeUpload_shishi(file," +
  8997. "'" +
  8998. _userid +
  8999. "'" +
  9000. ", " +
  9001. "'" +
  9002. _cid +
  9003. "'" +
  9004. ", " +
  9005. "'" +
  9006. _stage +
  9007. "'" +
  9008. ", " +
  9009. "'" +
  9010. _task +
  9011. "'" +
  9012. ", " +
  9013. "'" +
  9014. _tool +
  9015. "'" +
  9016. ", " +
  9017. "'" +
  9018. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9019. "'" +
  9020. ", " +
  9021. "'" +
  9022. aTool +
  9023. "'" +
  9024. ", " +
  9025. "`" +
  9026. text +
  9027. "`" +
  9028. ")\n" +
  9029. " });\n" +
  9030. "}\n" +
  9031. "document.head.appendChild(_js);\n";
  9032. _iframe.contentWindow.document.head.appendChild(_ajs);
  9033. }
  9034. }
  9035. }
  9036. U.MD.D.I.getEditorContent = function (iframe) {
  9037. return new Promise((resolve, reject) => {
  9038. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9039. console.log(content);
  9040. resolve(content)
  9041. });
  9042. });
  9043. }
  9044. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9045. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9046. // if (res.value[0].length > 0) {
  9047. // // resolve(res.value[0][0].text);
  9048. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9049. // $(fileInput).val('');
  9050. // });
  9051. // }
  9052. // }, [], { "type": "GET", "withCredentials": true });
  9053. var xmlhttp;
  9054. var Mac, Sn, DeviceId
  9055. if (window.XMLHttpRequest) {
  9056. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9057. xmlhttp = new XMLHttpRequest();
  9058. } else {
  9059. // IE6, IE5 浏览器执行代码
  9060. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9061. }
  9062. xmlhttp.onreadystatechange = function () {
  9063. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9064. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9065. // resolve(res.value[0][0].text);
  9066. if (type == '2') {
  9067. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9068. } else if (type == '3') {
  9069. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9070. }
  9071. } else {
  9072. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9073. }
  9074. }
  9075. }
  9076. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9077. xmlhttp.send();
  9078. }
  9079. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9080. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9081. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9082. _userinfo = US.userInfo, //登录用户信息
  9083. _userid = US.userInfo.userid //登录用户id
  9084. let _iframe;
  9085. let _cid = cid,
  9086. _stage = stage,
  9087. _task = task,
  9088. _tool = tool;
  9089. var _jie = $$("div", {
  9090. "style": {
  9091. "position": "absolute",
  9092. "bottom": "50px",
  9093. "right": "50px",
  9094. "zIndex": "9999",
  9095. "backgroundColor": "#2268bc",
  9096. "color": "#fff",
  9097. "padding": "12px 20px",
  9098. "cursor": "pointer",
  9099. "borderRadius": "4px",
  9100. },
  9101. "innerHTML": "确认并提交"
  9102. })
  9103. let aTool = ''
  9104. let _loading = document.createElement('div')
  9105. _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;"
  9106. // _loading.id = "";
  9107. let _lchild = document.createElement('div')
  9108. let _limg = document.createElement('img')
  9109. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9110. _limg.style = "width: 26px;margin-right: 10px;"
  9111. _lchild.appendChild(_limg)
  9112. let _lspan = document.createElement('span')
  9113. _lspan.innerHTML = "上传中..."
  9114. _lchild.appendChild(_lspan)
  9115. _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%);"
  9116. _loading.appendChild(_lchild)
  9117. var _box = $$('div', {
  9118. "style": {
  9119. "position": "relative",
  9120. "width": "100%",
  9121. "height": "100%",
  9122. },
  9123. })
  9124. _box.appendChild(_loading)
  9125. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9126. switch (str) {
  9127. case "whiteboard":
  9128. aTool = 1;
  9129. _iframe = $$("iframe", {
  9130. "frameborder": "no",
  9131. "border": "0",
  9132. "scrolling ": "no",
  9133. "style": {
  9134. "cssText": "border:0;width:100%;height:100%"
  9135. },
  9136. "src": "https://beta.iwb.cocorobo.cn/"
  9137. })
  9138. _box.appendChild(_iframe);
  9139. _box.appendChild(_jie);
  9140. _formdiv = new U.UF.UI.form(
  9141. "电子白板",
  9142. _box, {
  9143. "id": "whiteboards" + cid + stage + task + tool,
  9144. "style": {
  9145. "width": "90%",
  9146. "height": "90%",
  9147. "overflow": 'hidden'
  9148. },
  9149. "onresize": function () { }
  9150. }, {
  9151. closecallback: function () { }
  9152. }, {
  9153. "style": {
  9154. "height": "36px"
  9155. }
  9156. }).form; //创建窗体
  9157. _taskbar = {
  9158. "id": str + _formdiv.id,
  9159. "style": {
  9160. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9161. },
  9162. "name": "电子白板",
  9163. "forms": _formdiv,
  9164. "click": function () {
  9165. U.MD.D.I.openApplication(str, obj, info);
  9166. }
  9167. }
  9168. break;
  9169. case "mind":
  9170. aTool = 3;
  9171. _iframe = $$("iframe", {
  9172. "frameborder": "no",
  9173. "border": "0",
  9174. "scrolling ": "no",
  9175. "style": {
  9176. "cssText": "border:0;width:100%;height:100%"
  9177. },
  9178. "src": "/kityminder-editor/dist/index.html"
  9179. });
  9180. _box.appendChild(_iframe);
  9181. _box.appendChild(_jie);
  9182. _formdiv = new U.UF.UI.form(
  9183. "思维导图",
  9184. _box, { //"/jsmind/example/demo.html"
  9185. "id": "minds" + cid + stage + task + tool,
  9186. "style": {
  9187. "width": "90%",
  9188. "height": "90%",
  9189. "overflow": 'hidden'
  9190. },
  9191. "onresize": function () { }
  9192. }, {
  9193. closecallback: function () { }
  9194. }, {
  9195. "style": {
  9196. "height": "36px"
  9197. }
  9198. }).form; //创建窗体
  9199. _taskbar = {
  9200. "id": str + _formdiv.id,
  9201. "style": {
  9202. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9203. },
  9204. "name": "思维导图",
  9205. "forms": _formdiv,
  9206. "click": function () {
  9207. U.MD.D.I.openApplication(str, obj, info);
  9208. }
  9209. }
  9210. break;
  9211. case "doc":
  9212. aTool = 6;
  9213. _iframe = $$("iframe", {
  9214. "frameborder": "no",
  9215. "border": "0",
  9216. "scrolling ": "no",
  9217. "style": {
  9218. "cssText": "border:0;width:100%;height:100%"
  9219. },
  9220. "src": "/Office/Word/WordEditArea.htm"
  9221. })
  9222. _box.appendChild(_iframe);
  9223. _box.appendChild(_jie);
  9224. _formdiv = new U.UF.UI.form(
  9225. "协同文档",
  9226. _box, {
  9227. "id": "docs" + cid + stage + task + tool,
  9228. "style": {
  9229. "width": "90%",
  9230. "height": "90%",
  9231. "overflow": 'hidden'
  9232. },
  9233. "onresize": function () { }
  9234. }, {
  9235. closecallback: function () { }
  9236. }, {
  9237. "style": {
  9238. "height": "36px"
  9239. }
  9240. }).form; //创建窗体
  9241. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9242. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9243. })
  9244. _taskbar = {
  9245. "id": str + _formdiv.id,
  9246. "style": {
  9247. "backgroundImage": "url(/img/icon/doc.png)"
  9248. },
  9249. "name": "协同文档",
  9250. "forms": _formdiv,
  9251. "click": function () {
  9252. U.MD.D.I.openApplication(str, obj, info);
  9253. }
  9254. }
  9255. break;
  9256. }
  9257. const script1 = document.createElement("script");
  9258. script1.type = "text/javascript";
  9259. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9260. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9261. const script2 = document.createElement("script");
  9262. script2.type = "text/javascript";
  9263. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9264. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9265. const script3 = document.createElement("script");
  9266. script3.type = "text/javascript";
  9267. script3.charset = "UTF-8";
  9268. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9269. const script4 = document.createElement("script");
  9270. script4.type = "text/javascript";
  9271. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9272. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9273. if (_iframe) {
  9274. if (str == 'doc') {
  9275. _iframe = _formdiv.querySelector('iframe')
  9276. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9277. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9278. _iframe.contentWindow.document.body.appendChild(script1);
  9279. _iframe.contentWindow.document.body.appendChild(script2);
  9280. // _iframe.contentWindow.document.body.appendChild(script3);
  9281. _iframe.contentWindow.document.body.appendChild(script4);
  9282. })
  9283. if (onloadListener) {
  9284. _iframe.contentDocument.location.reload()
  9285. } else {
  9286. _iframe.contentDocument.location.reload()
  9287. }
  9288. } else if (str == 'mind') {
  9289. _iframe = _formdiv.querySelector('iframe')
  9290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9291. _iframe.contentWindow.document.body.appendChild(script1);
  9292. _iframe.contentWindow.document.body.appendChild(script2);
  9293. _iframe.contentWindow.document.body.appendChild(script4);
  9294. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9295. })
  9296. if (onloadListener) {
  9297. _iframe.contentDocument.location.reload()
  9298. } else {
  9299. _iframe.contentDocument.location.reload()
  9300. }
  9301. } else {
  9302. _iframe.onload = () => {
  9303. _iframe.contentWindow.document.body.appendChild(script1);
  9304. _iframe.contentWindow.document.body.appendChild(script2);
  9305. // _iframe.contentWindow.document.body.appendChild(script3);
  9306. _iframe.contentWindow.document.body.appendChild(script4);
  9307. };
  9308. }
  9309. _jie.onclick = async () => {
  9310. let text = ''
  9311. if (aTool == 6) {
  9312. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9313. } else if (aTool == 3) {
  9314. text = await U.MD.D.I.getEditorContent(_iframe);
  9315. }
  9316. _loading.style.display = 'flex'
  9317. console.log(_loading);
  9318. var _ajs = _iframe.contentWindow.document.createElement("script");
  9319. _ajs.type = "text/javascript";
  9320. _ajs.innerHTML =
  9321. // 'console.log(' + _loading + ');\n' +
  9322. 'var _js = document.createElement("script");\n' +
  9323. '_js.type="text/javascript";\n' +
  9324. '_js.charset="UTF-8";\n' +
  9325. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9326. "_js.onload = function(){\n" +
  9327. ' var a = document.getElementsByTagName("img")\n' +
  9328. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9329. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9330. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9331. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9332. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9333. "beforeUpload_shishi(file," +
  9334. "'" +
  9335. _userid +
  9336. "'" +
  9337. ", " +
  9338. "'" +
  9339. _cid +
  9340. "'" +
  9341. ", " +
  9342. "'" +
  9343. _stage +
  9344. "'" +
  9345. ", " +
  9346. "'" +
  9347. _task +
  9348. "'" +
  9349. ", " +
  9350. "'" +
  9351. _tool +
  9352. "'" +
  9353. ", " +
  9354. "'" +
  9355. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9356. "'" +
  9357. ", " +
  9358. "'" +
  9359. aTool +
  9360. "'" +
  9361. ", " +
  9362. "`" +
  9363. text +
  9364. "`" +
  9365. ")\n" +
  9366. " });\n" +
  9367. "}\n" +
  9368. "document.head.appendChild(_js);\n";
  9369. _iframe.contentWindow.document.head.appendChild(_ajs);
  9370. }
  9371. }
  9372. //U.MD.D.I.openClick(str);
  9373. //如果有任务栏信息
  9374. // if (_taskbar) {
  9375. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9376. // }
  9377. }
  9378. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9379. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9380. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9381. _userinfo = US.userInfo, //登录用户信息
  9382. _userid = US.userInfo.userid //登录用户id
  9383. let _iframe;
  9384. let _cid = cid,
  9385. _stage = stage,
  9386. _task = task,
  9387. _tool = tool;
  9388. var _jie = $$("div", {
  9389. "style": {
  9390. "position": "absolute",
  9391. "bottom": "50px",
  9392. "right": "50px",
  9393. "zIndex": "9999",
  9394. "backgroundColor": "#2268bc",
  9395. "color": "#fff",
  9396. "padding": "12px 20px",
  9397. "cursor": "pointer",
  9398. "borderRadius": "4px",
  9399. },
  9400. "innerHTML": "确认并提交"
  9401. })
  9402. let aTool = ''
  9403. let _loading = document.createElement('div')
  9404. _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;"
  9405. // _loading.id = "";
  9406. let _lchild = document.createElement('div')
  9407. let _limg = document.createElement('img')
  9408. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9409. _limg.style = "width: 26px;margin-right: 10px;"
  9410. _lchild.appendChild(_limg)
  9411. let _lspan = document.createElement('span')
  9412. _lspan.innerHTML = "上传中..."
  9413. _lchild.appendChild(_lspan)
  9414. _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%);"
  9415. _loading.appendChild(_lchild)
  9416. var _box = $$('div', {
  9417. "style": {
  9418. "position": "relative",
  9419. "width": "100%",
  9420. "height": "100%",
  9421. },
  9422. })
  9423. _box.appendChild(_loading)
  9424. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9425. switch (str) {
  9426. case "whiteboard":
  9427. aTool = 1;
  9428. _iframe = $$("iframe", {
  9429. "frameborder": "no",
  9430. "border": "0",
  9431. "scrolling ": "no",
  9432. "style": {
  9433. "cssText": "border:0;width:100%;height:100%"
  9434. },
  9435. "src": "https://beta.iwb.cocorobo.cn/"
  9436. })
  9437. _box.appendChild(_iframe);
  9438. _box.appendChild(_jie);
  9439. _formdiv = new U.UF.UI.form(
  9440. "电子白板",
  9441. _box, {
  9442. "id": "whiteboards" + cid + stage + task + tool,
  9443. "style": {
  9444. "width": "90%",
  9445. "height": "90%",
  9446. "overflow": 'hidden'
  9447. },
  9448. "onresize": function () { }
  9449. }, {
  9450. closecallback: function () { }
  9451. }, {
  9452. "style": {
  9453. "height": "36px"
  9454. }
  9455. }).form; //创建窗体
  9456. _taskbar = {
  9457. "id": str + _formdiv.id,
  9458. "style": {
  9459. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9460. },
  9461. "name": "电子白板",
  9462. "forms": _formdiv,
  9463. "click": function () {
  9464. U.MD.D.I.openApplication(str, obj, info);
  9465. }
  9466. }
  9467. break;
  9468. case "mind":
  9469. aTool = 3;
  9470. _iframe = $$("iframe", {
  9471. "frameborder": "no",
  9472. "border": "0",
  9473. "scrolling ": "no",
  9474. "style": {
  9475. "cssText": "border:0;width:100%;height:100%"
  9476. },
  9477. "src": "/kityminder-editor/dist/index.html"
  9478. });
  9479. _box.appendChild(_iframe);
  9480. _box.appendChild(_jie);
  9481. _formdiv = new U.UF.UI.form(
  9482. "思维导图",
  9483. _box, { //"/jsmind/example/demo.html"
  9484. "id": "minds" + cid + stage + task + tool,
  9485. "style": {
  9486. "width": "90%",
  9487. "height": "90%",
  9488. "overflow": 'hidden'
  9489. },
  9490. "onresize": function () { }
  9491. }, {
  9492. closecallback: function () { }
  9493. }, {
  9494. "style": {
  9495. "height": "36px"
  9496. }
  9497. }).form; //创建窗体
  9498. _taskbar = {
  9499. "id": str + _formdiv.id,
  9500. "style": {
  9501. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9502. },
  9503. "name": "思维导图",
  9504. "forms": _formdiv,
  9505. "click": function () {
  9506. U.MD.D.I.openApplication(str, obj, info);
  9507. }
  9508. }
  9509. break;
  9510. case "doc":
  9511. aTool = 6;
  9512. _iframe = $$("iframe", {
  9513. "frameborder": "no",
  9514. "border": "0",
  9515. "scrolling ": "no",
  9516. "style": {
  9517. "cssText": "border:0;width:100%;height:100%"
  9518. },
  9519. "src": "/Office/Word/WordEditArea.htm"
  9520. })
  9521. _box.appendChild(_iframe);
  9522. _box.appendChild(_jie);
  9523. _formdiv = new U.UF.UI.form(
  9524. "协同文档",
  9525. _box, {
  9526. "id": "docs" + cid + stage + task + tool,
  9527. "style": {
  9528. "width": "90%",
  9529. "height": "90%",
  9530. "overflow": 'hidden'
  9531. },
  9532. "onresize": function () { }
  9533. }, {
  9534. closecallback: function () { }
  9535. }, {
  9536. "style": {
  9537. "height": "36px"
  9538. }
  9539. }).form; //创建窗体
  9540. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9541. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9542. })
  9543. _taskbar = {
  9544. "id": str + _formdiv.id,
  9545. "style": {
  9546. "backgroundImage": "url(/img/icon/doc.png)"
  9547. },
  9548. "name": "协同文档",
  9549. "forms": _formdiv,
  9550. "click": function () {
  9551. U.MD.D.I.openApplication(str, obj, info);
  9552. }
  9553. }
  9554. break;
  9555. }
  9556. const script1 = document.createElement("script");
  9557. script1.type = "text/javascript";
  9558. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9559. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9560. const script2 = document.createElement("script");
  9561. script2.type = "text/javascript";
  9562. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9563. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9564. const script3 = document.createElement("script");
  9565. script3.type = "text/javascript";
  9566. script3.charset = "UTF-8";
  9567. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9568. const script4 = document.createElement("script");
  9569. script4.type = "text/javascript";
  9570. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9571. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9572. if (_iframe) {
  9573. if (str == 'doc') {
  9574. _iframe = _formdiv.querySelector('iframe')
  9575. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9576. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9577. _iframe.contentWindow.document.body.appendChild(script1);
  9578. _iframe.contentWindow.document.body.appendChild(script2);
  9579. // _iframe.contentWindow.document.body.appendChild(script3);
  9580. _iframe.contentWindow.document.body.appendChild(script4);
  9581. })
  9582. if (onloadListener) {
  9583. _iframe.contentDocument.location.reload()
  9584. } else {
  9585. _iframe.contentDocument.location.reload()
  9586. }
  9587. } else if (str == 'mind') {
  9588. _iframe = _formdiv.querySelector('iframe')
  9589. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9590. _iframe.contentWindow.document.body.appendChild(script1);
  9591. _iframe.contentWindow.document.body.appendChild(script2);
  9592. _iframe.contentWindow.document.body.appendChild(script4);
  9593. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9594. })
  9595. if (onloadListener) {
  9596. _iframe.contentDocument.location.reload()
  9597. } else {
  9598. _iframe.contentDocument.location.reload()
  9599. }
  9600. } else {
  9601. _iframe.onload = () => {
  9602. _iframe.contentWindow.document.body.appendChild(script1);
  9603. _iframe.contentWindow.document.body.appendChild(script2);
  9604. // _iframe.contentWindow.document.body.appendChild(script3);
  9605. _iframe.contentWindow.document.body.appendChild(script4);
  9606. };
  9607. }
  9608. _jie.onclick = async () => {
  9609. let text = ''
  9610. if (aTool == 6) {
  9611. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9612. } else if (aTool == 3) {
  9613. text = await U.MD.D.I.getEditorContent(_iframe);
  9614. }
  9615. _loading.style.display = 'flex'
  9616. console.log(_loading);
  9617. var _ajs = _iframe.contentWindow.document.createElement("script");
  9618. _ajs.type = "text/javascript";
  9619. _ajs.innerHTML =
  9620. // 'console.log(' + _loading + ');\n' +
  9621. 'var _js = document.createElement("script");\n' +
  9622. '_js.type="text/javascript";\n' +
  9623. '_js.charset="UTF-8";\n' +
  9624. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9625. "_js.onload = function(){\n" +
  9626. ' var a = document.getElementsByTagName("img")\n' +
  9627. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9628. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9629. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9630. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9631. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9632. "beforeUpload_shishi(file," +
  9633. "'" +
  9634. _userid +
  9635. "'" +
  9636. ", " +
  9637. "'" +
  9638. _cid +
  9639. "'" +
  9640. ", " +
  9641. "'" +
  9642. _stage +
  9643. "'" +
  9644. ", " +
  9645. "'" +
  9646. _task +
  9647. "'" +
  9648. ", " +
  9649. "'" +
  9650. _tool +
  9651. "'" +
  9652. ", " +
  9653. "'" +
  9654. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9655. "'" +
  9656. ", " +
  9657. "'" +
  9658. aTool +
  9659. "'" +
  9660. ", " +
  9661. "`" +
  9662. text +
  9663. "`" +
  9664. ")\n" +
  9665. " });\n" +
  9666. "}\n" +
  9667. "document.head.appendChild(_js);\n";
  9668. _iframe.contentWindow.document.head.appendChild(_ajs);
  9669. }
  9670. }
  9671. //U.MD.D.I.openClick(str);
  9672. //如果有任务栏信息
  9673. // if (_taskbar) {
  9674. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9675. // }
  9676. }
  9677. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9678. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9679. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9680. _userinfo = US.userInfo, //登录用户信息
  9681. _userid = US.userInfo.userid //登录用户id
  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_Yu' + 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. "电子白板",
  9740. _box, {
  9741. "id": "whiteboards_Yu" + cid + stage + task + tool,
  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. "思维导图",
  9782. _box, { //"/jsmind/example/demo.html"
  9783. "id": "minds_Yu" + cid + stage + task + tool,
  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 "doc":
  9810. aTool = 6;
  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": "/Office/Word/WordEditArea.htm"
  9819. })
  9820. _box.appendChild(_iframe);
  9821. _box.appendChild(_jie);
  9822. _formdiv = new U.UF.UI.form(
  9823. "协同文档",
  9824. _box, {
  9825. "id": "docs_Yu" + cid + stage + task + tool,
  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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9840. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9841. })
  9842. _taskbar = {
  9843. "id": str + _formdiv.id,
  9844. "style": {
  9845. "backgroundImage": "url(/img/icon/doc.png)"
  9846. },
  9847. "name": "协同文档",
  9848. "forms": _formdiv,
  9849. "click": function () {
  9850. U.MD.D.I.openApplication(str, obj, info);
  9851. }
  9852. }
  9853. break;
  9854. case "CocoPi":
  9855. aTool = 57;
  9856. _iframe = $$("iframe", {
  9857. "allowpaymentrequest": "allowpaymentrequest",
  9858. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9859. "webkitallowfullscreen": "",
  9860. "mozallowfullscreen": "",
  9861. "frameborder": "no",
  9862. "border": "0",
  9863. "scrolling ": "no",
  9864. "style": {
  9865. "cssText": "border:0;width:100%;height:100%"
  9866. },
  9867. "src": "https://pi.cocorobo.cn/"
  9868. })
  9869. _box.appendChild(_iframe);
  9870. _box.appendChild(_jie);
  9871. _formdiv = new U.UF.UI.form(
  9872. "CocoPi",
  9873. _box, {
  9874. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9875. "style": {
  9876. "width": "90%",
  9877. "height": "90%",
  9878. "overflow": 'hidden'
  9879. },
  9880. "onresize": function () { }
  9881. }, {
  9882. closecallback: function () { }
  9883. }, {
  9884. "style": {
  9885. "height": "36px"
  9886. }
  9887. }).form; //创建窗体
  9888. _taskbar = {
  9889. "id": str + _formdiv.id,
  9890. "style": {
  9891. "backgroundImage": "url(/img/icon/cocopi.png)"
  9892. },
  9893. "name": "CocoPi",
  9894. "forms": _formdiv,
  9895. "click": function () {
  9896. U.MD.D.I.openApplication(str, obj, info);
  9897. }
  9898. }
  9899. break;
  9900. }
  9901. if (_iframe) {
  9902. if (str == 'doc') {
  9903. _iframe = _formdiv.querySelector('iframe')
  9904. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9905. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9906. })
  9907. if (onloadListener) {
  9908. _iframe.contentDocument.location.reload()
  9909. } else {
  9910. _iframe.contentDocument.location.reload()
  9911. }
  9912. } else if (str == 'mind') {
  9913. _iframe = _formdiv.querySelector('iframe')
  9914. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9915. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9916. })
  9917. if (onloadListener) {
  9918. _iframe.contentDocument.location.reload()
  9919. } else {
  9920. _iframe.contentDocument.location.reload()
  9921. }
  9922. } else if (str == 'whiteboard') {
  9923. _iframe = _formdiv.querySelector('iframe')
  9924. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9925. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9926. })
  9927. // if (onloadListener) {
  9928. // try {
  9929. // _iframe.src += "?cocorobo="+new Date().getTime()
  9930. // _iframe.contentWindow.document.location.reload()
  9931. // } catch (error) {
  9932. // }
  9933. // } else {
  9934. // _iframe.contentDocument.location.reload()
  9935. // }
  9936. } else if (str == 'CocoPi') {
  9937. _iframe = _formdiv.querySelector('iframe')
  9938. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9939. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9940. })
  9941. if (onloadListener) {
  9942. _iframe.contentDocument.location.reload()
  9943. } else {
  9944. _iframe.contentDocument.location.reload()
  9945. }
  9946. } else {
  9947. _iframe.onload = () => { };
  9948. }
  9949. _jie.onclick = async () => {
  9950. let text = ''
  9951. let type = '2'
  9952. if (aTool == 1) {
  9953. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9954. type = '3'
  9955. } else if (aTool == 6) {
  9956. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9957. type = '1'
  9958. } else if (aTool == 3) {
  9959. text = await U.MD.D.I.getEditorContent(_iframe);
  9960. type = '2'
  9961. } else if (aTool == 57) {
  9962. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9963. type = '4'
  9964. }
  9965. _loading.style.display = 'flex'
  9966. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9967. }
  9968. }
  9969. //U.MD.D.I.openClick(str);
  9970. //如果有任务栏信息
  9971. // if (_taskbar) {
  9972. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9973. // }
  9974. }
  9975. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9976. var xmlhttp;
  9977. var Mac, Sn, DeviceId
  9978. if (window.XMLHttpRequest) {
  9979. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9980. xmlhttp = new XMLHttpRequest();
  9981. } else {
  9982. // IE6, IE5 浏览器执行代码
  9983. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9984. }
  9985. xmlhttp.onreadystatechange = function () {
  9986. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9987. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9988. // resolve(res.value[0][0].text);
  9989. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9990. }
  9991. }
  9992. }
  9993. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9994. xmlhttp.send();
  9995. }
  9996. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9997. var xmlhttp;
  9998. var Mac, Sn, DeviceId
  9999. if (window.XMLHttpRequest) {
  10000. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10001. xmlhttp = new XMLHttpRequest();
  10002. } else {
  10003. // IE6, IE5 浏览器执行代码
  10004. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10005. }
  10006. xmlhttp.onreadystatechange = function () {
  10007. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10008. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10009. // resolve(res.value[0][0].text);
  10010. if (type == '2') {
  10011. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10012. } else if (type == '3') {
  10013. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10014. } else if (type == '4') {
  10015. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10016. }
  10017. } else {
  10018. if (type == '2') {
  10019. iframe.contentWindow.editor.minder.importData('json', '')
  10020. } else if (type == '3') {
  10021. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10022. } else if (type == '4') {
  10023. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10024. }
  10025. }
  10026. }
  10027. }
  10028. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10029. xmlhttp.send();
  10030. }
  10031. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10032. var xmlhttp;
  10033. var Mac, Sn, DeviceId
  10034. if (window.XMLHttpRequest) {
  10035. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10036. xmlhttp = new XMLHttpRequest();
  10037. } else {
  10038. // IE6, IE5 浏览器执行代码
  10039. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10040. }
  10041. xmlhttp.onreadystatechange = function () {
  10042. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10043. if (xmlhttp.response) {
  10044. // resolve(res.value[0][0].text);
  10045. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10046. // $(fileInput).val('');
  10047. // });
  10048. span.innerHTML = '上传成功'
  10049. setTimeout(() => {
  10050. loading.style.display = 'none'
  10051. }, 1000);
  10052. }
  10053. }
  10054. }
  10055. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10056. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10057. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10058. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10059. // 设置请求头,表示请求体的编码格式
  10060. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10061. // 设置请求体,使用url-encoded格式的数据
  10062. }
  10063. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10064. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10065. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10066. _userinfo = US.userInfo, //登录用户信息
  10067. _userid = US.userInfo.userid //登录用户id
  10068. let _iframe;
  10069. let _cid = cid,
  10070. _stage = stage,
  10071. _task = task,
  10072. _tool = tool;
  10073. var _jie = $$("div", {
  10074. "style": {
  10075. "position": "absolute",
  10076. "bottom": "50px",
  10077. "right": "50px",
  10078. "zIndex": "9999",
  10079. "backgroundColor": "#2268bc",
  10080. "color": "#fff",
  10081. "padding": "12px 20px",
  10082. "cursor": "pointer",
  10083. "borderRadius": "4px",
  10084. },
  10085. "innerHTML": "提交作业"
  10086. })
  10087. let aTool = ''
  10088. let _loading = document.createElement('div')
  10089. _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;"
  10090. // _loading.id = "";
  10091. let _lchild = document.createElement('div')
  10092. let _limg = document.createElement('img')
  10093. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10094. _limg.style = "width: 26px;margin-right: 10px;"
  10095. _lchild.appendChild(_limg)
  10096. let _lspan = document.createElement('span')
  10097. _lspan.innerHTML = "上传中..."
  10098. _lchild.appendChild(_lspan)
  10099. _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%);"
  10100. _loading.appendChild(_lchild)
  10101. var _box = $$('div', {
  10102. "style": {
  10103. "position": "relative",
  10104. "width": "100%",
  10105. "height": "100%",
  10106. },
  10107. })
  10108. _box.appendChild(_loading)
  10109. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10110. switch (str) {
  10111. case "CocoPi":
  10112. aTool = 57;
  10113. _iframe = $$("iframe", {
  10114. "allowpaymentrequest": "allowpaymentrequest",
  10115. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10116. "webkitallowfullscreen": "",
  10117. "mozallowfullscreen": "",
  10118. "frameborder": "no",
  10119. "border": "0",
  10120. "scrolling ": "no",
  10121. "style": {
  10122. "cssText": "border:0;width:100%;height:100%"
  10123. },
  10124. "src": "https://pi.cocorobo.cn/"
  10125. })
  10126. _box.appendChild(_iframe);
  10127. _box.appendChild(_jie);
  10128. _formdiv = new U.UF.UI.form(
  10129. "CocoPi",
  10130. _box, {
  10131. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10132. "style": {
  10133. "width": "90%",
  10134. "height": "90%",
  10135. "overflow": 'hidden'
  10136. },
  10137. "onresize": function () { }
  10138. }, {
  10139. closecallback: function () { }
  10140. }, {
  10141. "style": {
  10142. "height": "36px"
  10143. }
  10144. }).form; //创建窗体
  10145. _taskbar = {
  10146. "id": str + _formdiv.id,
  10147. "style": {
  10148. "backgroundImage": "url(/img/icon/cocopi.png)"
  10149. },
  10150. "name": "CocoPi",
  10151. "forms": _formdiv,
  10152. "click": function () {
  10153. U.MD.D.I.openApplication(str, obj, info);
  10154. }
  10155. }
  10156. break;
  10157. }
  10158. if (_iframe) {
  10159. if (str == 'CocoPi') {
  10160. _iframe = _formdiv.querySelector('iframe')
  10161. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10162. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10163. })
  10164. if (onloadListener) {
  10165. _iframe.contentDocument.location.reload()
  10166. } else {
  10167. _iframe.contentDocument.location.reload()
  10168. }
  10169. }
  10170. _jie.onclick = async () => {
  10171. let text = ''
  10172. if (aTool == 57) {
  10173. text = _iframe.contentWindow.getLoadXmlStr()
  10174. }
  10175. _loading.style.display = 'flex'
  10176. console.log(_loading);
  10177. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10178. _loading.style.display = 'none'
  10179. let _div = document.createElement('div')
  10180. _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;"
  10181. let _inner = document.createElement('div')
  10182. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10183. _inner.innerHTML = "上传成功"
  10184. _div.appendChild(_inner)
  10185. _iframe.contentWindow.window.document.body.appendChild(_div)
  10186. _div.onclick = () => {
  10187. _iframe.contentWindow.window.document.body.removeChild(_div)
  10188. }
  10189. setTimeout(() => {
  10190. _iframe.contentWindow.window.document.body.removeChild(_div)
  10191. }, 1000);
  10192. }, [], { "type": "POST", "withCredentials": true });
  10193. }
  10194. }
  10195. }
  10196. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10197. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10198. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10199. _userid = student.userid, //登录用户id
  10200. _username = student.student //用户名字
  10201. let _iframe;
  10202. let _cid = cid,
  10203. _stage = stage,
  10204. _task = task,
  10205. _tool = tool;
  10206. var _jie = $$("div", {
  10207. "style": {
  10208. "position": "absolute",
  10209. "bottom": "50px",
  10210. "right": "50px",
  10211. "zIndex": "9999",
  10212. "backgroundColor": "#2268bc",
  10213. "color": "#fff",
  10214. "padding": "12px 20px",
  10215. "cursor": "pointer",
  10216. "borderRadius": "4px",
  10217. },
  10218. "innerHTML": "提交作业"
  10219. })
  10220. let aTool = ''
  10221. let _loading = document.createElement('div')
  10222. _loading.style = "width:100%;height:100%;background:#00000000;position:absolute;top:0;left:0;z-index:99999999999999;display: none;justify-content: center;align-items: center;"
  10223. // _loading.id = "";
  10224. let _lchild = document.createElement('div')
  10225. let _limg = document.createElement('img')
  10226. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10227. _limg.style = "width: 26px;margin-right: 10px;"
  10228. _lchild.appendChild(_limg)
  10229. let _lspan = document.createElement('span')
  10230. _lspan.innerHTML = "上传中..."
  10231. _lchild.appendChild(_lspan)
  10232. _lchild.style = "color: rgb(255, 255, 255);padding: 15px;background: rgba(0, 0, 0, 0.44);font-size: 18px;display: flex;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);"
  10233. _loading.appendChild(_lchild)
  10234. var _box = $$('div', {
  10235. "style": {
  10236. "position": "relative",
  10237. "width": "100%",
  10238. "height": "100%",
  10239. },
  10240. })
  10241. _box.appendChild(_loading)
  10242. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10243. switch (str) {
  10244. case "CocoPi":
  10245. aTool = 57;
  10246. _iframe = $$("iframe", {
  10247. "allowpaymentrequest": "allowpaymentrequest",
  10248. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10249. "webkitallowfullscreen": "",
  10250. "mozallowfullscreen": "",
  10251. "frameborder": "no",
  10252. "border": "0",
  10253. "scrolling ": "no",
  10254. "style": {
  10255. "cssText": "border:0;width:100%;height:100%"
  10256. },
  10257. "src": "https://pi.cocorobo.cn/"
  10258. })
  10259. _box.appendChild(_iframe);
  10260. _box.appendChild(_jie);
  10261. _formdiv = new U.UF.UI.form(
  10262. "CocoPi-" + _username,
  10263. _box, {
  10264. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10265. "style": {
  10266. "width": "90%",
  10267. "height": "90%",
  10268. "overflow": 'hidden'
  10269. },
  10270. "onresize": function () { }
  10271. }, {
  10272. closecallback: function () { }
  10273. }, {
  10274. "style": {
  10275. "height": "36px"
  10276. }
  10277. }).form; //创建窗体
  10278. _taskbar = {
  10279. "id": str + _formdiv.id,
  10280. "style": {
  10281. "backgroundImage": "url(/img/icon/cocopi.png)"
  10282. },
  10283. "name": "CocoPi",
  10284. "forms": _formdiv,
  10285. "click": function () {
  10286. U.MD.D.I.openApplication(str, obj, info);
  10287. }
  10288. }
  10289. break;
  10290. }
  10291. if (_iframe) {
  10292. if (str == 'CocoPi') {
  10293. _iframe = _formdiv.querySelector('iframe')
  10294. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10295. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10296. })
  10297. if (onloadListener) {
  10298. _iframe.contentDocument.location.reload()
  10299. } else {
  10300. _iframe.contentDocument.location.reload()
  10301. }
  10302. }
  10303. _jie.onclick = async () => {
  10304. let text = ''
  10305. if (aTool == 57) {
  10306. text = _iframe.contentWindow.getLoadXmlStr()
  10307. }
  10308. _loading.style.display = 'flex'
  10309. console.log(_loading);
  10310. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10311. _loading.style.display = 'none'
  10312. let _div = document.createElement('div')
  10313. _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;"
  10314. let _inner = document.createElement('div')
  10315. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10316. _inner.innerHTML = "上传成功"
  10317. _div.appendChild(_inner)
  10318. _iframe.contentWindow.window.document.body.appendChild(_div)
  10319. _div.onclick = () => {
  10320. _iframe.contentWindow.window.document.body.removeChild(_div)
  10321. }
  10322. setTimeout(() => {
  10323. _iframe.contentWindow.window.document.body.removeChild(_div)
  10324. }, 1000);
  10325. }, [], { "type": "POST", "withCredentials": true });
  10326. }
  10327. }
  10328. }
  10329. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10330. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10331. if (res.value[0].length > 0) {
  10332. if (atool == 57) {
  10333. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10334. }
  10335. } else {
  10336. if (atool == 57) {
  10337. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10338. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10339. }
  10340. }
  10341. }, [], { "type": "POST", "withCredentials": true });
  10342. }