DeskTop.js 657 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532
  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. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  864. ];
  865. //dsei
  866. U.MD.D.I.dseiAdminDeskIcon = [
  867. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  868. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  869. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  870. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  871. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  872. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  876. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  877. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  878. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  879. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  880. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  881. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  882. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  883. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  884. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  885. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  886. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  887. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  888. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  889. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  890. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  891. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  892. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  893. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  894. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  895. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  896. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  897. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  898. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  899. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  900. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  901. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  902. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  903. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  904. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  907. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  908. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  909. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  910. ];
  911. //dsei
  912. U.MD.D.I.dseiStudentDeskIcon = [
  913. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  916. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  917. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  918. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  919. ];
  920. //未来教育基地
  921. U.MD.D.I.szjkyTeacherDeskIcon = [
  922. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  923. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  924. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  925. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  926. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  927. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  928. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  929. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  930. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  931. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  932. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  933. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  934. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  935. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  939. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  940. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  941. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  942. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  943. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  944. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  945. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  946. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  947. ];
  948. //未来教育基地
  949. U.MD.D.I.szjkyAdminDeskIcon = [
  950. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  951. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  952. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  953. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  954. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  955. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  956. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  957. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  958. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  959. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  960. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  961. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  962. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  963. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  967. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  968. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  969. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  970. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  971. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  972. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  973. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  974. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  975. ];
  976. //未来教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成华教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成华教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成华教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //盐田区幼儿园
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1221. ];
  1222. //盐田区幼儿园
  1223. U.MD.D.I.ytyStudentDeskIcon = [
  1224. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1225. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1226. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1227. ];
  1228. //scnuai
  1229. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1235. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1236. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1237. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1240. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1241. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1242. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1243. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1244. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1245. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1246. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1248. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1249. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1250. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1251. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1252. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1253. ];
  1254. //scnuai
  1255. U.MD.D.I.scnuaiAdminDeskIcon = [
  1256. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1257. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1258. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1259. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1260. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1261. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1262. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1263. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1264. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1265. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1266. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1267. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1272. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1273. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1274. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1275. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1276. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1277. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1278. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1279. ];
  1280. //scnuai
  1281. U.MD.D.I.scnuaiStudentDeskIcon = [
  1282. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1286. ];
  1287. //cocobiz
  1288. U.MD.D.I.cocobizteacherDeskIcon = [
  1289. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1290. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1291. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1292. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1298. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1299. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1300. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1301. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1302. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1303. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1305. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1307. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1308. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1309. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1310. ];
  1311. //cocobiz
  1312. U.MD.D.I.cocobizStudentDeskIcon = [
  1313. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1315. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1316. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. ];
  1320. //xxzjky
  1321. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1322. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1323. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1324. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1325. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1326. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1327. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1328. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1329. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1330. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1331. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1332. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1333. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1334. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1335. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1336. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1337. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1338. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1340. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1341. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1342. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1343. ];
  1344. //xxzjky
  1345. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1346. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1348. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1349. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1350. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1351. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1352. ];
  1353. //nsfx
  1354. U.MD.D.I.nsfxTeacherDeskIcon = [
  1355. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1356. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1358. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1359. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1360. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1361. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1362. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1363. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1364. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1365. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1366. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1367. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1368. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1369. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1370. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1371. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1372. ];
  1373. //nsfx
  1374. U.MD.D.I.nsfxStudentDeskIcon = [
  1375. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1376. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1377. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1378. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. ];
  1380. //stia
  1381. U.MD.D.I.stiaTeacherDeskIcon = [
  1382. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1383. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1385. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1386. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1387. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1388. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1395. ];
  1396. //stia
  1397. U.MD.D.I.stiaStudentDeskIcon = [
  1398. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgTeacherDeskIcon = [
  1405. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. ];
  1408. //szdjg
  1409. U.MD.D.I.szdjgStudentDeskIcon = [
  1410. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //010607
  1416. U.MD.D.I.x010607TeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1424. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1425. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1429. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1430. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1431. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1432. ];
  1433. //010607
  1434. U.MD.D.I.x010607StudentDeskIcon = [
  1435. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010608
  1441. U.MD.D.I.x010608TeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1452. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1453. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1454. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1455. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1456. ];
  1457. //010608
  1458. U.MD.D.I.x010608StudentDeskIcon = [
  1459. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1460. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1461. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. ];
  1464. //xhly
  1465. U.MD.D.I.xhlyTeacherDeskIcon = [
  1466. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.xhlyStudentDeskIcon = [
  1470. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. ];
  1472. //北师大
  1473. U.MD.D.I.BSDNSteacherDeskIcon = [
  1474. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1475. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1476. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1477. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1478. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1479. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1480. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1484. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1485. ];
  1486. //北师大
  1487. U.MD.D.I.BSDNSstudentDeskIcon = [
  1488. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //CUHK_EDU
  1494. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //CUHK_EDU
  1511. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503TeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1527. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1528. ];
  1529. //010503
  1530. U.MD.D.I.x010503StudentDeskIcon = [
  1531. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1538. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1539. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1541. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1547. ];
  1548. //SPROUT Lab
  1549. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1550. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1551. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. ];
  1554. //010204
  1555. U.MD.D.I.x010204TeacherDeskIcon = [
  1556. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1557. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. ];
  1559. //010204
  1560. U.MD.D.I.x010204StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //trail
  1567. U.MD.D.I.trailTeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. ];
  1571. //trail
  1572. U.MD.D.I.trailStudentDeskIcon = [
  1573. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1574. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1575. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1577. ];
  1578. //010504
  1579. U.MD.D.I.x010504TeacherDeskIcon = [
  1580. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1581. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1583. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1584. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1585. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1586. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1588. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1589. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1590. ];
  1591. //010504
  1592. U.MD.D.I.x010504StudentDeskIcon = [
  1593. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //SCNUET
  1599. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1605. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1606. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1607. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1608. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1609. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1610. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1611. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1612. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1613. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1614. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1616. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1620. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1623. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1624. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1625. ];
  1626. //SCNUET
  1627. U.MD.D.I.SCNUETAdminDeskIcon = [
  1628. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1629. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1630. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1632. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1633. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1634. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1635. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1636. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1637. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1638. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1639. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1640. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1641. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1642. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1643. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1644. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1645. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1646. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1647. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1648. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1649. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1650. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1651. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1652. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1653. ];
  1654. //SCNUET
  1655. U.MD.D.I.SCNUETStudentDeskIcon = [
  1656. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1659. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. ];
  1661. //x020201
  1662. U.MD.D.I.x020201TeacherDeskIcon = [
  1663. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1664. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1666. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1667. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1668. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1669. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1673. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1674. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1675. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1676. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //x020201
  1680. U.MD.D.I.x020201AdminDeskIcon = [
  1681. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1686. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1690. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1692. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1693. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1694. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1695. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1696. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1697. ];
  1698. //020201
  1699. U.MD.D.I.x020201StudentDeskIcon = [
  1700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1704. ];
  1705. //010611
  1706. U.MD.D.I.x010611TeacherDeskIcon = [
  1707. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1708. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1709. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1710. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1711. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1715. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1716. ];
  1717. //010611
  1718. U.MD.D.I.x010611StudentDeskIcon = [
  1719. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //tianyuan
  1725. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1726. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1729. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1730. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.tianyuanStudentDeskIcon = [
  1739. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1741. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. ];
  1744. //#region 桌面初始化a
  1745. /**
  1746. * 初始化桌面的起始函数
  1747. *
  1748. */
  1749. U.MD.D.I.init = function () {
  1750. if ($("#U_MD_D_K")[0]) {
  1751. //初始化桌面图标
  1752. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1753. // var clickUrl = ':12588/requestIp.php';
  1754. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1755. // U.MD.D.I.Ip = data;
  1756. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1757. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1758. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1759. // })
  1760. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1761. // })
  1762. }
  1763. }
  1764. /**
  1765. * 模式切换
  1766. *
  1767. */
  1768. U.MD.D.I.ModeCheck = function (type) {
  1769. if (US.Config.type == type) {
  1770. return
  1771. }
  1772. US.Config.type = type
  1773. $('.U_PBL_Check .active')[0].className = ''
  1774. if (type == 1) {
  1775. $('.U_PBL_Check div')[0].className = 'active'
  1776. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1777. } else {
  1778. $('.U_PBL_Check div')[1].className = 'active'
  1779. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1780. }
  1781. //初始化桌面图标
  1782. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1783. if (type == 2) {
  1784. U.MD.D.I.openApplication("project")
  1785. }
  1786. }
  1787. /**
  1788. * 隐藏任务栏
  1789. *
  1790. * @param {element} 桌面元素
  1791. */
  1792. U.MD.D.I.hiddenTaskbar = function (el) {
  1793. //任务栏位置变小
  1794. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1795. //桌面的位置变大
  1796. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1797. }
  1798. /**
  1799. * 隐藏任务栏
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbarout = function (el) {
  1804. //任务栏位置变小
  1805. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1806. //任务栏位置变化
  1807. U.selectEl(el).css({ "bottom": "-60px" });
  1808. //桌面的位置变大
  1809. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1810. }
  1811. }
  1812. /**
  1813. * 初始化打印桌面图标
  1814. *
  1815. * @param {element} 桌面元素
  1816. */
  1817. U.MD.D.I.initDesktopIcons = function (el, type) {
  1818. var i, //用于循环
  1819. _content, //桌面图标元素
  1820. _iconcontent, //桌面图标元素
  1821. _frag = $$("frag"), //定义一个碎片元素
  1822. _type = US.userInfo.type,
  1823. _org = US.userInfo.org,
  1824. _oid = US.userInfo.organizeid,
  1825. _role = US.userInfo.role,
  1826. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1827. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1828. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1829. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1830. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1831. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1832. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1833. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1834. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1835. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1836. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1837. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1838. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1839. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1840. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1841. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1842. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1843. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1844. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1845. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1846. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1847. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1848. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1849. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1850. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1851. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1852. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1853. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1854. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1855. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1856. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1857. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1858. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1859. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1860. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1861. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1862. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1863. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1864. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1865. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1866. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1867. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1868. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1869. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1870. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1871. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1872. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1873. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1874. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1875. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1876. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1877. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1878. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1879. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1880. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1881. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1882. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1883. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1884. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1885. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1886. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1887. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1888. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1889. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1890. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1891. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1892. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1893. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1894. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1895. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1896. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1897. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1898. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1899. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1900. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1901. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1902. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1903. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1904. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1905. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1906. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1907. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1908. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1909. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1910. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1911. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1912. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1913. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1914. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1915. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1916. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1917. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1918. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1919. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1920. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1921. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1922. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1923. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1924. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1925. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1926. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1927. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1928. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1929. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1930. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1931. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1932. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1933. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1934. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1935. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1936. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1937. 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'];
  1938. 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'];
  1939. //清楚桌面图标
  1940. el.innerHTML = "";
  1941. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1942. _teacherDesktopIconInfo.push(
  1943. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1944. { "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)" } },
  1945. )
  1946. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1947. }
  1948. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1949. _teacherDesktopIconInfo.push(
  1950. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1951. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1952. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1953. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1954. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1955. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1956. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1957. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1958. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1959. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1960. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1961. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1962. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1963. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1964. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1965. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1966. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1967. // { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1968. )
  1969. }
  1970. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1971. _teacherDesktopIconInfo.push(
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. )
  1974. }
  1975. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1976. // _teacherDesktopIconInfo.push(
  1977. // )
  1978. // }
  1979. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1980. _teacherDesktopIconInfo.push(
  1981. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1982. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1983. )
  1984. }
  1985. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1986. _teacherDesktopIconInfo.push(
  1987. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1989. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1990. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1991. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1992. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1993. )
  1994. _studentDesktopIconInfo.push(
  1995. )
  1996. }
  1997. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1998. _teacherDesktopIconInfo.push(
  1999. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2000. )
  2001. _studentDesktopIconInfo.push(
  2002. )
  2003. }
  2004. //010606 组织
  2005. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2006. _teacherDesktopIconInfo.push(
  2007. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2008. )
  2009. _studentDesktopIconInfo.push(
  2010. )
  2011. }
  2012. //麒麟二中 和 民新小学
  2013. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2014. _teacherDesktopIconInfo.push(
  2015. )
  2016. }
  2017. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2018. _teacherDesktopIconInfo.push(
  2019. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2020. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2021. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2022. )
  2023. }
  2024. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2025. _hkTeacherDeskIconInfo.push(
  2026. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2027. )
  2028. }
  2029. //北师大附中(010601)
  2030. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2031. // _teacherDesktopIconInfo.push(
  2032. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2033. // )
  2034. // _studentDesktopIconInfo.push(
  2035. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. // )
  2037. // }
  2038. //樂善堂余近卿中學
  2039. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2040. _teacherDesktopIconInfo.push(
  2041. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. )
  2043. }
  2044. // Education Artificial Intelligence
  2045. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. )
  2049. }
  2050. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2056. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2057. _teacherDesktopIconInfo.push(
  2058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2060. )
  2061. }
  2062. //麒麟二中
  2063. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2064. _studentDesktopIconInfo.push(
  2065. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2066. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2067. )
  2068. }
  2069. //万科双语
  2070. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2071. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2072. if (el.Name == '项目管理') {
  2073. el.Name = 'PBL项目'
  2074. }
  2075. return el
  2076. })
  2077. _studentDesktopIconInfo3.push(
  2078. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2079. )
  2080. }
  2081. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2082. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2083. return el.Name != '魔盒识字' && el.Name != '24点'
  2084. })
  2085. }
  2086. 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) {
  2087. _studentDesktopIconInfo.push(
  2088. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2089. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2090. )
  2091. }
  2092. //循环创建桌面图标
  2093. if (type == 1) {
  2094. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2095. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_studentDesktopIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_studentDesktopIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2112. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_hkZJLSStudentDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2127. } //
  2128. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2129. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_ytyStudentDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_ytyStudentDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2144. } //
  2145. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2146. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_jccssylStudentDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_jccssylStudentDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2163. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_scnuaiStudentDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_scnuaiStudentDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2180. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_caleStudentDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_caleStudentDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2195. }
  2196. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2197. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_thuioeStudentDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_thuioeStudentDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2214. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_tpcStudentDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_tpcStudentDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2229. } //
  2230. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2231. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjStudentDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_chjyjStudentDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2248. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_szjkyStudentDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_szjkyStudentDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2265. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_x020201StudentDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_x020201StudentDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2282. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_SCNUETStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_SCNUETStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2299. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_dseiStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_dseiStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2316. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2333. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_nsfxStudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_nsfxStudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2350. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_stiaStudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_stiaStudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2367. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_szdjgStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_szdjgStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2384. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_x010607StudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_x010607StudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2401. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_xhlyStudentDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_xhlyStudentDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2418. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2435. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_x010503StudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_x010503StudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2452. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_x010504StudentDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_x010504StudentDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2469. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010204StudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_x010204StudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2486. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_trailStudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_trailStudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2503. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2520. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_x010608StudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_x010608StudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2537. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_x010611StudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_x010611StudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2554. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tianyuantudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_tianyuantudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2571. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_siesStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_siesStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2588. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_guzmsStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_guzmsStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2605. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_hkStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_hkStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2622. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_hkaceStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_hkaceStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2639. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_BSDNSstudentDesktopIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2656. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_cocobizStudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_cocobizStudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2673. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_xxzjkyStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2690. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_studentDesktopIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_studentDesktopIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2707. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_tcStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_tcStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2724. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szscStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_szscStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2741. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_studentDesktopIconInfo3[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_studentDesktopIconInfo3[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2758. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_studentDesktopIconInfo2[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_studentDesktopIconInfo2[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2773. }
  2774. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2775. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2776. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2777. continue
  2778. }
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_wanketeacherDesktopIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_wanketeacherDesktopIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2795. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_wankeAdminDesktopIconInfo[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_wankeAdminDesktopIconInfo[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2810. }
  2811. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2812. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2813. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2814. continue
  2815. }
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_scnuaiTeacherDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2832. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2833. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2834. continue
  2835. }
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_BSDNSteacherDesktopIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2852. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_scnuaiAdminDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_scnuaiAdminDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2869. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2870. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2871. continue
  2872. }
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_jccssylTeacherDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_jccssylTeacherDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2889. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2890. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2891. continue
  2892. }
  2893. _content = $$("div", {
  2894. className: "U_MD_D_KO",
  2895. "onmousedown": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_caleTeacherDeskIconInfo[i]]),
  2899. "onclick": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_caleTeacherDeskIconInfo[i]])
  2903. }, _frag); //
  2904. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2905. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2906. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2907. }
  2908. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2909. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2910. _content = $$("div", {
  2911. className: "U_MD_D_KO",
  2912. "onmousedown": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_tpcOrganizerDeskIconInfo[i]]),
  2916. "onclick": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_tpcOrganizerDeskIconInfo[i]])
  2920. }, _frag); //
  2921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2924. }
  2925. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2926. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2927. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2928. continue
  2929. }
  2930. _content = $$("div", {
  2931. className: "U_MD_D_KO",
  2932. "onmousedown": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_tpcTeacherDeskIconInfo[i]]),
  2936. "onclick": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_tpcTeacherDeskIconInfo[i]])
  2940. }, _frag); //
  2941. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2942. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2943. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2944. }
  2945. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2946. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2947. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2948. continue
  2949. }
  2950. _content = $$("div", {
  2951. className: "U_MD_D_KO",
  2952. "onmousedown": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_teacherDesktopIconInfo2[i]]),
  2956. "onclick": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_teacherDesktopIconInfo2[i]])
  2960. }, _frag); //
  2961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2964. }
  2965. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2966. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2967. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2968. continue
  2969. }
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_thuioeTeacherDeskIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_thuioeTeacherDeskIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2986. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2987. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2988. continue
  2989. }
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_lotechTeacherDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_lotechTeacherDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3004. }//
  3005. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3006. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3007. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3008. continue
  3009. }
  3010. _content = $$("div", {
  3011. className: "U_MD_D_KO",
  3012. "onmousedown": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3016. "onclick": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3020. }, _frag); //
  3021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3024. }
  3025. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3026. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3027. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3028. continue
  3029. }
  3030. _content = $$("div", {
  3031. className: "U_MD_D_KO",
  3032. "onmousedown": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_siesTeacherDeskIconInfo[i]]),
  3036. "onclick": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_siesTeacherDeskIconInfo[i]])
  3040. }, _frag); //
  3041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3044. }
  3045. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3046. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3047. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3048. continue
  3049. }
  3050. _content = $$("div", {
  3051. className: "U_MD_D_KO",
  3052. "onmousedown": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_guzmsTeacherDeskIconInfo[i]]),
  3056. "onclick": U.UF.C.closure(function (obj) {
  3057. //防止拖动图标即打开了桌面应用
  3058. U.MD.D.click(this, obj);
  3059. }, [_guzmsTeacherDeskIconInfo[i]])
  3060. }, _frag); //
  3061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3064. }
  3065. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3066. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3067. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3068. continue
  3069. }
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. "onmousedown": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_longhuaTeacherDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_longhuaTeacherDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3086. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3087. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3088. continue
  3089. }
  3090. _content = $$("div", {
  3091. className: "U_MD_D_KO",
  3092. "onmousedown": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_ytyTeacherDeskIconInfo[i]]),
  3096. "onclick": U.UF.C.closure(function (obj) {
  3097. //防止拖动图标即打开了桌面应用
  3098. U.MD.D.click(this, obj);
  3099. }, [_ytyTeacherDeskIconInfo[i]])
  3100. }, _frag); //
  3101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3104. }
  3105. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3106. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3107. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3108. continue
  3109. }
  3110. _content = $$("div", {
  3111. className: "U_MD_D_KO",
  3112. "onmousedown": U.UF.C.closure(function (obj) {
  3113. //防止拖动图标即打开了桌面应用
  3114. U.MD.D.click(this, obj);
  3115. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3116. "onclick": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_yunhaiTeacherDeskIconInfo[i]])
  3120. }, _frag); //
  3121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3124. } //_hkStudentDeskIconInfo
  3125. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3126. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3127. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3128. continue
  3129. }
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3146. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3147. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3148. continue
  3149. }
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_hkTeacherDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_hkTeacherDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3166. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3167. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3168. continue
  3169. }
  3170. _content = $$("div", {
  3171. className: "U_MD_D_KO",
  3172. "onmousedown": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_hkaceTeacherDeskIconInfo[i]]),
  3176. "onclick": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_hkaceTeacherDeskIconInfo[i]])
  3180. }, _frag); //
  3181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3184. }
  3185. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3186. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3187. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3188. continue
  3189. }
  3190. _content = $$("div", {
  3191. className: "U_MD_D_KO",
  3192. "onmousedown": U.UF.C.closure(function (obj) {
  3193. //防止拖动图标即打开了桌面应用
  3194. U.MD.D.click(this, obj);
  3195. }, [_cocobizTeacherDeskIconInfo[i]]),
  3196. "onclick": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_cocobizTeacherDeskIconInfo[i]])
  3200. }, _frag); //
  3201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3204. }
  3205. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3206. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3207. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3208. continue
  3209. }
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3226. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_gdjgAdminDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_gdjgAdminDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3243. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_gdjgTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_gdjgTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3263. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_szherTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_szherTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3283. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3284. _content = $$("div", {
  3285. className: "U_MD_D_KO",
  3286. "onmousedown": U.UF.C.closure(function (obj) {
  3287. //防止拖动图标即打开了桌面应用
  3288. U.MD.D.click(this, obj);
  3289. }, [_heyuannAdminDeskIconInfo[i]]),
  3290. "onclick": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_heyuannAdminDeskIconInfo[i]])
  3294. }, _frag); //
  3295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3298. }
  3299. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3300. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3301. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3302. continue
  3303. }
  3304. _content = $$("div", {
  3305. className: "U_MD_D_KO",
  3306. "onmousedown": U.UF.C.closure(function (obj) {
  3307. //防止拖动图标即打开了桌面应用
  3308. U.MD.D.click(this, obj);
  3309. }, [_heyuanTeacherDeskIconInfo[i]]),
  3310. "onclick": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_heyuanTeacherDeskIconInfo[i]])
  3314. }, _frag); //
  3315. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3316. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3317. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3318. } //
  3319. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3320. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3321. _content = $$("div", {
  3322. className: "U_MD_D_KO",
  3323. "onmousedown": U.UF.C.closure(function (obj) {
  3324. //防止拖动图标即打开了桌面应用
  3325. U.MD.D.click(this, obj);
  3326. }, [_dseiAdminDeskIconInfo[i]]),
  3327. "onclick": U.UF.C.closure(function (obj) {
  3328. //防止拖动图标即打开了桌面应用
  3329. U.MD.D.click(this, obj);
  3330. }, [_dseiAdminDeskIconInfo[i]])
  3331. }, _frag); //
  3332. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3333. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3334. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3335. }
  3336. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3337. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3338. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3339. continue
  3340. }
  3341. _content = $$("div", {
  3342. className: "U_MD_D_KO",
  3343. "onmousedown": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_dseiTeacherDeskIconInfo[i]]),
  3347. "onclick": U.UF.C.closure(function (obj) {
  3348. //防止拖动图标即打开了桌面应用
  3349. U.MD.D.click(this, obj);
  3350. }, [_dseiTeacherDeskIconInfo[i]])
  3351. }, _frag); //
  3352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3355. } //
  3356. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3357. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3358. _content = $$("div", {
  3359. className: "U_MD_D_KO",
  3360. "onmousedown": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_chjyjAdminDeskIconInfo[i]]),
  3364. "onclick": U.UF.C.closure(function (obj) {
  3365. //防止拖动图标即打开了桌面应用
  3366. U.MD.D.click(this, obj);
  3367. }, [_chjyjAdminDeskIconInfo[i]])
  3368. }, _frag); //
  3369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3372. }//
  3373. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3374. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3375. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3376. continue
  3377. }
  3378. _content = $$("div", {
  3379. className: "U_MD_D_KO",
  3380. "onmousedown": U.UF.C.closure(function (obj) {
  3381. //防止拖动图标即打开了桌面应用
  3382. U.MD.D.click(this, obj);
  3383. }, [_chjyjTeacherDeskIconInfo[i]]),
  3384. "onclick": U.UF.C.closure(function (obj) {
  3385. //防止拖动图标即打开了桌面应用
  3386. U.MD.D.click(this, obj);
  3387. }, [_chjyjTeacherDeskIconInfo[i]])
  3388. }, _frag); //
  3389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3392. }
  3393. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3394. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3395. _content = $$("div", {
  3396. className: "U_MD_D_KO",
  3397. "onmousedown": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_szjkyAdminDeskIconInfo[i]]),
  3401. "onclick": U.UF.C.closure(function (obj) {
  3402. //防止拖动图标即打开了桌面应用
  3403. U.MD.D.click(this, obj);
  3404. }, [_szjkyAdminDeskIconInfo[i]])
  3405. }, _frag); //
  3406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3409. }//
  3410. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3411. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3412. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3413. continue
  3414. }
  3415. _content = $$("div", {
  3416. className: "U_MD_D_KO",
  3417. "onmousedown": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_szjkyTeacherDeskIconInfo[i]]),
  3421. "onclick": U.UF.C.closure(function (obj) {
  3422. //防止拖动图标即打开了桌面应用
  3423. U.MD.D.click(this, obj);
  3424. }, [_szjkyTeacherDeskIconInfo[i]])
  3425. }, _frag); //
  3426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3429. }
  3430. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3431. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_x020201AdminDeskIconInfo[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_x020201AdminDeskIconInfo[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3446. }//
  3447. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3448. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3449. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_x020201TeacherDeskIconInfo[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_x020201TeacherDeskIconInfo[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3466. }
  3467. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3468. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_SCNUETAdminDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_SCNUETAdminDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3483. }//
  3484. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3485. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_SCNUETTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3505. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3506. _content = $$("div", {
  3507. className: "U_MD_D_KO",
  3508. "onmousedown": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_futianAdminDeskIconInfo[i]]),
  3512. "onclick": U.UF.C.closure(function (obj) {
  3513. //防止拖动图标即打开了桌面应用
  3514. U.MD.D.click(this, obj);
  3515. }, [_futianAdminDeskIconInfo[i]])
  3516. }, _frag); //
  3517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3520. }
  3521. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3522. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3523. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3524. continue
  3525. }
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_futianTeacherDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_futianTeacherDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3542. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3543. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_MingdeTeacherDeskIcon[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_MingdeTeacherDeskIcon[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3562. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3563. _content = $$("div", {
  3564. className: "U_MD_D_KO",
  3565. "onmousedown": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_lhsAdminDesktopIconInfo[i]]),
  3569. "onclick": U.UF.C.closure(function (obj) {
  3570. //防止拖动图标即打开了桌面应用
  3571. U.MD.D.click(this, obj);
  3572. }, [_lhsAdminDesktopIconInfo[i]])
  3573. }, _frag); //
  3574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3577. }
  3578. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3579. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3580. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3581. continue
  3582. }
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_lhsteacherDesktopIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_lhsteacherDesktopIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3599. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3600. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_zhoujiateacherDesktopIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3617. }
  3618. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3619. for (i = 0; i < _hanDeskIcon.length; i++) {
  3620. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3621. continue
  3622. }
  3623. _content = $$("div", {
  3624. className: "U_MD_D_KO",
  3625. "onmousedown": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_hanDeskIcon[i]]),
  3629. "onclick": U.UF.C.closure(function (obj) {
  3630. //防止拖动图标即打开了桌面应用
  3631. U.MD.D.click(this, obj);
  3632. }, [_hanDeskIcon[i]])
  3633. }, _frag); //
  3634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3637. }
  3638. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3639. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3640. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3641. continue
  3642. }
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_orgStemDeskIcon[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_orgStemDeskIcon[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3657. }
  3658. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3659. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3660. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3661. continue
  3662. }
  3663. _content = $$("div", {
  3664. className: "U_MD_D_KO",
  3665. "onmousedown": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_szulsDeskIcon[i]]),
  3669. "onclick": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_szulsDeskIcon[i]])
  3673. }, _frag); //
  3674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3677. }
  3678. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3679. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3680. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3681. continue
  3682. }
  3683. _content = $$("div", {
  3684. className: "U_MD_D_KO",
  3685. "onmousedown": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_orgDesktopIconInfo[i]]),
  3689. "onclick": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_orgDesktopIconInfo[i]])
  3693. }, _frag); //
  3694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3697. }
  3698. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3699. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3700. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3701. continue
  3702. }
  3703. _content = $$("div", {
  3704. className: "U_MD_D_KO",
  3705. "onmousedown": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_schoolDesktopIconInfo[i]]),
  3709. "onclick": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_schoolDesktopIconInfo[i]])
  3713. }, _frag); //
  3714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3717. }
  3718. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3719. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3720. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3721. continue
  3722. }
  3723. _content = $$("div", {
  3724. className: "U_MD_D_KO",
  3725. "onmousedown": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_GMteacherDesktopIconInfo[i]]),
  3729. "onclick": U.UF.C.closure(function (obj) {
  3730. //防止拖动图标即打开了桌面应用
  3731. U.MD.D.click(this, obj);
  3732. }, [_GMteacherDesktopIconInfo[i]])
  3733. }, _frag); //
  3734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3737. }
  3738. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3739. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3740. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3741. continue
  3742. }
  3743. _content = $$("div", {
  3744. className: "U_MD_D_KO",
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_SONGteacherDesktopIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖动图标即打开了桌面应用
  3751. U.MD.D.click(this, obj);
  3752. }, [_SONGteacherDesktopIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3757. }
  3758. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3759. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_GMstudentDesktopIconInfo[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖动图标即打开了桌面应用
  3768. U.MD.D.click(this, obj);
  3769. }, [_GMstudentDesktopIconInfo[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3774. }
  3775. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3776. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3777. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_tcTeacherDeskIconInfo[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖动图标即打开了桌面应用
  3788. U.MD.D.click(this, obj);
  3789. }, [_tcTeacherDeskIconInfo[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3796. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3797. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3798. continue
  3799. }
  3800. _content = $$("div", {
  3801. className: "U_MD_D_KO",
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_tcOrganizerDeskIconInfo[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_tcOrganizerDeskIconInfo[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3814. }
  3815. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3816. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3817. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3818. continue
  3819. }
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_szscTeacherDeskIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_szscTeacherDeskIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3836. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3837. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_szscOrganizerDeskIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_szscOrganizerDeskIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3856. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3857. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_nsfxTeacherDeskIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_nsfxTeacherDeskIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3876. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3877. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_stiaTeacherDeskIconInfo[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_stiaTeacherDeskIconInfo[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3894. }
  3895. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3896. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3897. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3898. continue
  3899. }
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_szdjgTeacherDeskIconInfo[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_szdjgTeacherDeskIconInfo[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3916. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3917. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_x010607TeacherDeskIconInfo[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_x010607TeacherDeskIconInfo[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3934. }
  3935. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3936. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3937. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3938. continue
  3939. }
  3940. _content = $$("div", {
  3941. className: "U_MD_D_KO",
  3942. "onmousedown": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_xhlyTeacherDeskIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_xhlyTeacherDeskIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3956. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3957. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3958. continue
  3959. }
  3960. _content = $$("div", {
  3961. className: "U_MD_D_KO",
  3962. "onmousedown": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖动图标即打开了桌面应用
  3968. U.MD.D.click(this, obj);
  3969. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3974. }
  3975. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3976. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3977. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3978. continue
  3979. }
  3980. _content = $$("div", {
  3981. className: "U_MD_D_KO",
  3982. "onmousedown": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_x010503TeacherDeskIconInfo[i]]),
  3986. "onclick": U.UF.C.closure(function (obj) {
  3987. //防止拖动图标即打开了桌面应用
  3988. U.MD.D.click(this, obj);
  3989. }, [_x010503TeacherDeskIconInfo[i]])
  3990. }, _frag); //
  3991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3994. }
  3995. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3996. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3997. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3998. continue
  3999. }
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_x010504TeacherDeskIconInfo[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_x010504TeacherDeskIconInfo[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4014. }
  4015. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4016. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4017. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4018. continue
  4019. }
  4020. _content = $$("div", {
  4021. className: "U_MD_D_KO",
  4022. "onmousedown": U.UF.C.closure(function (obj) {
  4023. //防止拖动图标即打开了桌面应用
  4024. U.MD.D.click(this, obj);
  4025. }, [_x010204TeacherDeskIconInfo[i]]),
  4026. "onclick": U.UF.C.closure(function (obj) {
  4027. //防止拖动图标即打开了桌面应用
  4028. U.MD.D.click(this, obj);
  4029. }, [_x010204TeacherDeskIconInfo[i]])
  4030. }, _frag); //
  4031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4034. }
  4035. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4036. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4037. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4038. continue
  4039. }
  4040. _content = $$("div", {
  4041. className: "U_MD_D_KO",
  4042. "onmousedown": U.UF.C.closure(function (obj) {
  4043. //防止拖动图标即打开了桌面应用
  4044. U.MD.D.click(this, obj);
  4045. }, [_trailTeacherDeskIconInfo[i]]),
  4046. "onclick": U.UF.C.closure(function (obj) {
  4047. //防止拖动图标即打开了桌面应用
  4048. U.MD.D.click(this, obj);
  4049. }, [_trailTeacherDeskIconInfo[i]])
  4050. }, _frag); //
  4051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4054. }
  4055. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4056. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4057. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4058. continue
  4059. }
  4060. _content = $$("div", {
  4061. className: "U_MD_D_KO",
  4062. "onmousedown": U.UF.C.closure(function (obj) {
  4063. //防止拖动图标即打开了桌面应用
  4064. U.MD.D.click(this, obj);
  4065. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4066. "onclick": U.UF.C.closure(function (obj) {
  4067. //防止拖动图标即打开了桌面应用
  4068. U.MD.D.click(this, obj);
  4069. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4070. }, _frag); //
  4071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4074. }
  4075. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4076. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4077. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4078. continue
  4079. }
  4080. _content = $$("div", {
  4081. className: "U_MD_D_KO",
  4082. "onmousedown": U.UF.C.closure(function (obj) {
  4083. //防止拖动图标即打开了桌面应用
  4084. U.MD.D.click(this, obj);
  4085. }, [_x010608TeacherDeskIconInfo[i]]),
  4086. "onclick": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_x010608TeacherDeskIconInfo[i]])
  4090. }, _frag); //
  4091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4094. }
  4095. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4096. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4097. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4098. continue
  4099. }
  4100. _content = $$("div", {
  4101. className: "U_MD_D_KO",
  4102. "onmousedown": U.UF.C.closure(function (obj) {
  4103. //防止拖动图标即打开了桌面应用
  4104. U.MD.D.click(this, obj);
  4105. }, [_x010611TeacherDeskIconInfo[i]]),
  4106. "onclick": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_x010611TeacherDeskIconInfo[i]])
  4110. }, _frag); //
  4111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4114. }
  4115. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4116. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4117. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4118. continue
  4119. }
  4120. _content = $$("div", {
  4121. className: "U_MD_D_KO",
  4122. "onmousedown": U.UF.C.closure(function (obj) {
  4123. //防止拖动图标即打开了桌面应用
  4124. U.MD.D.click(this, obj);
  4125. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4126. "onclick": U.UF.C.closure(function (obj) {
  4127. //防止拖动图标即打开了桌面应用
  4128. U.MD.D.click(this, obj);
  4129. }, [_tianyuanTeacherDeskIconInfo[i]])
  4130. }, _frag); //
  4131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4134. }
  4135. } else {
  4136. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4137. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4138. continue
  4139. }
  4140. _content = $$("div", {
  4141. className: "U_MD_D_KO",
  4142. "onmousedown": U.UF.C.closure(function (obj) {
  4143. //防止拖动图标即打开了桌面应用
  4144. U.MD.D.click(this, obj);
  4145. }, [_teacherDesktopIconInfo[i]]),
  4146. "onclick": U.UF.C.closure(function (obj) {
  4147. //防止拖动图标即打开了桌面应用
  4148. U.MD.D.click(this, obj);
  4149. }, [_teacherDesktopIconInfo[i]])
  4150. }, _frag); //
  4151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4154. }
  4155. }
  4156. } else {
  4157. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. style: { 'width': '124px', 'height': '145px' },
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_easyDesktopIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_easyDesktopIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4173. }
  4174. }
  4175. if (type == 1) {
  4176. //加载好后给图标定位
  4177. U.MD.D.iconPostion($(_frag).Child());
  4178. } else {
  4179. //加载好后给图标定位
  4180. U.MD.D.iconPostion2($(_frag).Child());
  4181. }
  4182. //把图标加载到页面
  4183. el.appendChild(_frag);
  4184. }
  4185. /**
  4186. * 显示任务栏
  4187. *
  4188. * @param {element} 桌面元素
  4189. */
  4190. U.MD.D.I.displayTaskbar = function (el) {
  4191. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4192. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4193. //任务栏位置变化
  4194. U.selectEl(el).css({ "bottom": "0px" });
  4195. //桌面位置变话
  4196. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4197. }
  4198. }
  4199. //#region 桌面图标拖动逻辑
  4200. /**
  4201. * 桌面排列图标
  4202. *
  4203. * @param {element} 桌面元素
  4204. * @param {object} 上下相距的距离
  4205. * @param {object} 左右相距的距离
  4206. * @return {object} 命名空间
  4207. */
  4208. U.MD.D.iconPostion = function (childs, top, left) {
  4209. var i; //用于循环处理
  4210. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4211. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4212. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4213. for (i = 0; i < childs.length; i++) {
  4214. //如果竖排top超过了范围处理
  4215. if (top + 95 > US.height - 10) {
  4216. //left超过了页面范围处理,则向上重叠打印处理
  4217. if ((left + 180) > US.width) {
  4218. top -= 110;
  4219. left -= 90;
  4220. }
  4221. //没有超过范围,那么left+90添加到下一个竖排打印
  4222. else {
  4223. left += 90;
  4224. top = 15;
  4225. };
  4226. }
  4227. //给图标的位置赋值
  4228. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4229. if (i < childs.length - 1) {
  4230. //页面图标每次向下加95
  4231. top += 95;
  4232. }
  4233. }
  4234. //返回最后调用的图标的位置
  4235. return [top, left];
  4236. }
  4237. /**
  4238. * 桌面排列图标
  4239. *
  4240. * @param {element} 桌面元素
  4241. * @param {object} 上下相距的距离
  4242. * @param {object} 左右相距的距离
  4243. * @return {object} 命名空间
  4244. */
  4245. U.MD.D.iconPostion2 = function (childs, top, left) {
  4246. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4247. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4248. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4249. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4250. for (i = 0; i < childs.length; i++) {
  4251. //如果竖排top超过了范围处理
  4252. if (left + 150 > US.width - 10) {
  4253. //left超过了页面范围处理,则向上重叠打印处理
  4254. if ((top + 180) > US.Height) {
  4255. top -= 150;
  4256. left -= 150;
  4257. }
  4258. //没有超过范围,那么left+90添加到下一个竖排打印
  4259. else {
  4260. top += 150;
  4261. left = ol;
  4262. };
  4263. }
  4264. //给图标的位置赋值
  4265. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4266. if (i < childs.length - 1) {
  4267. //页面图标每次向下加95
  4268. left += 150;
  4269. }
  4270. }
  4271. //返回最后调用的图标的位置
  4272. return [top, left];
  4273. }
  4274. /**
  4275. * 桌面点击事件逻辑
  4276. *
  4277. * @param {element} 桌面元素
  4278. * @param {object} 上下相距的距离
  4279. * @param {object} 左右相距的距离
  4280. * @return {object} 命名空间
  4281. */
  4282. U.MD.D.click = function (el, obj) {
  4283. var _buttonnumber = event.button; //点击的按钮的事件值
  4284. var _userinfo = US.userInfo;
  4285. U.UF.EV.stopBubble(); //阻止向上冒泡
  4286. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4287. if (_buttonnumber < 2) {
  4288. //如果是click事件的处理
  4289. if (event.type == "click") {
  4290. //如果元素在mousemove事件中没有移动则出发click事件
  4291. if (!U.MD.D.I.IsDrag) {
  4292. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4293. U.alert("请先登录您的账号!");
  4294. setTimeout(() => {
  4295. U.MD.U.L.login();
  4296. }, 2000);
  4297. } else {
  4298. //打开应用处理
  4299. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4300. }
  4301. }
  4302. }
  4303. //如果是mouse事件的处理
  4304. else {
  4305. if (US.Config.type == '1') {
  4306. //拖动处理,添加拖动和拖动结束事件
  4307. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4308. }
  4309. }
  4310. U.MD.D.I.IsDrag = false;
  4311. }
  4312. }
  4313. /**
  4314. * 拖动的处理
  4315. *
  4316. */
  4317. U.MD.D.iconMove = function () {
  4318. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4319. U.MD.D.I.IsDrag = true;
  4320. }
  4321. /**
  4322. * 拖动结束后,这里是定位处理,以网状的形式定位
  4323. *
  4324. * @param {element} 拖动的元素
  4325. * @return {object} 命名空间
  4326. */
  4327. U.MD.D.iconUp = function (el) {
  4328. var _top = 15,
  4329. _left = 20,
  4330. _margin,
  4331. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4332. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4333. if (_positioninfo["OT"] > 15) {
  4334. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4335. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4336. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4337. }
  4338. if (_positioninfo["OL"] > 20) {
  4339. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4340. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4341. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4342. }
  4343. //while循环判断么一个重叠的元素
  4344. do {
  4345. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4346. _top = _positioninfo[0] + 95; //得到定位后的top
  4347. _left = _positioninfo[1]; //得到定位后的left
  4348. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4349. }
  4350. /**
  4351. * 判断拖动后图标是否重叠
  4352. *
  4353. * @param {element} 拖动的元素
  4354. * @param {element} 桌面所有的元素
  4355. * @param {array} 拖动元素的位置
  4356. ----------[0] 上 top
  4357. ----------[1] 左 left
  4358. * @return {object} 命名空间
  4359. */
  4360. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4361. //循环所有的图标
  4362. for (var i = 0; i < childs.length; i++) {
  4363. //判断有没有和该图标诶子重叠的元素
  4364. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4365. return childs[i]; //如果有返回
  4366. }
  4367. }
  4368. }
  4369. //#endregion
  4370. //#endregion
  4371. //#region 桌面应用
  4372. /**
  4373. * 打开应用
  4374. *
  4375. * @param {string} 类型
  4376. -----------------Disk 网盘系统
  4377. -----------------PDisk 学习系统网盘
  4378. -----------------Poto 图片
  4379. -----------------Video 视频
  4380. -----------------Music 音乐
  4381. -----------------Word word
  4382. -----------------Excel excel
  4383. -----------------Txt 记事本
  4384. -----------------PB 学习系统
  4385. -----------------Blog 朋友圈系统
  4386. -----------------FTP ftp系统
  4387. -----------------Group 好友群
  4388. -----------------SY 首页系统
  4389. -----------------Set 个人设置
  4390. -----------------XSet 系统设置
  4391. -----------------App 我们所有的app
  4392. -----------------BC c.1473.cn 平台
  4393. -----------------CWeb d.1473.cn 变成平台
  4394. -----------------其他的外联系统 我们统一用iframe打开
  4395. * @param {array} 类型
  4396. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4397. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4398. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4399. 如果第一个参数为其他,则无第二个参数
  4400. * @returns {array}
  4401. */
  4402. window.addEventListener('message', function (e) { // 监听 message 事件
  4403. // alert(e.data.type);
  4404. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4405. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4406. //3是展示全部阶段 2学生 1老师 4专家
  4407. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4408. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4409. //3是展示全部阶段 2学生 1老师 4专家
  4410. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4411. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部阶段 2学生 1老师 4专家
  4413. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4415. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4416. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4417. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4419. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4421. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4423. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4425. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4427. //3是展示全部阶段 2学生 1老师 4专家
  4428. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4430. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4431. U.MD.D.I.selectUser();
  4432. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4433. var _formel = document.getElementById("study");
  4434. U.UF.F.windowZooming(_formel);
  4435. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4436. var _formel = document.getElementById("studyDetail");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4439. var _formel = document.getElementById("studyDetail");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4442. var _formel = document.getElementById("studentStudy");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4445. // var _formel = document.getElementById("study");
  4446. //如果最大化了,那么就把他缩小
  4447. // if (_formel.ismaximize) {
  4448. // return;
  4449. // }
  4450. // U.UF.F.windowZooming(_formel);
  4451. // U.UF.F.topWindow(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4453. // var _formel = document.getElementById("studyDetail");
  4454. //如果最大化了,那么就把他缩小
  4455. // if (_formel.ismaximize) {
  4456. // return;
  4457. // }
  4458. // U.UF.F.windowZooming(_formel);
  4459. // U.UF.F.topWindow(_formel);
  4460. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4461. // var _formel = document.getElementById("studentStudy");
  4462. // if (_formel.ismaximize) {
  4463. // return;
  4464. // }
  4465. // U.UF.F.windowZooming(_formel);
  4466. // U.UF.F.topWindow(_formel);
  4467. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4468. var _formel = document.getElementById("study");
  4469. // if (_formel.ismaximize) {
  4470. // return;
  4471. // }
  4472. // U.UF.F.windowZooming(_formel);
  4473. U.UF.F.topWindow(_formel);
  4474. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4475. var _formel = document.getElementById("studentIndex");
  4476. U.UF.F.windowZooming(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4478. var _formel = document.getElementById("studyDetailS");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4481. var _formel = document.getElementById("studioIndex");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4484. var _formel = document.getElementById("studyDetailStudio");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4487. var _formel = document.getElementById("studyDetailStudio");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4490. var _formel = document.getElementById("studyDetailNT");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4493. var _formel = document.getElementById("studyDetailS");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4496. var _formel = document.getElementById("studyDetailS");
  4497. U.UF.F.topWindow(_formel);
  4498. } else if (e.data.tools && e.data.tools == "1") {
  4499. // U.MD.D.I.openApplication("whiteboard")
  4500. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4501. } else if (e.data.tools && e.data.tools == "2") {
  4502. U.MD.D.I.openApplication("note")
  4503. } else if (e.data.tools && e.data.tools == "3") {
  4504. // U.MD.D.I.openApplication("mind")
  4505. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "4") {
  4507. U.MD.D.I.openApplication("investigation")
  4508. } else if (e.data.tools && e.data.tools == "6") {
  4509. // U.MD.D.I.openApplication("doc")
  4510. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "7") {
  4512. // U.MD.D.I.openApplication("mindNetwork")
  4513. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "8") {
  4515. U.MD.D.I.openApplication("library")
  4516. } else if (e.data.tools && e.data.tools == "17") {
  4517. U.MD.D.I.openApplication("stuLibrary")
  4518. } else if (e.data.tools && e.data.tools == "18") {
  4519. U.MD.D.I.openApplication("train")
  4520. } else if (e.data.tools && e.data.tools == "21") {
  4521. U.MD.D.I.openApplication("program")
  4522. } else if (e.data.tools && e.data.tools == "22") {
  4523. U.MD.D.I.openApplication("AIprogram2")
  4524. } else if (e.data.tools && e.data.tools == "23") {
  4525. U.MD.D.I.openApplication("Pythonprogram")
  4526. } else if (e.data.tools && e.data.tools == "24") {
  4527. U.MD.D.I.openApplication("AIprogram")
  4528. } else if (e.data.tools && e.data.tools == "25") {
  4529. U.MD.D.I.openApplication("sys")
  4530. } else if (e.data.tools && e.data.tools == "26") {
  4531. // U.MD.D.I.openApplication("courseDesign")
  4532. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4533. } else if (e.data.tools && e.data.tools == "31") {
  4534. U.MD.D.I.openApplication("netWorkPanel")
  4535. } else if (e.data.tools && e.data.tools == "32") {
  4536. U.MD.D.I.openApplication("codeEdit")
  4537. } else if (e.data.tools && e.data.tools == "57") {
  4538. U.MD.D.I.openApplication("CocoPi")
  4539. } else if (e.data.tools && e.data.tools == "63") {
  4540. U.MD.D.I.openApplication("Wood")
  4541. } else if (e.data.tools && e.data.tools == "58") {
  4542. U.MD.D.I.openApplication("car")
  4543. } else if (e.data.tools && e.data.tools == "59") {
  4544. U.MD.D.I.openApplication("lineSearch")
  4545. } else if (e.data.tools && e.data.tools == "60") {
  4546. U.MD.D.I.openApplication("deepLearning")
  4547. } else if (e.data.tools && e.data.tools == "61") {
  4548. U.MD.D.I.openApplication("allHistory")
  4549. } else if (e.data.tools && e.data.tools == "28") {
  4550. U.MD.D.I.openApplication("translation")
  4551. } else if (e.data.tools && e.data.tools == "37") {
  4552. U.MD.D.I.openApplication("mohe")
  4553. } else if (e.data.tools && e.data.tools == "38") {
  4554. U.MD.D.I.openApplication("24game")
  4555. } else if (e.data.tools && e.data.tools == "39") {
  4556. U.MD.D.I.openApplication("GeoGebra")
  4557. } else if (e.data.tools && e.data.tools == "43") {
  4558. U.MD.D.I.openApplication("studentEvaluate")
  4559. } else if (e.data.tools && e.data.tools == "44") {
  4560. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4561. } else if (e.data.tools && e.data.tools == "46") {
  4562. U.MD.D.I.openApplication("project")
  4563. } else if (e.data.tools && e.data.tools == "71") {
  4564. U.MD.D.I.openApplication("aigptCourse")
  4565. } else if (e.data.tools && e.data.tools == "1s") {
  4566. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4567. } else if (e.data.tools && e.data.tools == "3s") {
  4568. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4569. } else if (e.data.tools && e.data.tools == "6s") {
  4570. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4571. } else if (e.data.tools && e.data.tools == "1studio") {
  4572. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "3studio") {
  4574. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "6studio") {
  4576. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "3y") {
  4578. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "1y") {
  4580. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4582. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4583. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4584. U.MD.D.I.openApplication("AIAnalyse")
  4585. } else if (e.data.tools && e.data.tools == "1teacher") {
  4586. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4587. } else if (e.data.tools && e.data.tools == "3teacher") {
  4588. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4589. } else if (e.data.tools && e.data.tools == "7teacher") {
  4590. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4591. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4592. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4593. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4594. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4595. } else if (e.data.tools && e.data.tools == "1E") {
  4596. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4597. } else if (e.data.tools && e.data.tools == "3E") {
  4598. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4599. } else if (e.data.tools && e.data.tools == "57y") {
  4600. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4601. } else if (e.data.tools && e.data.tools == "57u") {
  4602. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "57teacher") {
  4604. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4605. } else if (e.data.tools && e.data.tools == "64") {
  4606. U.MD.D.I.openApplication("AIChat")
  4607. } else if (e.data.tools && e.data.tools == "66") {
  4608. U.MD.D.I.openApplication("formulaEdi")
  4609. } else if (e.data.tools && e.data.tools == "67") {
  4610. U.MD.D.I.openApplication("molStr")
  4611. } else if (e.data.tools && e.data.tools == "68") {
  4612. U.MD.D.I.openApplication("timeAxis")
  4613. } else if (e.data.tools && e.data.tools == "openCourse") {
  4614. let _data = {
  4615. typea: e.data.typea || '',
  4616. typeb: e.data.typeb || '',
  4617. typed: e.data.typed || '',
  4618. }
  4619. U.MD.D.I.openInApplication("index", _data)
  4620. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4621. let _data = {
  4622. classid: e.data.classid || '',
  4623. }
  4624. U.MD.D.I.openInApplication("dataClass", _data)
  4625. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4626. let _data = {
  4627. cid: e.data.cid || '',
  4628. gid: e.data.gid || '',
  4629. }
  4630. U.MD.D.I.openInApplication("opencCscl", _data)
  4631. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4632. U.MD.D.I.openApplication("dataBoardTest")
  4633. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4634. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4635. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4636. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4637. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4638. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4639. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4640. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4641. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4642. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4643. }else if (e.data.tools && e.data.tools == "loginSz") {
  4644. U.MD.D.I.openInApplication("loginSz")
  4645. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4646. if($('#classroom_observation_board')[0]){
  4647. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4648. }
  4649. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4650. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4651. if($('#classroom_observation_ob_comment')[0]){
  4652. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4653. }
  4654. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4655. }
  4656. });
  4657. U.MD.D.I.selectUser = function () {
  4658. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4659. if (res.value[0].length > 0) {
  4660. US.userInfo = res.value[0][0];
  4661. $(".userName")[0].innerHTML = US.userInfo.username;
  4662. }
  4663. }, [], { "type": "GET", "withCredentials": true });
  4664. }
  4665. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4666. var _userinfo = US.userInfo, //登录用户信息
  4667. _userid = US.userInfo.userid, //登录用户id
  4668. _oid = _userinfo.organizeid,
  4669. _type = US.userInfo.type,
  4670. _org = US.userInfo.org,
  4671. _role = US.userInfo.role,
  4672. _classId = US.userInfo.classid;
  4673. if (_type == 4) {
  4674. tType = 4
  4675. }
  4676. switch (str) {
  4677. case "studyDetailNT": //无终端模式
  4678. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4679. setTimeout(() => {
  4680. U.MD.U.L.login();
  4681. }, 2000);
  4682. } else {
  4683. _formdiv = new U.UF.UI.form(
  4684. "课程详情",
  4685. $$("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 }), {
  4686. "id": "studyDetailNT",
  4687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4688. "onresize": function () { }
  4689. }, {
  4690. closecallback: function () { }
  4691. }, { "style": { "height": "36px" } }).form; //创建窗体
  4692. _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); } }
  4693. break;
  4694. }
  4695. case "studyDetail":
  4696. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4697. setTimeout(() => {
  4698. U.MD.U.L.login();
  4699. }, 2000);
  4700. } else {
  4701. _formdiv = new U.UF.UI.form(
  4702. "课程详情",
  4703. $$("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 }), {
  4704. "id": "studyDetail",
  4705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. _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); } }
  4711. break;
  4712. }
  4713. case "studyDetailTrain":
  4714. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4715. setTimeout(() => {
  4716. U.MD.U.L.login();
  4717. }, 2000);
  4718. } else {
  4719. _formdiv = new U.UF.UI.form(
  4720. "培训详情",
  4721. $$("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 }), {
  4722. "id": "studyDetailTrain",
  4723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4724. "onresize": function () { }
  4725. }, {
  4726. closecallback: function () { }
  4727. }, { "style": { "height": "36px" } }).form; //创建窗体
  4728. _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); } }
  4729. break;
  4730. }
  4731. case "studyDetailS":
  4732. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4733. setTimeout(() => {
  4734. U.MD.U.L.login();
  4735. }, 2000);
  4736. } else {
  4737. _formdiv = new U.UF.UI.form(
  4738. "项目详情",
  4739. $$("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 }), {
  4740. "id": "studyDetailS",
  4741. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4742. "onresize": function () { }
  4743. }, {
  4744. closecallback: function () { }
  4745. }, { "style": { "height": "36px" } }).form; //创建窗体
  4746. _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); } }
  4747. break;
  4748. }
  4749. case "studyDetailStudio":
  4750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4751. setTimeout(() => {
  4752. U.MD.U.L.login();
  4753. }, 2000);
  4754. } else {
  4755. _formdiv = new U.UF.UI.form(
  4756. "工作详情",
  4757. $$("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 }), {
  4758. "id": "studyDetailStudio",
  4759. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4760. "onresize": function () { }
  4761. }, {
  4762. closecallback: function () { }
  4763. }, { "style": { "height": "36px" } }).form; //创建窗体
  4764. _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); } }
  4765. break;
  4766. }
  4767. case "studyDetailS5":
  4768. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4769. setTimeout(() => {
  4770. U.MD.U.L.login();
  4771. }, 2000);
  4772. } else {
  4773. _formdiv = new U.UF.UI.form(
  4774. "项目详情",
  4775. $$("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 }), {
  4776. "id": "studyDetailS",
  4777. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _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); } }
  4783. break;
  4784. }
  4785. case "studyDetailGM":
  4786. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4787. setTimeout(() => {
  4788. U.MD.U.L.login();
  4789. }, 2000);
  4790. } else {
  4791. _formdiv = new U.UF.UI.form(
  4792. "课程详情",
  4793. $$("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 }), {
  4794. "id": "studyDetail",
  4795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //创建窗体
  4800. _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); } }
  4801. break;
  4802. }
  4803. case "hanUrl":
  4804. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4805. setTimeout(() => {
  4806. U.MD.U.L.login();
  4807. }, 2000);
  4808. } else {
  4809. _formdiv = new U.UF.UI.form(
  4810. "汉字宫",
  4811. $$("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" }), {
  4812. "id": "hanUrl",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. }
  4821. case "index":
  4822. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4823. setTimeout(() => {
  4824. U.MD.U.L.login();
  4825. }, 2000);
  4826. } else {
  4827. _formdiv = new U.UF.UI.form(
  4828. "课程中心",
  4829. $$("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 }), {
  4830. "id": "study",
  4831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //创建窗体
  4836. _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); } }
  4837. break;
  4838. }
  4839. case "dataClass":
  4840. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4841. setTimeout(() => {
  4842. U.MD.U.L.login();
  4843. }, 2000);
  4844. } else {
  4845. _formdiv = new U.UF.UI.form(
  4846. "数据报告",
  4847. $$("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 }), {
  4848. "id": "dataClass",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. break;
  4856. }
  4857. case "opencCscl":
  4858. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4859. setTimeout(() => {
  4860. U.MD.U.L.login();
  4861. }, 2000);
  4862. } else {
  4863. _formdiv = new U.UF.UI.form(
  4864. "协同建构",
  4865. $$("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 }), {
  4866. "id": "futureClass",
  4867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4871. }, { "style": { "height": "36px" } }).form; //创建窗体
  4872. _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); } }
  4873. break;
  4874. }
  4875. case "openCourseUpdate":
  4876. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4877. setTimeout(() => {
  4878. U.MD.U.L.login();
  4879. }, 2000);
  4880. } else {
  4881. _formdiv = new U.UF.UI.form(
  4882. "课程管理",
  4883. $$("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 }), {
  4884. "id": "openCourseUpdate",
  4885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { }
  4889. }, { "style": { "height": "36px" } }).form; //创建窗体
  4890. break;
  4891. }
  4892. case "openNewCourseUpdate":
  4893. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4894. setTimeout(() => {
  4895. U.MD.U.L.login();
  4896. }, 2000);
  4897. } else {
  4898. _formdiv = new U.UF.UI.form(
  4899. "课程管理",
  4900. $$("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 }), {
  4901. "id": "openCourseUpdate",
  4902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4903. "onresize": function () { }
  4904. }, {
  4905. closecallback: function () { }
  4906. }, { "style": { "height": "36px" } }).form; //创建窗体
  4907. break;
  4908. }
  4909. case "openCourseEUpdate":
  4910. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4911. setTimeout(() => {
  4912. U.MD.U.L.login();
  4913. }, 2000);
  4914. } else {
  4915. _formdiv = new U.UF.UI.form(
  4916. "课程管理",
  4917. $$("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 }), {
  4918. "id": "openCourseUpdate",
  4919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4920. "onresize": function () { }
  4921. }, {
  4922. closecallback: function () { }
  4923. }, { "style": { "height": "36px" } }).form; //创建窗体
  4924. break;
  4925. }
  4926. case "openCourseAiUpdate":
  4927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4928. setTimeout(() => {
  4929. U.MD.U.L.login();
  4930. }, 2000);
  4931. } else {
  4932. _formdiv = new U.UF.UI.form(
  4933. "课程管理",
  4934. $$("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 }), {
  4935. "id": "openCourseUpdate",
  4936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. break;
  4942. }
  4943. case "openCourseNewUpdate":
  4944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4945. setTimeout(() => {
  4946. U.MD.U.L.login();
  4947. }, 2000);
  4948. } else {
  4949. _formdiv = new U.UF.UI.form(
  4950. "课程管理",
  4951. $$("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 }), {
  4952. "id": "openCourseUpdate",
  4953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //创建窗体
  4958. break;
  4959. }
  4960. case "inviteLoginSz":
  4961. _formdiv = new U.UF.UI.form(
  4962. "随机码登录",
  4963. $$("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 }), {
  4964. "id": "loginSz",
  4965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //创建窗体
  4970. break;
  4971. case "loginSz":
  4972. _formdiv = new U.UF.UI.form(
  4973. "教师登录",
  4974. $$("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" }), {
  4975. "id": "loginSz",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. break;
  4982. case "teacher":
  4983. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4984. setTimeout(() => {
  4985. U.MD.U.L.login();
  4986. }, 2000);
  4987. } else {
  4988. _formdiv = new U.UF.UI.form(
  4989. "教师管理",
  4990. $$("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 }), {
  4991. "id": "teacher",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. break;
  4998. }
  4999. case "dataBoardSZArea":
  5000. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5001. setTimeout(() => {
  5002. U.MD.U.L.login();
  5003. }, 2000);
  5004. } else {
  5005. _formdiv = new U.UF.UI.form(
  5006. "综合数据看板",
  5007. $$("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 }), {
  5008. "id": "dataBoardSZArea",
  5009. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //创建窗体
  5014. break;
  5015. }
  5016. case "dataBoardSZCity":
  5017. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5018. setTimeout(() => {
  5019. U.MD.U.L.login();
  5020. }, 2000);
  5021. } else {
  5022. _formdiv = new U.UF.UI.form(
  5023. "综合数据看板",
  5024. $$("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 }), {
  5025. "id": "dataBoardSZCity",
  5026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () { }
  5030. }, { "style": { "height": "36px" } }).form; //创建窗体
  5031. break;
  5032. }
  5033. case "classroom_observation_board":
  5034. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5035. setTimeout(() => {
  5036. U.MD.U.L.login();
  5037. }, 2000);
  5038. } else {
  5039. _formdiv = new U.UF.UI.form(
  5040. "课堂观察",
  5041. $$("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 }), {
  5042. "id": "classroom_observation_board",
  5043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. break;
  5049. }
  5050. case "classroom_observation_ob_comment":
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. _formdiv = new U.UF.UI.form(
  5057. "课堂审核",
  5058. $$("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 }), {
  5059. "id": "classroom_observation_ob_comment",
  5060. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5061. "onresize": function () { }
  5062. }, {
  5063. closecallback: function () { }
  5064. }, { "style": { "height": "36px" } }).form; //创建窗体
  5065. break;
  5066. }
  5067. }
  5068. }
  5069. U.MD.D.I.openApplication = function (str, obj, info) {
  5070. obj = obj || {};
  5071. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5072. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5073. _userinfo = US.userInfo, //登录用户信息
  5074. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5075. _oid = obj.organizeid || _userinfo.organizeid,
  5076. _type = US.userInfo.type,
  5077. _org = US.userInfo.org,
  5078. _role = US.userInfo.role,
  5079. _classId = US.userInfo.classid,
  5080. _TscreenType = 1
  5081. _screenType = 2,
  5082. _SscreenType = 3;
  5083. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5084. return;
  5085. }
  5086. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5087. switch (str) {
  5088. case "studnetProject": //好友打开
  5089. _formdiv = new U.UF.UI.form(
  5090. "我的项目",
  5091. $$("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 }), {
  5092. "id": "studnetProject",
  5093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //创建窗体
  5098. _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); } }
  5099. break;
  5100. case "studentEvaluate": //好友打开
  5101. _formdiv = new U.UF.UI.form(
  5102. "我的评价",
  5103. $$("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 }), {
  5104. "id": "studentEvaluate",
  5105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. _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); } }
  5111. break;
  5112. case "my":
  5113. _formdiv = new U.UF.UI.form(
  5114. "我的资料",
  5115. $$("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 }), {
  5116. "id": "my",
  5117. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5118. "onresize": function () { }
  5119. }, {
  5120. closecallback: function () { }
  5121. }, { "style": { "height": "36px" } }).form; //创建窗体
  5122. _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); } }
  5123. break;
  5124. case "program":
  5125. _formdiv = new U.UF.UI.form(
  5126. "编程平台",
  5127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5128. "id": "program",
  5129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. _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); } }
  5135. break;
  5136. case "library":
  5137. _formdiv = new U.UF.UI.form(
  5138. "素材库",
  5139. $$("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 }), {
  5140. "id": "library",
  5141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5142. "onresize": function () { }
  5143. }, {
  5144. closecallback: function () { }
  5145. }, { "style": { "height": "36px" } }).form; //创建窗体
  5146. _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); } }
  5147. break;
  5148. case "whiteboard":
  5149. _formdiv = new U.UF.UI.form(
  5150. "电子白板",
  5151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5152. "id": "whiteboard",
  5153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5154. "onresize": function () { }
  5155. }, {
  5156. closecallback: function () { }
  5157. }, { "style": { "height": "36px" } }).form; //创建窗体
  5158. _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); } }
  5159. break;
  5160. case "investigation":
  5161. _formdiv = new U.UF.UI.form(
  5162. "问卷调查",
  5163. $$("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 }), {
  5164. "id": "investigation",
  5165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. _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); } }
  5171. break;
  5172. case "note":
  5173. _formdiv = new U.UF.UI.form(
  5174. "便签分类",
  5175. $$("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 }), {
  5176. "id": "note",
  5177. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. _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); } }
  5183. break;
  5184. // case "score":
  5185. // _formdiv = new U.UF.UI.form(
  5186. // "量规评分",
  5187. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5188. // "id": "score",
  5189. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5190. // "onresize": function() {}
  5191. // }, {
  5192. // closecallback: function() {}
  5193. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5194. // _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); } }
  5195. // break;
  5196. case "mind":
  5197. _formdiv = new U.UF.UI.form(
  5198. "思维导图",
  5199. $$("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"
  5200. "id": "mind",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _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); } }
  5207. break;
  5208. case "doc":
  5209. // U.MD.D.I.isRoom();
  5210. _formdiv = new U.UF.UI.form(
  5211. "协同文档",
  5212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5213. "id": "doc",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5220. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5221. // })
  5222. _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); } }
  5223. break;
  5224. case "studentStudy":
  5225. _formdiv = new U.UF.UI.form(
  5226. "课程中心",
  5227. $$("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
  5228. "id": "studentStudy",
  5229. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break;
  5236. case "train": //好友打开
  5237. _formdiv = new U.UF.UI.form(
  5238. "训练平台",
  5239. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5240. "id": "train",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _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); } }
  5247. break;
  5248. case "mindNetwork": //好友打开
  5249. _formdiv = new U.UF.UI.form(
  5250. "思维网格",
  5251. $$("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 }), {
  5252. "id": "mindNetwork",
  5253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _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); } }
  5259. break;
  5260. case "studentClassRoom": //好友打开
  5261. _formdiv = new U.UF.UI.form(
  5262. "实时课堂",
  5263. $$("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 }), {
  5264. "id": "studentClassRoom",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. setTimeout(() => {
  5272. U.UF.F.windowZooming(_formdiv)
  5273. }, 0);
  5274. break;
  5275. }
  5276. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5277. switch (str) {
  5278. case "studnetProject": //好友打开
  5279. _formdiv = new U.UF.UI.form(
  5280. "我的项目",
  5281. $$("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 }), {
  5282. "id": "studnetProject",
  5283. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. case "studentEvaluate": //好友打开
  5291. _formdiv = new U.UF.UI.form(
  5292. "我的评价",
  5293. $$("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 }), {
  5294. "id": "studentEvaluate",
  5295. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5296. "onresize": function () { }
  5297. }, {
  5298. closecallback: function () { }
  5299. }, { "style": { "height": "36px" } }).form; //创建窗体
  5300. _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); } }
  5301. break;
  5302. case "my":
  5303. _formdiv = new U.UF.UI.form(
  5304. "我的资料",
  5305. $$("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 }), {
  5306. "id": "my",
  5307. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _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); } }
  5313. break;
  5314. case "program":
  5315. _formdiv = new U.UF.UI.form(
  5316. "编程平台",
  5317. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5318. "id": "program",
  5319. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //创建窗体
  5324. _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); } }
  5325. break;
  5326. case "library":
  5327. _formdiv = new U.UF.UI.form(
  5328. "素材库",
  5329. $$("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 }), {
  5330. "id": "library",
  5331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. _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); } }
  5337. break;
  5338. case "whiteboard":
  5339. _formdiv = new U.UF.UI.form(
  5340. "电子白板",
  5341. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5342. "id": "whiteboard",
  5343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5344. "onresize": function () { }
  5345. }, {
  5346. closecallback: function () { }
  5347. }, { "style": { "height": "36px" } }).form; //创建窗体
  5348. _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); } }
  5349. break;
  5350. case "investigation":
  5351. _formdiv = new U.UF.UI.form(
  5352. "问卷调查",
  5353. $$("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 }), {
  5354. "id": "investigation",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. _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); } }
  5361. break;
  5362. case "note":
  5363. _formdiv = new U.UF.UI.form(
  5364. "便签分类",
  5365. $$("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 }), {
  5366. "id": "note",
  5367. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //创建窗体
  5372. _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); } }
  5373. break;
  5374. // case "score":
  5375. // _formdiv = new U.UF.UI.form(
  5376. // "量规评分",
  5377. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5378. // "id": "score",
  5379. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. // "onresize": function() {}
  5381. // }, {
  5382. // closecallback: function() {}
  5383. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5384. // _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); } }
  5385. // break;
  5386. case "mind":
  5387. _formdiv = new U.UF.UI.form(
  5388. "思维导图",
  5389. $$("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"
  5390. "id": "mind",
  5391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _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); } }
  5397. break;
  5398. case "doc":
  5399. // U.MD.D.I.isRoom();
  5400. _formdiv = new U.UF.UI.form(
  5401. "协同文档",
  5402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5403. "id": "doc",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5410. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5411. })
  5412. _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); } }
  5413. break;
  5414. case "train": //好友打开
  5415. _formdiv = new U.UF.UI.form(
  5416. "训练平台",
  5417. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5418. "id": "train",
  5419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5420. "onresize": function () { }
  5421. }, {
  5422. closecallback: function () { }
  5423. }, { "style": { "height": "36px" } }).form; //创建窗体
  5424. _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); } }
  5425. break;
  5426. case "studentStudy":
  5427. _formdiv = new U.UF.UI.form(
  5428. "课程中心",
  5429. $$("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
  5430. "id": "studentStudy",
  5431. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5432. "onresize": function () { }
  5433. }, {
  5434. closecallback: function () { }
  5435. }, { "style": { "height": "36px" } }).form; //创建窗体
  5436. _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); } }
  5437. break;
  5438. case "mindNetwork": //好友打开
  5439. _formdiv = new U.UF.UI.form(
  5440. "思维网格",
  5441. $$("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 }), {
  5442. "id": "mindNetwork",
  5443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. _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); } }
  5449. break;
  5450. case "studentClassRoom": //好友打开
  5451. _formdiv = new U.UF.UI.form(
  5452. "实时课堂",
  5453. $$("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 }), {
  5454. "id": "studentClassRoom",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. _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); } }
  5461. setTimeout(() => {
  5462. U.UF.F.windowZooming(_formdiv)
  5463. }, 0);
  5464. break;
  5465. }
  5466. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5467. //选择应用处理
  5468. switch (str) {
  5469. case "project": //好友打开
  5470. _formdiv = new U.UF.UI.form(
  5471. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5472. $$("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 }), {
  5473. "id": "project",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _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); } }
  5480. break;
  5481. case "student":
  5482. _formdiv = new U.UF.UI.form(
  5483. "学生管理",
  5484. $$("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 }), {
  5485. "id": "student",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "evaluate":
  5494. _formdiv = new U.UF.UI.form(
  5495. "学生评价",
  5496. $$("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 }), {
  5497. "id": "evaluate",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. case "sys":
  5506. _formdiv = new U.UF.UI.form(
  5507. "目标管理",
  5508. $$("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 }), {
  5509. "id": "sys",
  5510. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _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); } }
  5516. break;
  5517. case "courseDesign":
  5518. _formdiv = new U.UF.UI.form(
  5519. "项目设计",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5521. "id": "courseDesign",
  5522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5528. break;
  5529. case "program":
  5530. _formdiv = new U.UF.UI.form(
  5531. "编程平台",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5533. "id": "program",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. case "class":
  5542. _formdiv = new U.UF.UI.form(
  5543. "班级管理",
  5544. $$("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 }), {
  5545. "id": "class",
  5546. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _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); } }
  5552. break;
  5553. case "Grade":
  5554. _formdiv = new U.UF.UI.form(
  5555. "年级管理",
  5556. $$("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 }), {
  5557. "id": "Grade",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5564. break;
  5565. case "teacherOffice":
  5566. _formdiv = new U.UF.UI.form(
  5567. "教研室",
  5568. $$("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 }), {
  5569. "id": "teacherOffice",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "my":
  5578. _formdiv = new U.UF.UI.form(
  5579. "我的资料",
  5580. $$("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 }), {
  5581. "id": "my",
  5582. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "notice":
  5590. _formdiv = new U.UF.UI.form(
  5591. "通知公告",
  5592. $$("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 }), {
  5593. "id": "notice",
  5594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5600. break;
  5601. case "library":
  5602. _formdiv = new U.UF.UI.form(
  5603. "素材库",
  5604. $$("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 }), {
  5605. "id": "library",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. case "whiteboard":
  5614. _formdiv = new U.UF.UI.form(
  5615. "电子白板",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5617. "id": "whiteboard",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _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); } }
  5624. break;
  5625. case "investigation":
  5626. _formdiv = new U.UF.UI.form(
  5627. "问卷调查",
  5628. $$("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 }), {
  5629. "id": "investigation",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "note":
  5638. _formdiv = new U.UF.UI.form(
  5639. "便签分类",
  5640. $$("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 }), {
  5641. "id": "note",
  5642. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break;
  5649. // case "score":
  5650. // _formdiv = new U.UF.UI.form(
  5651. // "量规评分",
  5652. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5653. // "id": "score",
  5654. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. // "onresize": function() {}
  5656. // }, {
  5657. // closecallback: function() {}
  5658. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. // _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); } }
  5660. // break;
  5661. case "mind":
  5662. _formdiv = new U.UF.UI.form(
  5663. "思维导图",
  5664. $$("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"
  5665. "id": "mind",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. case "doc":
  5674. // U.MD.D.I.isRoom();
  5675. _formdiv = new U.UF.UI.form(
  5676. "协同文档",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5678. "id": "doc",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5685. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5686. })
  5687. _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); } }
  5688. break;
  5689. case "study":
  5690. _formdiv = new U.UF.UI.form(
  5691. "课程中心",
  5692. $$("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
  5693. "id": "study",
  5694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. _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); } }
  5700. break;
  5701. case "mindNetwork": //好友打开
  5702. _formdiv = new U.UF.UI.form(
  5703. "思维网格",
  5704. $$("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 }), {
  5705. "id": "mindNetwork",
  5706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //创建窗体
  5711. _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); } }
  5712. break;
  5713. case "train": //好友打开
  5714. _formdiv = new U.UF.UI.form(
  5715. "训练平台",
  5716. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5717. "id": "mindNetwork",
  5718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //创建窗体
  5723. _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); } }
  5724. break;
  5725. case "teacherClassRoom": //好友打开
  5726. _formdiv = new U.UF.UI.form(
  5727. "实时课堂",
  5728. $$("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 }), {
  5729. "id": "teacherClassRoom",
  5730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //创建窗体
  5735. _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); } }
  5736. setTimeout(() => {
  5737. U.UF.F.windowZooming(_formdiv)
  5738. }, 0);
  5739. break;
  5740. }
  5741. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5742. switch (str) {
  5743. case "project": //好友打开
  5744. _formdiv = new U.UF.UI.form(
  5745. "课程管理",
  5746. $$("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 }), {
  5747. "id": "project",
  5748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //创建窗体
  5753. _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); } }
  5754. break;
  5755. case "evaluate":
  5756. _formdiv = new U.UF.UI.form(
  5757. "学生评价",
  5758. $$("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 }), {
  5759. "id": "evaluate",
  5760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5761. "onresize": function () { }
  5762. }, {
  5763. closecallback: function () { }
  5764. }, { "style": { "height": "36px" } }).form; //创建窗体
  5765. _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); } }
  5766. break;
  5767. case "notice":
  5768. _formdiv = new U.UF.UI.form(
  5769. "通知公告",
  5770. $$("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 }), {
  5771. "id": "notice",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. _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); } }
  5778. break;
  5779. case "stuLibrary":
  5780. _formdiv = new U.UF.UI.form(
  5781. "学习资料",
  5782. $$("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 }), {
  5783. "id": "stuLibrary",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //创建窗体
  5789. _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); } }
  5790. break;
  5791. case "program":
  5792. _formdiv = new U.UF.UI.form(
  5793. "编程平台",
  5794. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5795. "id": "program",
  5796. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //创建窗体
  5801. _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); } }
  5802. break;
  5803. case "whiteboard":
  5804. _formdiv = new U.UF.UI.form(
  5805. "电子白板",
  5806. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5807. "id": "whiteboard",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //创建窗体
  5813. _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); } }
  5814. break;
  5815. case "investigation":
  5816. _formdiv = new U.UF.UI.form(
  5817. "问卷调查",
  5818. $$("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 }), {
  5819. "id": "investigation",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //创建窗体
  5825. _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); } }
  5826. break;
  5827. case "mind":
  5828. _formdiv = new U.UF.UI.form(
  5829. "思维导图",
  5830. $$("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"
  5831. "id": "mind",
  5832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //创建窗体
  5837. _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); } }
  5838. break;
  5839. case "doc":
  5840. // U.MD.D.I.isRoom();
  5841. _formdiv = new U.UF.UI.form(
  5842. "协同文档",
  5843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5844. "id": "doc",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5851. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5852. })
  5853. _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); } }
  5854. break;
  5855. case "study":
  5856. _formdiv = new U.UF.UI.form(
  5857. "课程中心",
  5858. $$("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
  5859. "id": "study",
  5860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. case "mindNetwork": //好友打开
  5868. _formdiv = new U.UF.UI.form(
  5869. "思维网格",
  5870. $$("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 }), {
  5871. "id": "mindNetwork",
  5872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //创建窗体
  5877. _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); } }
  5878. break;
  5879. case "train": //好友打开
  5880. _formdiv = new U.UF.UI.form(
  5881. "训练平台",
  5882. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5883. "id": "train",
  5884. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5885. "onresize": function () { }
  5886. }, {
  5887. closecallback: function () { }
  5888. }, { "style": { "height": "36px" } }).form; //创建窗体
  5889. _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); } }
  5890. break;
  5891. case "sys":
  5892. _formdiv = new U.UF.UI.form(
  5893. "目标管理",
  5894. $$("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 }), {
  5895. "id": "sys",
  5896. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //创建窗体
  5901. _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); } }
  5902. break;
  5903. case "courseDesign":
  5904. _formdiv = new U.UF.UI.form(
  5905. "项目设计",
  5906. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5907. "id": "courseDesign",
  5908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. _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); } }
  5914. break;
  5915. }
  5916. } else if (!_type) {
  5917. switch (str) {
  5918. case "my":
  5919. _formdiv = new U.UF.UI.form(
  5920. "我的资料",
  5921. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5922. "id": "my",
  5923. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //创建窗体
  5928. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5929. break;
  5930. }
  5931. }
  5932. switch (str) {
  5933. // AIprogram2 AI体验 aihub.cocorobo.cn
  5934. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5935. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5936. case "formulaEdi": //公式编辑
  5937. _formdiv = new U.UF.UI.form(
  5938. "公式编辑",
  5939. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5940. "id": "formulaEdi",
  5941. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _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); } }
  5947. break;
  5948. case "molStr": //分子结构
  5949. _formdiv = new U.UF.UI.form(
  5950. "分子结构",
  5951. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5952. "id": "molStr",
  5953. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _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); } }
  5959. break;
  5960. case "timeAxis": //时间轴
  5961. _formdiv = new U.UF.UI.form(
  5962. "时间轴",
  5963. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5964. "id": "timeAxis",
  5965. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //创建窗体
  5970. _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); } }
  5971. break;
  5972. case "AIprogram2": //AI体验
  5973. _formdiv = new U.UF.UI.form(
  5974. "AI体验",
  5975. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5976. "id": "AIprogram2",
  5977. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, { "style": { "height": "36px" } }).form; //创建窗体
  5982. _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); } }
  5983. break;
  5984. case "Pythonprogram": //python编程
  5985. _formdiv = new U.UF.UI.form(
  5986. "Python编程",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5988. "id": "Pythonprogram",
  5989. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. _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); } }
  5995. break;
  5996. case "AIprogram": //ai编程
  5997. _formdiv = new U.UF.UI.form(
  5998. "AI编程平台",
  5999. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6000. "id": "AIprogram",
  6001. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. _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); } }
  6007. break;
  6008. case "CocoPi": //CocoPi
  6009. _formdiv = new U.UF.UI.form(
  6010. "CocoPi",
  6011. $$("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" }), {
  6012. "id": "CocoPi",
  6013. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, { "style": { "height": "36px" } }).form; //创建窗体
  6018. _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); } }
  6019. break;
  6020. case "Wood": //Wood
  6021. _formdiv = new U.UF.UI.form(
  6022. "海龟编程",
  6023. $$("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/" }), {
  6024. "id": "Wood",
  6025. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6026. "onresize": function () { }
  6027. }, {
  6028. closecallback: function () { }
  6029. }, { "style": { "height": "36px" } }).form; //创建窗体
  6030. _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); } }
  6031. break;
  6032. case "car": //模拟驾驶
  6033. _formdiv = new U.UF.UI.form(
  6034. "模拟驾驶",
  6035. $$("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/" }), {
  6036. "id": "car",
  6037. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, { "style": { "height": "36px" } }).form; //创建窗体
  6042. _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); } }
  6043. break;
  6044. case "lineSearch": //路径搜索
  6045. _formdiv = new U.UF.UI.form(
  6046. "路径搜索",
  6047. $$("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/" }), {
  6048. "id": "lineSearch",
  6049. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6050. "onresize": function () { }
  6051. }, {
  6052. closecallback: function () { }
  6053. }, { "style": { "height": "36px" } }).form; //创建窗体
  6054. _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); } }
  6055. break;
  6056. case "deepLearning": //深度学习
  6057. _formdiv = new U.UF.UI.form(
  6058. "深度学习",
  6059. $$("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/#" }), {
  6060. "id": "deepLearning",
  6061. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //创建窗体
  6066. _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); } }
  6067. break;
  6068. case "allHistory": //深度学习
  6069. _formdiv = new U.UF.UI.form(
  6070. "全历史",
  6071. $$("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/" }), {
  6072. "id": "allHistory",
  6073. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. _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); } }
  6079. break;
  6080. case "chatPDF": //ai编程
  6081. _formdiv = new U.UF.UI.form(
  6082. "chatPDF",
  6083. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6084. "id": "chatPDF",
  6085. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //创建窗体
  6090. _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); } }
  6091. break;
  6092. case "resources": //国家教育
  6093. _formdiv = new U.UF.UI.form(
  6094. "国家教育",
  6095. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6096. "id": "resources",
  6097. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _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); } }
  6103. break;
  6104. case "codeEdit": //源码编辑
  6105. _formdiv = new U.UF.UI.form(
  6106. "源码编辑",
  6107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6108. "id": "codeEdit",
  6109. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _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); } }
  6115. break; //
  6116. case "MindMap": //MindMap
  6117. _formdiv = new U.UF.UI.form(
  6118. "MindMap",
  6119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6120. "id": "MindMap",
  6121. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. case "netWorkPanel": //netWorkPanel
  6129. _formdiv = new U.UF.UI.form(
  6130. "netWorkPanel",
  6131. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6132. "id": "netWorkPanel",
  6133. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _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); } }
  6139. break;
  6140. case "GeoGebra": //GeoGebra
  6141. _formdiv = new U.UF.UI.form(
  6142. "GeoGebra",
  6143. $$("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" }), {
  6144. "id": "GeoGebra",
  6145. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _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); } }
  6151. break;
  6152. case "translation": //翻译
  6153. _formdiv = new U.UF.UI.form(
  6154. "翻译",
  6155. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6156. "id": "translation",
  6157. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _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); } }
  6163. break;
  6164. case "mohe": //魔盒
  6165. _formdiv = new U.UF.UI.form(
  6166. "魔盒识字",
  6167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6168. "id": "mohe",
  6169. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _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); } }
  6175. break;
  6176. case "24game": //24点
  6177. _formdiv = new U.UF.UI.form(
  6178. "24点",
  6179. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6180. "id": "24game",
  6181. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _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); } }
  6187. break;
  6188. case "case":
  6189. _formdiv = new U.UF.UI.form(
  6190. "课程进展",
  6191. $$("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 }), {
  6192. "id": "case",
  6193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //创建窗体
  6198. _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); } }
  6199. break;
  6200. case "snf":
  6201. _formdiv = new U.UF.UI.form(
  6202. "赛诺梵",
  6203. $$("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" }), {
  6204. "id": "snf",
  6205. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //创建窗体
  6210. _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); } }
  6211. break;
  6212. case "hanFamily":
  6213. _formdiv = new U.UF.UI.form(
  6214. "汉字家族",
  6215. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6216. "id": "hanFamily",
  6217. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6218. "onresize": function () { }
  6219. }, {
  6220. closecallback: function () { }
  6221. }, { "style": { "height": "36px" } }).form; //创建窗体
  6222. _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); } }
  6223. break;
  6224. case "hanClassics":
  6225. _formdiv = new U.UF.UI.form(
  6226. "国学经典",
  6227. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6228. "id": "hanClassics",
  6229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, { "style": { "height": "36px" } }).form; //创建窗体
  6234. _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); } }
  6235. break;
  6236. case "hanTraining":
  6237. _formdiv = new U.UF.UI.form(
  6238. "笔画训练",
  6239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6240. "id": "hanTraining",
  6241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6242. "onresize": function () { }
  6243. }, {
  6244. closecallback: function () { }
  6245. }, { "style": { "height": "36px" } }).form; //创建窗体
  6246. _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); } }
  6247. break;
  6248. case "hanClass":
  6249. _formdiv = new U.UF.UI.form(
  6250. "书法课堂",
  6251. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6252. "id": "hanClass",
  6253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //创建窗体
  6258. _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); } }
  6259. break;
  6260. case "han":
  6261. _formdiv = new U.UF.UI.form(
  6262. "汉字宫",
  6263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6264. "id": "han",
  6265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. _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); } }
  6271. break;
  6272. case "projectGM": //课程管理
  6273. _formdiv = new U.UF.UI.form(
  6274. "课程管理",
  6275. $$("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 }), {
  6276. "id": "projectGM",
  6277. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6278. "onresize": function () { }
  6279. }, {
  6280. closecallback: function () { }
  6281. }, { "style": { "height": "36px" } }).form; //创建窗体
  6282. _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); } }
  6283. break;
  6284. case "studyGM": //课程中心
  6285. _formdiv = new U.UF.UI.form(
  6286. "课程中心",
  6287. $$("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
  6288. "id": "study",
  6289. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, { "style": { "height": "36px" } }).form; //创建窗体
  6294. _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); } }
  6295. break;
  6296. // studentGM
  6297. case "studentGM": //学生管理
  6298. _formdiv = new U.UF.UI.form(
  6299. "学生管理",
  6300. $$("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 }), {
  6301. "id": "studentGM",
  6302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //创建窗体
  6307. _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); } }
  6308. break;
  6309. case "evaluateGM": //学生评价
  6310. _formdiv = new U.UF.UI.form(
  6311. "学生评价",
  6312. $$("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 }), {
  6313. "id": "evaluateGM",
  6314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //创建窗体
  6319. _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); } }
  6320. break;
  6321. // classGM
  6322. case "classGM": //班级管理
  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/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6326. "id": "classGM",
  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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6333. break;
  6334. // dataGM
  6335. case "dataGM":
  6336. _formdiv = new U.UF.UI.form(
  6337. "我的资料",
  6338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6339. "id": "dataGM",
  6340. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6346. break;
  6347. // caseGM
  6348. case "caseGM": //课程进展
  6349. _formdiv = new U.UF.UI.form(
  6350. "课程进展",
  6351. $$("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 }), {
  6352. "id": "caseGM",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //创建窗体
  6358. _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); } }
  6359. break;
  6360. // meterialGM
  6361. case "meterialGM": //素材库
  6362. _formdiv = new U.UF.UI.form(
  6363. "素材库",
  6364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6365. "id": "meterialGM",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6372. break;
  6373. // evaluateSGM
  6374. case "evaluateSGM": //我的评价
  6375. _formdiv = new U.UF.UI.form(
  6376. "我的评价",
  6377. $$("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 }), {
  6378. "id": "evaluateSGM",
  6379. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6380. "onresize": function () { }
  6381. }, {
  6382. closecallback: function () { }
  6383. }, { "style": { "height": "36px" } }).form; //创建窗体
  6384. _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); } }
  6385. break;
  6386. case "jupyter": //jupyter
  6387. _formdiv = new U.UF.UI.form(
  6388. "jupyter",
  6389. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6390. "id": "jupyter",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. case "number": //数字实验室
  6399. _formdiv = new U.UF.UI.form(
  6400. "数字实验室",
  6401. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6402. "id": "number",
  6403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //创建窗体
  6408. _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); } }
  6409. break;
  6410. case "studentCourse": //项目管理 学生
  6411. _formdiv = new U.UF.UI.form(
  6412. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6413. $$("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 }), {
  6414. "id": "studentCourse",
  6415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6416. "onresize": function () { }
  6417. }, {
  6418. closecallback: function () { }
  6419. }, { "style": { "height": "36px" } }).form; //创建窗体
  6420. _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); } }
  6421. break;
  6422. case "studentCourseS": //项目管理 老师
  6423. _formdiv = new U.UF.UI.form(
  6424. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6425. $$("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 }), {
  6426. "id": "studentCourseS",
  6427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6428. "onresize": function () { }
  6429. }, {
  6430. closecallback: function () { }
  6431. }, { "style": { "height": "36px" } }).form; //创建窗体
  6432. _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); } }
  6433. break;
  6434. case "studentIndex": //项目中心
  6435. _formdiv = new U.UF.UI.form(
  6436. "项目中心",
  6437. $$("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 }), {
  6438. "id": "studentIndex",
  6439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6440. "onresize": function () { }
  6441. }, {
  6442. closecallback: function () { }
  6443. }, { "style": { "height": "36px" } }).form; //创建窗体
  6444. _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); } }
  6445. break;
  6446. case "CaseDesignS":
  6447. _formdiv = new U.UF.UI.form(
  6448. "项目进展",
  6449. $$("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 }), {
  6450. "id": "case",
  6451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6452. "onresize": function () { }
  6453. }, {
  6454. closecallback: function () { }
  6455. }, { "style": { "height": "36px" } }).form; //创建窗体
  6456. _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); } }
  6457. break;
  6458. case "tcStudent": //腾讯学生管理
  6459. _formdiv = new U.UF.UI.form(
  6460. "学生管理",
  6461. $$("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 }), {
  6462. "id": "tcStudent",
  6463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6464. "onresize": function () { }
  6465. }, {
  6466. closecallback: function () { }
  6467. }, { "style": { "height": "36px" } }).form; //创建窗体
  6468. _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); } }
  6469. break;
  6470. case "tcSchool": //腾讯学校管理
  6471. _formdiv = new U.UF.UI.form(
  6472. "学校管理",
  6473. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6474. "id": "tcSchool",
  6475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //创建窗体
  6480. _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); } }
  6481. break;
  6482. case "tcTeacher": //腾讯学校管理
  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/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6486. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6493. break;
  6494. case "teacher":
  6495. _formdiv = new U.UF.UI.form(
  6496. "教师管理",
  6497. $$("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 }), {
  6498. "id": "teacher",
  6499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6500. "onresize": function () { }
  6501. }, {
  6502. closecallback: function () { }
  6503. }, { "style": { "height": "36px" } }).form; //创建窗体
  6504. _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); } }
  6505. break;
  6506. case "tcData": //腾讯我的资料
  6507. _formdiv = new U.UF.UI.form(
  6508. "我的资料",
  6509. $$("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 }), {
  6510. "id": "tcData",
  6511. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6512. "onresize": function () { }
  6513. }, {
  6514. closecallback: function () { }
  6515. }, { "style": { "height": "36px" } }).form; //创建窗体
  6516. _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); } }
  6517. break;
  6518. case "tcNotice": //腾讯消息通知
  6519. _formdiv = new U.UF.UI.form(
  6520. "消息通知",
  6521. $$("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 }), {
  6522. "id": "tcNotice",
  6523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6524. "onresize": function () { }
  6525. }, {
  6526. closecallback: function () { }
  6527. }, { "style": { "height": "36px" } }).form; //创建窗体
  6528. _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); } }
  6529. break;
  6530. case "myReport": //好友打开
  6531. _formdiv = new U.UF.UI.form(
  6532. "我的评价",
  6533. $$("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 }), {
  6534. "id": "myReport",
  6535. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //创建窗体
  6540. _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); } }
  6541. break;
  6542. case "learnAna": //好友打开
  6543. _formdiv = new U.UF.UI.form(
  6544. "学习分析",
  6545. $$("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 }), {
  6546. "id": "learnAna",
  6547. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _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); } }
  6553. break;
  6554. case "AIChat": //AI共创
  6555. _formdiv = new U.UF.UI.form(
  6556. "AI共创",
  6557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6558. "id": "AIChat",
  6559. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. istop: true,
  6563. closecallback: function () { $("#aichat_icon").remove(); },
  6564. narrowcallback: function () {
  6565. if (!$("#aichat_icon")[0]) {
  6566. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6567. }
  6568. },
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _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); } }
  6571. break;
  6572. case "ainew": //AI共创
  6573. _formdiv = new U.UF.UI.form(
  6574. "AI协同",
  6575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6576. "id": "ainew",
  6577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _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); } }
  6583. break;
  6584. case "gpt4": //gpt4
  6585. _formdiv = new U.UF.UI.form(
  6586. "AI助手",
  6587. $$("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 }), {
  6588. "id": "gpt4",
  6589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _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); } }
  6595. break;
  6596. case "aigpt": //gpt4
  6597. _formdiv = new U.UF.UI.form(
  6598. "AI助手+",
  6599. $$("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 }), {
  6600. "id": "aigpt",
  6601. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6602. "onresize": function () { }
  6603. }, {
  6604. closecallback: function () {
  6605. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6606. }
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6610. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6611. })
  6612. break;
  6613. case "aiKnowledge": //aiKnowledge
  6614. _formdiv = new U.UF.UI.form(
  6615. "知识建构",
  6616. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6617. "id": "aiKnowledge",
  6618. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "futureClass": //AI共创
  6626. _formdiv = new U.UF.UI.form(
  6627. "协同建构",
  6628. $$("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
  6629. "id": "synergyCourse",
  6630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () {
  6634. $("iframe", _formdiv)[0].contentWindow.loginout();
  6635. }
  6636. }, { "style": { "height": "36px" } }).form; //创建窗体
  6637. _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); } }
  6638. break;
  6639. case "aiagent": //ai agent
  6640. _formdiv = new U.UF.UI.form(
  6641. "AI Agent",
  6642. $$("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" }), {
  6643. "id": "AIAgent",
  6644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () { }
  6648. }, { "style": { "height": "36px" } }).form; //创建窗体
  6649. _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); } }
  6650. break;
  6651. case "dataBoard": //数据看板
  6652. _formdiv = new U.UF.UI.form(
  6653. "数据看板",
  6654. $$("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 }), {
  6655. "id": "dataBoard",
  6656. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //创建窗体
  6661. _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); } }
  6662. break;
  6663. case "dataBoardSies": //数据融合
  6664. _formdiv = new U.UF.UI.form(
  6665. "数据融合",
  6666. $$("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 }), {
  6667. "id": "dataBoardSies",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //创建窗体
  6673. _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); } }
  6674. break;
  6675. case "dataBoardNew": //数据看板
  6676. _formdiv = new U.UF.UI.form(
  6677. "综合看板",
  6678. $$("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 }), {
  6679. "id": "dataBoardNew",
  6680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //创建窗体
  6685. _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); } }
  6686. break;
  6687. case "dataBoardTest": //数据看板
  6688. _formdiv = new U.UF.UI.form(
  6689. "评测看板",
  6690. $$("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 }), {
  6691. "id": "dataBoardTest",
  6692. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //创建窗体
  6697. _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); } }
  6698. break;
  6699. case "AIAnalyse": //AI共创
  6700. _formdiv = new U.UF.UI.form(
  6701. "AI分析",
  6702. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6703. "id": "AIAnalyse",
  6704. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //创建窗体
  6709. _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); } }
  6710. break;
  6711. case "studioCourse": //AI共创
  6712. _formdiv = new U.UF.UI.form(
  6713. "工作管理",
  6714. $$("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 }), {
  6715. "id": "studioCourse",
  6716. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //创建窗体
  6721. _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); } }
  6722. break;
  6723. case "studioIndex": //AI共创
  6724. _formdiv = new U.UF.UI.form(
  6725. "工作中心",
  6726. $$("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 }), {
  6727. "id": "studioIndex",
  6728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6729. "onresize": function () { }
  6730. }, {
  6731. closecallback: function () { }
  6732. }, { "style": { "height": "36px" } }).form; //创建窗体
  6733. _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); } }
  6734. break;
  6735. case "source":
  6736. _formdiv = new U.UF.UI.form(
  6737. "教学资源",
  6738. $$("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 }), {
  6739. "id": "source",
  6740. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, { "style": { "height": "36px" } }).form; //创建窗体
  6745. _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); } }
  6746. break;
  6747. case "testTeacher":
  6748. _formdiv = new U.UF.UI.form(
  6749. "教师管理",
  6750. $$("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 }), {
  6751. "id": "testTeacher",
  6752. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6753. "onresize": function () { }
  6754. }, {
  6755. closecallback: function () { }
  6756. }, { "style": { "height": "36px" } }).form; //创建窗体
  6757. _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); } }
  6758. break;
  6759. case "testStudent":
  6760. _formdiv = new U.UF.UI.form(
  6761. "教师中心",
  6762. $$("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 }), {
  6763. "id": "testStudent",
  6764. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6765. "onresize": function () { }
  6766. }, {
  6767. closecallback: function () { }
  6768. }, { "style": { "height": "36px" } }).form; //创建窗体
  6769. _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); } }
  6770. break;
  6771. case "testTeacherSies":
  6772. _formdiv = new U.UF.UI.form(
  6773. "教师管理",
  6774. $$("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 }), {
  6775. "id": "testTeacherSies",
  6776. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6777. "onresize": function () { }
  6778. }, {
  6779. closecallback: function () { }
  6780. }, { "style": { "height": "36px" } }).form; //创建窗体
  6781. _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); } }
  6782. break;
  6783. case "testStudentSies":
  6784. _formdiv = new U.UF.UI.form(
  6785. "教师中心",
  6786. $$("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 }), {
  6787. "id": "testStudentSies",
  6788. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _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); } }
  6794. break;
  6795. case "ytpbl": //消息通知
  6796. _formdiv = new U.UF.UI.form(
  6797. "案例征集",
  6798. $$("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 }), {
  6799. "id": "ytpbl",
  6800. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //创建窗体
  6805. _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); } }
  6806. // 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");
  6807. break;
  6808. case "aiCourseResource": //人工智能窗体
  6809. _formdiv = new U.UF.UI.form(
  6810. false,
  6811. $$("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 }), {
  6812. "id": "aiCourseResource",
  6813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6814. "onresize": function () { },
  6815. "isdrag": false,
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _taskbar = ''
  6820. break;
  6821. case "szdjgCocooroboX": //图形化编程
  6822. _formdiv = new U.UF.UI.form(
  6823. "图形化编程",
  6824. $$("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" }), {
  6825. "id": "szdjgCocooroboX",
  6826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _taskbar = ''
  6832. break;
  6833. case "szdjgPython": //python编程
  6834. _formdiv = new U.UF.UI.form(
  6835. "Python编程",
  6836. $$("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" }), {
  6837. "id": "szdjgPython",
  6838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _taskbar = ''
  6844. break;
  6845. case "Record":
  6846. _formdiv = new U.UF.UI.form(
  6847. "观察记录",
  6848. $$("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 }), {
  6849. "id": "Record",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "aigptCourse":
  6858. _formdiv = new U.UF.UI.form(
  6859. "AI智能体",
  6860. $$("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' }), {
  6861. "id": "aigptCourse",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "classroomObservation":
  6870. _formdiv = new U.UF.UI.form(
  6871. "课堂观察",
  6872. $$("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 }), {
  6873. "id": "classroomObservation",
  6874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6881. break;
  6882. case "pblCourse":
  6883. _formdiv = new U.UF.UI.form(
  6884. "学生PBL",
  6885. $$("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 }), {
  6886. "id": "pblCourse",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. case "appStore":
  6895. _formdiv = new U.UF.UI.form(
  6896. "应用中心",
  6897. $$("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/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6898. "id": "pblCourse",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6905. break;
  6906. }
  6907. //U.MD.D.I.openClick(str);
  6908. //如果有任务栏信息
  6909. if (_taskbar) {
  6910. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6911. }
  6912. }
  6913. // U.MD.D.I.openClick = function(str){
  6914. // var click = '';
  6915. // switch(str){
  6916. // case 'friend':
  6917. // click = '我的好友';
  6918. // break;
  6919. // case 'domain':
  6920. // click = '域名管理';
  6921. // break;
  6922. // case 'disk':
  6923. // click = '我的云盘';
  6924. // break;
  6925. // case 'word':
  6926. // click = 'Word';
  6927. // break;
  6928. // case 'excel':
  6929. // click = 'Execl';
  6930. // break;
  6931. // case 'txt':
  6932. // click = '文本文件';
  6933. // break;
  6934. // case 'lookupFriend':
  6935. // click = '查找好友';
  6936. // break;
  6937. // case 'ftp':
  6938. // click = 'FTP';
  6939. // break;
  6940. // case 'group':
  6941. // click = '群组';
  6942. // break;
  6943. // case 'set':
  6944. // click = '我的设置';
  6945. // break;
  6946. // case 'systemSet':
  6947. // click = '系统设置';
  6948. // break;
  6949. // case 'boomYun':
  6950. // click = '互联办公';
  6951. // break;
  6952. // case 'xz':
  6953. // click = '云端下载';
  6954. // break;
  6955. // case 'client':
  6956. // click = '有思浏览器';
  6957. // break;
  6958. // case 'backEndProgramming':
  6959. // click = '在线后台编程';
  6960. // break;
  6961. // case 'frontEndProgramming':
  6962. // click = '在线前端编程';
  6963. // break;
  6964. // default: break;
  6965. // }
  6966. // if(U.MD.D.I.Ip && click){
  6967. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6968. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6969. // })
  6970. // }
  6971. // }
  6972. /**
  6973. *函数作用:ajax简易函数,使用post格式
  6974. *@param url {data} 后台地址
  6975. *@param data {data} 参数json
  6976. *@param fn {data} 回调函数
  6977. *
  6978. */
  6979. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6980. // var xhr = new XMLHttpRequest();
  6981. // xhr.open("GET",url,true);
  6982. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6983. // xhr.onreadystatechange = function(){
  6984. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6985. // fn.call(this,xhr.responseText);
  6986. // }
  6987. // };
  6988. // xhr.send();
  6989. // }
  6990. /*判断是否是内网IP*/
  6991. // U.MD.D.I.isInnerIPFn = function(str){
  6992. // var curPageUrl = str;
  6993. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6994. // curPageUrl =curPageUrl.replace(reg1,'');
  6995. // // console.log('curPageUrl-1 '+curPageUrl);
  6996. // var reg2 = /\:+/g;//替换冒号为一点
  6997. // curPageUrl =curPageUrl.replace(reg2,'.');
  6998. // // console.log('curPageUrl-2 '+curPageUrl);
  6999. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7000. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7001. // if(curPageUrl[2] != '16'){
  7002. // return ipAddress;
  7003. // }else{
  7004. // return false;
  7005. // }
  7006. // }
  7007. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7008. // //compatibility for firefox and chrome
  7009. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7010. // var pc = new myPeerConnection({
  7011. // iceServers: []
  7012. // }),
  7013. // noop = function() {},
  7014. // localIPs = {},
  7015. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7016. // key;
  7017. // function iterateIP(ip) {
  7018. // if (!localIPs[ip]) onNewIP(ip);
  7019. // localIPs[ip] = true;
  7020. // }
  7021. // //create a bogus data channel
  7022. // pc.createDataChannel("");
  7023. // // create offer and set local description
  7024. // pc.createOffer().then(function(sdp) {
  7025. // sdp.sdp.split('\n').forEach(function(line) {
  7026. // if (line.indexOf('candidate') < 0) return;
  7027. // line.match(ipRegex).forEach(iterateIP);
  7028. // });
  7029. // pc.setLocalDescription(sdp, noop, noop);
  7030. // }).catch(function(reason) {
  7031. // // An error occurred, so handle the failure to connect
  7032. // });
  7033. // //sten for candidate events
  7034. // pc.onicecandidate = function(ice) {
  7035. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7036. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7037. // };
  7038. // }
  7039. // U.MD.D.I.getUserIpBool = function(callback){
  7040. // U.MD.D.I.getUserIP(function(ip){
  7041. // alert("Got IP! :" + ip);
  7042. // });
  7043. //}
  7044. //#endregion
  7045. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7046. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7047. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7048. _userinfo = US.userInfo, //登录用户信息
  7049. _userid = US.userInfo.userid //登录用户id
  7050. let _iframe;
  7051. let _cid = cid,
  7052. _stage = stage,
  7053. _task = task,
  7054. _tool = tool;
  7055. var _jie = $$("div", {
  7056. "style": {
  7057. "position": "absolute",
  7058. "bottom": "50px",
  7059. "right": "50px",
  7060. "zIndex": "9999",
  7061. "backgroundColor": "#2268bc",
  7062. "color": "#fff",
  7063. "padding": "12px 20px",
  7064. "cursor": "pointer",
  7065. "borderRadius": "4px",
  7066. },
  7067. "innerHTML": "提交作业"
  7068. })
  7069. let aTool = ''
  7070. let _loading = document.createElement('div')
  7071. _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;"
  7072. // _loading.id = "";
  7073. let _lchild = document.createElement('div')
  7074. let _limg = document.createElement('img')
  7075. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7076. _limg.style = "width: 26px;margin-right: 10px;"
  7077. _lchild.appendChild(_limg)
  7078. let _lspan = document.createElement('span')
  7079. _lspan.innerHTML = "上传中..."
  7080. _lchild.appendChild(_lspan)
  7081. _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%);"
  7082. _loading.appendChild(_lchild)
  7083. var _box = $$('div', {
  7084. "style": {
  7085. "position": "relative",
  7086. "width": "100%",
  7087. "height": "100%",
  7088. },
  7089. })
  7090. _box.appendChild(_loading)
  7091. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7092. switch (str) {
  7093. case "whiteboard":
  7094. aTool = 1;
  7095. _iframe = $$("iframe", {
  7096. "frameborder": "no",
  7097. "border": "0",
  7098. "scrolling ": "no",
  7099. "style": {
  7100. "cssText": "border:0;width:100%;height:100%"
  7101. },
  7102. "src": "https://beta.iwb.cocorobo.cn/"
  7103. })
  7104. _box.appendChild(_iframe);
  7105. _box.appendChild(_jie);
  7106. _formdiv = new U.UF.UI.form(
  7107. "电子白板",
  7108. _box, {
  7109. "id": "whiteboard" + cid + stage + task + tool,
  7110. "style": {
  7111. "width": "90%",
  7112. "height": "90%",
  7113. "overflow": 'hidden'
  7114. },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, {
  7119. "style": {
  7120. "height": "36px"
  7121. }
  7122. }).form; //创建窗体
  7123. _taskbar = {
  7124. "id": str + _formdiv.id,
  7125. "style": {
  7126. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7127. },
  7128. "name": "电子白板",
  7129. "forms": _formdiv,
  7130. "click": function () {
  7131. U.MD.D.I.openApplication(str, obj, info);
  7132. }
  7133. }
  7134. break;
  7135. case "mind":
  7136. aTool = 3;
  7137. _iframe = $$("iframe", {
  7138. "frameborder": "no",
  7139. "border": "0",
  7140. "scrolling ": "no",
  7141. "style": {
  7142. "cssText": "border:0;width:100%;height:100%"
  7143. },
  7144. "src": "/kityminder-editor/dist/index.html"
  7145. })
  7146. _box.appendChild(_iframe);
  7147. _box.appendChild(_jie);
  7148. _formdiv = new U.UF.UI.form(
  7149. "思维导图",
  7150. _box, { //"/jsmind/example/demo.html"
  7151. "id": "mind" + cid + stage + task + tool,
  7152. "style": {
  7153. "width": "90%",
  7154. "height": "90%",
  7155. "overflow": 'hidden'
  7156. },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, {
  7161. "style": {
  7162. "height": "36px"
  7163. }
  7164. }).form; //创建窗体
  7165. _taskbar = {
  7166. "id": str + _formdiv.id,
  7167. "style": {
  7168. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7169. },
  7170. "name": "思维导图",
  7171. "forms": _formdiv,
  7172. "click": function () {
  7173. U.MD.D.I.openApplication(str, obj, info);
  7174. }
  7175. }
  7176. break;
  7177. case "MindMap":
  7178. aTool = 3;
  7179. _iframe = $$("iframe", {
  7180. "frameborder": "no",
  7181. "border": "0",
  7182. "scrolling ": "no",
  7183. "style": {
  7184. "cssText": "border:0;width:100%;height:100%"
  7185. },
  7186. "src": "//cloud.cocorobo.cn/mind/"
  7187. })
  7188. _box.appendChild(_iframe);
  7189. _box.appendChild(_jie);
  7190. _formdiv = new U.UF.UI.form(
  7191. "思维导图",
  7192. _box, { //"/jsmind/example/demo.html"
  7193. "id": "mind" + cid + stage + task + tool,
  7194. "style": {
  7195. "width": "90%",
  7196. "height": "90%",
  7197. "overflow": 'hidden'
  7198. },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, {
  7203. "style": {
  7204. "height": "36px"
  7205. }
  7206. }).form; //创建窗体
  7207. _taskbar = {
  7208. "id": str + _formdiv.id,
  7209. "style": {
  7210. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7211. },
  7212. "name": "思维导图",
  7213. "forms": _formdiv,
  7214. "click": function () {
  7215. U.MD.D.I.openApplication(str, obj, info);
  7216. }
  7217. }
  7218. break;
  7219. case "doc":
  7220. aTool = 6;
  7221. _iframe = $$("iframe", {
  7222. "frameborder": "no",
  7223. "border": "0",
  7224. "scrolling ": "no",
  7225. "style": {
  7226. "cssText": "border:0;width:100%;height:100%"
  7227. },
  7228. "src": "/Office/Word/WordEditArea.htm"
  7229. })
  7230. _box.appendChild(_iframe);
  7231. _box.appendChild(_jie);
  7232. _formdiv = new U.UF.UI.form(
  7233. "协同文档",
  7234. _box, {
  7235. "id": "doc" + cid + stage + task + tool,
  7236. "style": {
  7237. "width": "90%",
  7238. "height": "90%",
  7239. "overflow": 'hidden'
  7240. },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, {
  7245. "style": {
  7246. "height": "36px"
  7247. }
  7248. }).form; //创建窗体
  7249. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7250. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7251. })
  7252. _taskbar = {
  7253. "id": str + _formdiv.id,
  7254. "style": {
  7255. "backgroundImage": "url(/img/icon/doc.png)"
  7256. },
  7257. "name": "协同文档",
  7258. "forms": _formdiv,
  7259. "click": function () {
  7260. U.MD.D.I.openApplication(str, obj, info);
  7261. }
  7262. }
  7263. break;
  7264. case "mindNetwork": //好友打开
  7265. aTool = 7;
  7266. _iframe = $$("iframe", {
  7267. "webkitallowfullscreen": "",
  7268. "mozallowfullscreen": "",
  7269. "allowfullscreen": "",
  7270. "frameborder": "no",
  7271. "border": "0",
  7272. "scrolling ": "no",
  7273. "style": {
  7274. "cssText": "border:0; width:100%; height:100%;"
  7275. },
  7276. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7277. })
  7278. _box.appendChild(_iframe);
  7279. _box.appendChild(_jie);
  7280. _formdiv = new U.UF.UI.form(
  7281. "思维网格",
  7282. _box, {
  7283. "id": "mindNetwork" + cid + stage + task + tool,
  7284. "style": {
  7285. "width": "90%",
  7286. "height": "90%",
  7287. "overflow": 'hidden'
  7288. },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, {
  7293. "style": {
  7294. "height": "36px"
  7295. }
  7296. }).form; //创建窗体
  7297. _taskbar = {
  7298. "id": str + _formdiv.id,
  7299. "style": {
  7300. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7301. },
  7302. "name": "思维网格",
  7303. "forms": _formdiv,
  7304. "click": function () {
  7305. U.MD.D.I.openApplication(str, obj, info);
  7306. }
  7307. }
  7308. break;
  7309. case "courseDesign":
  7310. _iframe = $$("iframe", {
  7311. "webkitallowfullscreen": "",
  7312. "mozallowfullscreen": "",
  7313. "allowfullscreen": "",
  7314. "frameborder": "no",
  7315. "border": "0",
  7316. "scrolling ": "no",
  7317. "style": {
  7318. "cssText": "border:0; width:100%; height:100%;"
  7319. },
  7320. "src": "/course-design-vue"
  7321. })
  7322. _box.appendChild(_iframe);
  7323. _box.appendChild(_jie);
  7324. _formdiv = new U.UF.UI.form(
  7325. "项目设计",
  7326. _box, {
  7327. "id": "courseDesign" + cid + stage + task + tool,
  7328. "style": {
  7329. "width": "90%",
  7330. "height": "90%",
  7331. "overflow": 'hidden'
  7332. },
  7333. "onresize": function () { }
  7334. }, {
  7335. closecallback: function () { }
  7336. }, {
  7337. "style": {
  7338. "height": "36px"
  7339. }
  7340. }).form; //创建窗体
  7341. _taskbar = {
  7342. "id": str + _formdiv.id,
  7343. "style": {
  7344. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7345. },
  7346. "name": "项目设计",
  7347. "forms": _formdiv,
  7348. "click": function () {
  7349. U.MD.D.I.openApplication(str, obj, info);
  7350. }
  7351. }
  7352. break;
  7353. }
  7354. const script1 = document.createElement("script");
  7355. script1.type = "text/javascript";
  7356. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7357. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7358. const script2 = document.createElement("script");
  7359. script2.type = "text/javascript";
  7360. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7361. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7362. const script3 = document.createElement("script");
  7363. script3.type = "text/javascript";
  7364. script3.charset = "UTF-8";
  7365. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7366. const script4 = document.createElement("script");
  7367. script4.type = "text/javascript";
  7368. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7369. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7370. if (_iframe) {
  7371. if (str == 'doc') {
  7372. _iframe = _formdiv.querySelector('iframe')
  7373. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7374. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7375. _iframe.contentWindow.document.body.appendChild(script1);
  7376. _iframe.contentWindow.document.body.appendChild(script2);
  7377. // _iframe.contentWindow.document.body.appendChild(script3);
  7378. _iframe.contentWindow.document.body.appendChild(script4);
  7379. })
  7380. if (onloadListener) {
  7381. _iframe.contentDocument.location.reload()
  7382. } else {
  7383. _iframe.contentDocument.location.reload()
  7384. }
  7385. } else if (str == 'courseDesign') {
  7386. U.UF.DL.iframeLoad(_iframe, function () {
  7387. // _iframe.contentWindow.U.MD.O.W.load();
  7388. // _iframe.contentWindow.document.body.appendChild(script1);
  7389. _iframe.contentWindow.document.body.appendChild(script2);
  7390. _iframe.contentWindow.document.body.appendChild(script4);
  7391. })
  7392. } else if (str == 'mind') {
  7393. _iframe = _formdiv.querySelector('iframe')
  7394. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7395. //
  7396. _iframe.contentWindow.document.body.appendChild(script1);
  7397. _iframe.contentWindow.document.body.appendChild(script2);
  7398. _iframe.contentWindow.document.body.appendChild(script4);
  7399. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7400. })
  7401. if (onloadListener) {
  7402. _iframe.contentDocument.location.reload()
  7403. } else {
  7404. _iframe.contentDocument.location.reload()
  7405. }
  7406. } else if (str == 'whiteboard') {
  7407. _iframe = _formdiv.querySelector('iframe')
  7408. let onloadListener = _iframe.onload = () => {
  7409. _iframe.contentWindow.document.body.appendChild(script1);
  7410. _iframe.contentWindow.document.body.appendChild(script2);
  7411. _iframe.contentWindow.document.body.appendChild(script4);
  7412. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7413. };
  7414. // if (onloadListener) {
  7415. // try {
  7416. // _iframe.src += "?cocorobo="+new Date().getTime()
  7417. // _iframe.contentWindow.document.location.reload()
  7418. // } catch (error) {
  7419. // }
  7420. // } else {
  7421. // _iframe.contentDocument.location.reload()
  7422. // }
  7423. } else {
  7424. _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. // _iframe.contentWindow.document.body.appendChild(script3);
  7428. _iframe.contentWindow.document.body.appendChild(script4);
  7429. };
  7430. }
  7431. _jie.onclick = async () => {
  7432. let text = ''
  7433. if (aTool == 1) {
  7434. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7435. } else if (aTool == 6) {
  7436. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7437. } else if (aTool == 3) {
  7438. text = await U.MD.D.I.getEditorContent(_iframe);
  7439. }
  7440. _loading.style.display = 'flex'
  7441. console.log(_loading);
  7442. var _ajs = _iframe.contentWindow.document.createElement("script");
  7443. _ajs.type = "text/javascript";
  7444. _ajs.innerHTML =
  7445. // 'console.log(' + _loading + ');\n' +
  7446. 'var _js = document.createElement("script");\n' +
  7447. '_js.type="text/javascript";\n' +
  7448. '_js.charset="UTF-8";\n' +
  7449. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7450. "_js.onload = function(){\n" +
  7451. ' var a = document.getElementsByTagName("img")\n' +
  7452. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7453. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7454. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7455. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7456. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7457. "beforeUpload_shishi(file," +
  7458. "'" +
  7459. _userid +
  7460. "'" +
  7461. ", " +
  7462. "'" +
  7463. _cid +
  7464. "'" +
  7465. ", " +
  7466. "'" +
  7467. _stage +
  7468. "'" +
  7469. ", " +
  7470. "'" +
  7471. _task +
  7472. "'" +
  7473. ", " +
  7474. "'" +
  7475. _tool +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. aTool +
  7484. "'" +
  7485. ", " +
  7486. "`" +
  7487. text +
  7488. "`" +
  7489. ")\n" +
  7490. " });\n" +
  7491. "}\n" +
  7492. "document.head.appendChild(_js);\n";
  7493. _iframe.contentWindow.document.head.appendChild(_ajs);
  7494. }
  7495. }
  7496. //U.MD.D.I.openClick(str);
  7497. //如果有任务栏信息
  7498. // if (_taskbar) {
  7499. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7500. // }
  7501. }
  7502. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7503. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7504. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7505. _userinfo = US.userInfo, //登录用户信息
  7506. _userid = US.userInfo.userid //登录用户id
  7507. let _iframe;
  7508. let _cid = cid,
  7509. _stage = stage,
  7510. _task = task,
  7511. _tool = tool;
  7512. var _jie = $$("div", {
  7513. "style": {
  7514. "position": "absolute",
  7515. "bottom": "50px",
  7516. "right": "50px",
  7517. "zIndex": "9999",
  7518. "backgroundColor": "#2268bc",
  7519. "color": "#fff",
  7520. "padding": "12px 20px",
  7521. "cursor": "pointer",
  7522. "borderRadius": "4px",
  7523. },
  7524. "innerHTML": "提交作业"
  7525. })
  7526. let aTool = ''
  7527. let _loading = document.createElement('div')
  7528. _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;"
  7529. // _loading.id = "";
  7530. let _lchild = document.createElement('div')
  7531. let _limg = document.createElement('img')
  7532. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7533. _limg.style = "width: 26px;margin-right: 10px;"
  7534. _lchild.appendChild(_limg)
  7535. let _lspan = document.createElement('span')
  7536. _lspan.innerHTML = "上传中..."
  7537. _lchild.appendChild(_lspan)
  7538. _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%);"
  7539. _loading.appendChild(_lchild)
  7540. let _box = $$('div', {
  7541. "style": {
  7542. "position": "relative",
  7543. "width": "100%",
  7544. "height": "100%",
  7545. },
  7546. })
  7547. _box.appendChild(_loading)
  7548. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7549. switch (str) {
  7550. case "whiteboard":
  7551. aTool = 1;
  7552. _iframe = $$("iframe", {
  7553. "frameborder": "no",
  7554. "border": "0",
  7555. "scrolling ": "no",
  7556. "style": {
  7557. "cssText": "border:0;width:100%;height:100%"
  7558. },
  7559. "src": "https://beta.iwb.cocorobo.cn/"
  7560. })
  7561. _box.appendChild(_iframe);
  7562. _box.appendChild(_jie);
  7563. _formdiv = new U.UF.UI.form(
  7564. "电子白板",
  7565. _box, {
  7566. "id": "whiteboard" + cid + stage + task + tool,
  7567. "style": {
  7568. "width": "90%",
  7569. "height": "90%",
  7570. "overflow": 'hidden'
  7571. },
  7572. "onresize": function () { }
  7573. }, {
  7574. closecallback: function () { }
  7575. }, {
  7576. "style": {
  7577. "height": "36px"
  7578. }
  7579. }).form; //创建窗体
  7580. _taskbar = {
  7581. "id": str + _formdiv.id,
  7582. "style": {
  7583. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7584. },
  7585. "name": "电子白板",
  7586. "forms": _formdiv,
  7587. "click": function () {
  7588. U.MD.D.I.openApplication(str, obj, info);
  7589. }
  7590. }
  7591. break;
  7592. case "mind":
  7593. aTool = 3;
  7594. _iframe = $$("iframe", {
  7595. "frameborder": "no",
  7596. "border": "0",
  7597. "scrolling ": "no",
  7598. "style": {
  7599. "cssText": "border:0;width:100%;height:100%"
  7600. },
  7601. "src": "/kityminder-editor/dist/index.html"
  7602. })
  7603. _box.appendChild(_iframe);
  7604. _box.appendChild(_jie);
  7605. _formdiv = new U.UF.UI.form(
  7606. "思维导图",
  7607. _box, { //"/jsmind/example/demo.html"
  7608. "id": "mind" + cid + stage + task + tool,
  7609. "style": {
  7610. "width": "90%",
  7611. "height": "90%",
  7612. "overflow": 'hidden'
  7613. },
  7614. "onresize": function () { }
  7615. }, {
  7616. closecallback: function () { }
  7617. }, {
  7618. "style": {
  7619. "height": "36px"
  7620. }
  7621. }).form; //创建窗体
  7622. _taskbar = {
  7623. "id": str + _formdiv.id,
  7624. "style": {
  7625. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7626. },
  7627. "name": "思维导图",
  7628. "forms": _formdiv,
  7629. "click": function () {
  7630. U.MD.D.I.openApplication(str, obj, info);
  7631. }
  7632. }
  7633. break;
  7634. case "MindMap":
  7635. aTool = 3;
  7636. _iframe = $$("iframe", {
  7637. "frameborder": "no",
  7638. "border": "0",
  7639. "scrolling ": "no",
  7640. "style": {
  7641. "cssText": "border:0;width:100%;height:100%"
  7642. },
  7643. "src": "//cloud.cocorobo.cn/mind/"
  7644. })
  7645. _box.appendChild(_iframe);
  7646. _box.appendChild(_jie);
  7647. _formdiv = new U.UF.UI.form(
  7648. "思维导图",
  7649. _box, { //"/jsmind/example/demo.html"
  7650. "id": "mind" + cid + stage + task + tool,
  7651. "style": {
  7652. "width": "90%",
  7653. "height": "90%",
  7654. "overflow": 'hidden'
  7655. },
  7656. "onresize": function () { }
  7657. }, {
  7658. closecallback: function () { }
  7659. }, {
  7660. "style": {
  7661. "height": "36px"
  7662. }
  7663. }).form; //创建窗体
  7664. _taskbar = {
  7665. "id": str + _formdiv.id,
  7666. "style": {
  7667. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7668. },
  7669. "name": "思维导图",
  7670. "forms": _formdiv,
  7671. "click": function () {
  7672. U.MD.D.I.openApplication(str, obj, info);
  7673. }
  7674. }
  7675. break;
  7676. case "doc":
  7677. aTool = 6;
  7678. _iframe = $$("iframe", {
  7679. "frameborder": "no",
  7680. "border": "0",
  7681. "scrolling ": "no",
  7682. "style": {
  7683. "cssText": "border:0;width:100%;height:100%"
  7684. },
  7685. "src": "/Office/Word/WordEditArea.htm"
  7686. })
  7687. _box.appendChild(_iframe);
  7688. _box.appendChild(_jie);
  7689. _formdiv = new U.UF.UI.form(
  7690. "协同文档",
  7691. _box, {
  7692. "id": "doc" + cid + stage + task + tool,
  7693. "style": {
  7694. "width": "90%",
  7695. "height": "90%",
  7696. "overflow": 'hidden'
  7697. },
  7698. "onresize": function () { }
  7699. }, {
  7700. closecallback: function () { }
  7701. }, {
  7702. "style": {
  7703. "height": "36px"
  7704. }
  7705. }).form; //创建窗体
  7706. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7707. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7708. })
  7709. _taskbar = {
  7710. "id": str + _formdiv.id,
  7711. "style": {
  7712. "backgroundImage": "url(/img/icon/doc.png)"
  7713. },
  7714. "name": "协同文档",
  7715. "forms": _formdiv,
  7716. "click": function () {
  7717. U.MD.D.I.openApplication(str, obj, info);
  7718. }
  7719. }
  7720. break;
  7721. case "mindNetwork": //好友打开
  7722. aTool = 7;
  7723. _iframe = $$("iframe", {
  7724. "webkitallowfullscreen": "",
  7725. "mozallowfullscreen": "",
  7726. "allowfullscreen": "",
  7727. "frameborder": "no",
  7728. "border": "0",
  7729. "scrolling ": "no",
  7730. "style": {
  7731. "cssText": "border:0; width:100%; height:100%;"
  7732. },
  7733. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7734. })
  7735. _box.appendChild(_iframe);
  7736. _box.appendChild(_jie);
  7737. _formdiv = new U.UF.UI.form(
  7738. "思维网格",
  7739. _box, {
  7740. "id": "mindNetwork" + cid + stage + task + tool,
  7741. "style": {
  7742. "width": "90%",
  7743. "height": "90%",
  7744. "overflow": 'hidden'
  7745. },
  7746. "onresize": function () { }
  7747. }, {
  7748. closecallback: function () { }
  7749. }, {
  7750. "style": {
  7751. "height": "36px"
  7752. }
  7753. }).form; //创建窗体
  7754. _taskbar = {
  7755. "id": str + _formdiv.id,
  7756. "style": {
  7757. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7758. },
  7759. "name": "思维网格",
  7760. "forms": _formdiv,
  7761. "click": function () {
  7762. U.MD.D.I.openApplication(str, obj, info);
  7763. }
  7764. }
  7765. break;
  7766. case "courseDesign":
  7767. _iframe = $$("iframe", {
  7768. "webkitallowfullscreen": "",
  7769. "mozallowfullscreen": "",
  7770. "allowfullscreen": "",
  7771. "frameborder": "no",
  7772. "border": "0",
  7773. "scrolling ": "no",
  7774. "style": {
  7775. "cssText": "border:0; width:100%; height:100%;"
  7776. },
  7777. "src": "/course-design-vue"
  7778. })
  7779. _box.appendChild(_iframe);
  7780. _box.appendChild(_jie);
  7781. _formdiv = new U.UF.UI.form(
  7782. "项目设计",
  7783. _box, {
  7784. "id": "courseDesign" + cid + stage + task + tool,
  7785. "style": {
  7786. "width": "90%",
  7787. "height": "90%",
  7788. "overflow": 'hidden'
  7789. },
  7790. "onresize": function () { }
  7791. }, {
  7792. closecallback: function () { }
  7793. }, {
  7794. "style": {
  7795. "height": "36px"
  7796. }
  7797. }).form; //创建窗体
  7798. _taskbar = {
  7799. "id": str + _formdiv.id,
  7800. "style": {
  7801. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7802. },
  7803. "name": "项目设计",
  7804. "forms": _formdiv,
  7805. "click": function () {
  7806. U.MD.D.I.openApplication(str, obj, info);
  7807. }
  7808. }
  7809. break;
  7810. }
  7811. const script1 = document.createElement("script");
  7812. script1.type = "text/javascript";
  7813. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7814. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7815. const script2 = document.createElement("script");
  7816. script2.type = "text/javascript";
  7817. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7818. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7819. const script3 = document.createElement("script");
  7820. script3.type = "text/javascript";
  7821. script3.charset = "UTF-8";
  7822. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7823. const script4 = document.createElement("script");
  7824. script4.type = "text/javascript";
  7825. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7826. script4.src = window.origin + "/js/Common/jietu2E.js";
  7827. if (_iframe) {
  7828. if (str == 'doc') {
  7829. _iframe = _formdiv.querySelector('iframe')
  7830. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7831. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7832. _iframe.contentWindow.document.body.appendChild(script1);
  7833. _iframe.contentWindow.document.body.appendChild(script2);
  7834. // _iframe.contentWindow.document.body.appendChild(script3);
  7835. _iframe.contentWindow.document.body.appendChild(script4);
  7836. })
  7837. if (onloadListener) {
  7838. _iframe.contentDocument.location.reload()
  7839. } else {
  7840. _iframe.contentDocument.location.reload()
  7841. }
  7842. } else if (str == 'courseDesign') {
  7843. U.UF.DL.iframeLoad(_iframe, function () {
  7844. // _iframe.contentWindow.U.MD.O.W.load();
  7845. // _iframe.contentWindow.document.body.appendChild(script1);
  7846. _iframe.contentWindow.document.body.appendChild(script2);
  7847. _iframe.contentWindow.document.body.appendChild(script4);
  7848. })
  7849. } else if (str == 'mind') {
  7850. _iframe = _formdiv.querySelector('iframe')
  7851. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7852. //
  7853. _iframe.contentWindow.document.body.appendChild(script1);
  7854. _iframe.contentWindow.document.body.appendChild(script2);
  7855. _iframe.contentWindow.document.body.appendChild(script4);
  7856. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7857. })
  7858. if (onloadListener) {
  7859. _iframe.contentDocument.location.reload()
  7860. } else {
  7861. _iframe.contentDocument.location.reload()
  7862. }
  7863. } else if (str == 'whiteboard') {
  7864. _iframe = _formdiv.querySelector('iframe')
  7865. let onloadListener = _iframe.onload = () => {
  7866. _iframe.contentWindow.document.body.appendChild(script1);
  7867. _iframe.contentWindow.document.body.appendChild(script2);
  7868. _iframe.contentWindow.document.body.appendChild(script4);
  7869. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7870. };
  7871. // if (onloadListener) {
  7872. // try {
  7873. // _iframe.src += "?cocorobo="+new Date().getTime()
  7874. // _iframe.contentWindow.document.location.reload()
  7875. // } catch (error) {
  7876. // }
  7877. // } else {
  7878. // _iframe.contentDocument.location.reload()
  7879. // }
  7880. } else {
  7881. _iframe.onload = () => {
  7882. _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. // _iframe.contentWindow.document.body.appendChild(script3);
  7885. _iframe.contentWindow.document.body.appendChild(script4);
  7886. };
  7887. }
  7888. _jie.onclick = async () => {
  7889. let text = ''
  7890. if (aTool == 1) {
  7891. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7892. } else if (aTool == 6) {
  7893. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7894. } else if (aTool == 3) {
  7895. text = await U.MD.D.I.getEditorContent(_iframe);
  7896. }
  7897. _loading.style.display = 'flex'
  7898. console.log(_loading);
  7899. var _ajs = _iframe.contentWindow.document.createElement("script");
  7900. _ajs.type = "text/javascript";
  7901. _ajs.innerHTML =
  7902. // 'console.log(' + _loading + ');\n' +
  7903. 'var _js = document.createElement("script");\n' +
  7904. '_js.type="text/javascript";\n' +
  7905. '_js.charset="UTF-8";\n' +
  7906. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7907. "_js.onload = function(){\n" +
  7908. ' var a = document.getElementsByTagName("img")\n' +
  7909. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7910. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7911. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7912. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7913. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7914. "beforeUpload_shishi(file," +
  7915. "'" +
  7916. _userid +
  7917. "'" +
  7918. ", " +
  7919. "'" +
  7920. _cid +
  7921. "'" +
  7922. ", " +
  7923. "'" +
  7924. _stage +
  7925. "'" +
  7926. ", " +
  7927. "'" +
  7928. _task +
  7929. "'" +
  7930. ", " +
  7931. "'" +
  7932. _tool +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7937. "'" +
  7938. ", " +
  7939. "'" +
  7940. aTool +
  7941. "'" +
  7942. ", " +
  7943. "`" +
  7944. text +
  7945. "`" +
  7946. ")\n" +
  7947. " });\n" +
  7948. "}\n" +
  7949. "document.head.appendChild(_js);\n";
  7950. _iframe.contentWindow.document.head.appendChild(_ajs);
  7951. }
  7952. }
  7953. //U.MD.D.I.openClick(str);
  7954. //如果有任务栏信息
  7955. // if (_taskbar) {
  7956. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7957. // }
  7958. }
  7959. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7960. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7961. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7962. _userid = student.userid, //登录用户id
  7963. _username = student.student //用户名字
  7964. let _iframe;
  7965. let _cid = cid,
  7966. _stage = stage,
  7967. _task = task,
  7968. _tool = tool;
  7969. var _jie = $$("div", {
  7970. "style": {
  7971. "position": "absolute",
  7972. "bottom": "50px",
  7973. "right": "50px",
  7974. "zIndex": "9999",
  7975. "backgroundColor": "#2268bc",
  7976. "color": "#fff",
  7977. "padding": "12px 20px",
  7978. "cursor": "pointer",
  7979. "borderRadius": "4px",
  7980. },
  7981. "innerHTML": "提交作业"
  7982. })
  7983. let aTool = ''
  7984. let _loading = document.createElement('div')
  7985. _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;"
  7986. // _loading.id = "";
  7987. let _lchild = document.createElement('div')
  7988. let _limg = document.createElement('img')
  7989. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7990. _limg.style = "width: 26px;margin-right: 10px;"
  7991. _lchild.appendChild(_limg)
  7992. let _lspan = document.createElement('span')
  7993. _lspan.innerHTML = "上传中..."
  7994. _lchild.appendChild(_lspan)
  7995. _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%);"
  7996. _loading.appendChild(_lchild)
  7997. var _box = $$('div', {
  7998. "style": {
  7999. "position": "relative",
  8000. "width": "100%",
  8001. "height": "100%",
  8002. },
  8003. })
  8004. _box.appendChild(_loading)
  8005. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8006. switch (str) {
  8007. case "whiteboard":
  8008. aTool = 1;
  8009. _iframe = $$("iframe", {
  8010. "frameborder": "no",
  8011. "border": "0",
  8012. "scrolling ": "no",
  8013. "style": {
  8014. "cssText": "border:0;width:100%;height:100%"
  8015. },
  8016. "src": "https://beta.iwb.cocorobo.cn/"
  8017. })
  8018. _box.appendChild(_iframe);
  8019. _box.appendChild(_jie);
  8020. _formdiv = new U.UF.UI.form(
  8021. "电子白板-" + _username,
  8022. _box, {
  8023. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8024. "style": {
  8025. "width": "90%",
  8026. "height": "90%",
  8027. "overflow": 'hidden'
  8028. },
  8029. "onresize": function () { }
  8030. }, {
  8031. closecallback: function () { }
  8032. }, {
  8033. "style": {
  8034. "height": "36px"
  8035. }
  8036. }).form; //创建窗体
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8041. },
  8042. "name": "电子白板",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "mind":
  8050. aTool = 3;
  8051. _iframe = $$("iframe", {
  8052. "frameborder": "no",
  8053. "border": "0",
  8054. "scrolling ": "no",
  8055. "style": {
  8056. "cssText": "border:0;width:100%;height:100%"
  8057. },
  8058. "src": "/kityminder-editor/dist/index.html"
  8059. })
  8060. _box.appendChild(_iframe);
  8061. _box.appendChild(_jie);
  8062. _formdiv = new U.UF.UI.form(
  8063. "思维导图-" + _username,
  8064. _box, { //"/jsmind/example/demo.html"
  8065. "id": "mind" + cid + stage + task + tool + _userid,
  8066. "style": {
  8067. "width": "90%",
  8068. "height": "90%",
  8069. "overflow": 'hidden'
  8070. },
  8071. "onresize": function () { }
  8072. }, {
  8073. closecallback: function () { }
  8074. }, {
  8075. "style": {
  8076. "height": "36px"
  8077. }
  8078. }).form; //创建窗体
  8079. _taskbar = {
  8080. "id": str + _formdiv.id,
  8081. "style": {
  8082. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8083. },
  8084. "name": "思维导图",
  8085. "forms": _formdiv,
  8086. "click": function () {
  8087. U.MD.D.I.openApplication(str, obj, info);
  8088. }
  8089. }
  8090. break;
  8091. case "MindMap":
  8092. aTool = 3;
  8093. _iframe = $$("iframe", {
  8094. "frameborder": "no",
  8095. "border": "0",
  8096. "scrolling ": "no",
  8097. "style": {
  8098. "cssText": "border:0;width:100%;height:100%"
  8099. },
  8100. "src": "//cloud.cocorobo.cn/mind/"
  8101. })
  8102. _box.appendChild(_iframe);
  8103. _box.appendChild(_jie);
  8104. _formdiv = new U.UF.UI.form(
  8105. "思维导图-" + _username,
  8106. _box, { //"/jsmind/example/demo.html"
  8107. "id": "mind" + cid + stage + task + tool + _userid,
  8108. "style": {
  8109. "width": "90%",
  8110. "height": "90%",
  8111. "overflow": 'hidden'
  8112. },
  8113. "onresize": function () { }
  8114. }, {
  8115. closecallback: function () { }
  8116. }, {
  8117. "style": {
  8118. "height": "36px"
  8119. }
  8120. }).form; //创建窗体
  8121. _taskbar = {
  8122. "id": str + _formdiv.id,
  8123. "style": {
  8124. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8125. },
  8126. "name": "思维导图",
  8127. "forms": _formdiv,
  8128. "click": function () {
  8129. U.MD.D.I.openApplication(str, obj, info);
  8130. }
  8131. }
  8132. break;
  8133. case "doc":
  8134. aTool = 6;
  8135. _iframe = $$("iframe", {
  8136. "frameborder": "no",
  8137. "border": "0",
  8138. "scrolling ": "no",
  8139. "style": {
  8140. "cssText": "border:0;width:100%;height:100%"
  8141. },
  8142. "src": "/Office/Word/WordEditArea.htm"
  8143. })
  8144. _box.appendChild(_iframe);
  8145. _box.appendChild(_jie);
  8146. _formdiv = new U.UF.UI.form(
  8147. "协同文档-" + _username,
  8148. _box, {
  8149. "id": "doc" + cid + stage + task + tool + _userid,
  8150. "style": {
  8151. "width": "90%",
  8152. "height": "90%",
  8153. "overflow": 'hidden'
  8154. },
  8155. "onresize": function () { }
  8156. }, {
  8157. closecallback: function () { }
  8158. }, {
  8159. "style": {
  8160. "height": "36px"
  8161. }
  8162. }).form; //创建窗体
  8163. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8164. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8165. })
  8166. _taskbar = {
  8167. "id": str + _formdiv.id,
  8168. "style": {
  8169. "backgroundImage": "url(/img/icon/doc.png)"
  8170. },
  8171. "name": "协同文档",
  8172. "forms": _formdiv,
  8173. "click": function () {
  8174. U.MD.D.I.openApplication(str, obj, info);
  8175. }
  8176. }
  8177. break;
  8178. case "mindNetwork": //好友打开
  8179. aTool = 7;
  8180. _iframe = $$("iframe", {
  8181. "webkitallowfullscreen": "",
  8182. "mozallowfullscreen": "",
  8183. "allowfullscreen": "",
  8184. "frameborder": "no",
  8185. "border": "0",
  8186. "scrolling ": "no",
  8187. "style": {
  8188. "cssText": "border:0; width:100%; height:100%;"
  8189. },
  8190. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8191. })
  8192. _box.appendChild(_iframe);
  8193. _box.appendChild(_jie);
  8194. _formdiv = new U.UF.UI.form(
  8195. "思维网格-" + _username,
  8196. _box, {
  8197. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8198. "style": {
  8199. "width": "90%",
  8200. "height": "90%",
  8201. "overflow": 'hidden'
  8202. },
  8203. "onresize": function () { }
  8204. }, {
  8205. closecallback: function () { }
  8206. }, {
  8207. "style": {
  8208. "height": "36px"
  8209. }
  8210. }).form; //创建窗体
  8211. _taskbar = {
  8212. "id": str + _formdiv.id,
  8213. "style": {
  8214. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8215. },
  8216. "name": "思维网格",
  8217. "forms": _formdiv,
  8218. "click": function () {
  8219. U.MD.D.I.openApplication(str, obj, info);
  8220. }
  8221. }
  8222. break;
  8223. case "courseDesign":
  8224. _iframe = $$("iframe", {
  8225. "webkitallowfullscreen": "",
  8226. "mozallowfullscreen": "",
  8227. "allowfullscreen": "",
  8228. "frameborder": "no",
  8229. "border": "0",
  8230. "scrolling ": "no",
  8231. "style": {
  8232. "cssText": "border:0; width:100%; height:100%;"
  8233. },
  8234. "src": "/course-design-vue"
  8235. })
  8236. _box.appendChild(_iframe);
  8237. _box.appendChild(_jie);
  8238. _formdiv = new U.UF.UI.form(
  8239. "项目设计-" + _username,
  8240. _box, {
  8241. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8242. "style": {
  8243. "width": "90%",
  8244. "height": "90%",
  8245. "overflow": 'hidden'
  8246. },
  8247. "onresize": function () { }
  8248. }, {
  8249. closecallback: function () { }
  8250. }, {
  8251. "style": {
  8252. "height": "36px"
  8253. }
  8254. }).form; //创建窗体
  8255. _taskbar = {
  8256. "id": str + _formdiv.id,
  8257. "style": {
  8258. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8259. },
  8260. "name": "项目设计",
  8261. "forms": _formdiv,
  8262. "click": function () {
  8263. U.MD.D.I.openApplication(str, obj, info);
  8264. }
  8265. }
  8266. break;
  8267. }
  8268. const script1 = document.createElement("script");
  8269. script1.type = "text/javascript";
  8270. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8271. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8272. const script2 = document.createElement("script");
  8273. script2.type = "text/javascript";
  8274. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8275. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8276. const script3 = document.createElement("script");
  8277. script3.type = "text/javascript";
  8278. script3.charset = "UTF-8";
  8279. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8280. const script4 = document.createElement("script");
  8281. script4.type = "text/javascript";
  8282. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8283. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8284. if (_iframe) {
  8285. if (str == 'doc') {
  8286. _iframe = _formdiv.querySelector('iframe')
  8287. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8288. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8289. _iframe.contentWindow.document.body.appendChild(script1);
  8290. _iframe.contentWindow.document.body.appendChild(script2);
  8291. // _iframe.contentWindow.document.body.appendChild(script3);
  8292. _iframe.contentWindow.document.body.appendChild(script4);
  8293. })
  8294. if (onloadListener) {
  8295. _iframe.contentDocument.location.reload()
  8296. } else {
  8297. _iframe.contentDocument.location.reload()
  8298. }
  8299. } else if (str == 'courseDesign') {
  8300. U.UF.DL.iframeLoad(_iframe, function () {
  8301. // _iframe.contentWindow.U.MD.O.W.load();
  8302. // _iframe.contentWindow.document.body.appendChild(script1);
  8303. _iframe.contentWindow.document.body.appendChild(script2);
  8304. _iframe.contentWindow.document.body.appendChild(script4);
  8305. })
  8306. } else if (str == 'mind') {
  8307. _iframe = _formdiv.querySelector('iframe')
  8308. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8309. //
  8310. _iframe.contentWindow.document.body.appendChild(script1);
  8311. _iframe.contentWindow.document.body.appendChild(script2);
  8312. _iframe.contentWindow.document.body.appendChild(script4);
  8313. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8314. })
  8315. if (onloadListener) {
  8316. _iframe.contentDocument.location.reload()
  8317. } else {
  8318. _iframe.contentDocument.location.reload()
  8319. }
  8320. } else if (str == 'whiteboard') {
  8321. _iframe = _formdiv.querySelector('iframe')
  8322. let onloadListener = _iframe.onload = () => {
  8323. _iframe.contentWindow.document.body.appendChild(script1);
  8324. _iframe.contentWindow.document.body.appendChild(script2);
  8325. _iframe.contentWindow.document.body.appendChild(script4);
  8326. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8327. };
  8328. // if (onloadListener) {
  8329. // try {
  8330. // _iframe.src += "?cocorobo="+new Date().getTime()
  8331. // _iframe.contentWindow.document.location.reload()
  8332. // } catch (error) {
  8333. // }
  8334. // } else {
  8335. // _iframe.contentDocument.location.reload()
  8336. // }
  8337. } else {
  8338. _iframe.onload = () => {
  8339. _iframe.contentWindow.document.body.appendChild(script1);
  8340. _iframe.contentWindow.document.body.appendChild(script2);
  8341. // _iframe.contentWindow.document.body.appendChild(script3);
  8342. _iframe.contentWindow.document.body.appendChild(script4);
  8343. };
  8344. }
  8345. _jie.onclick = async () => {
  8346. let text = ''
  8347. if (aTool == 1) {
  8348. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8349. } else if (aTool == 6) {
  8350. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8351. } else if (aTool == 3) {
  8352. text = await U.MD.D.I.getEditorContent(_iframe);
  8353. }
  8354. _loading.style.display = 'flex'
  8355. console.log(_loading);
  8356. var _ajs = _iframe.contentWindow.document.createElement("script");
  8357. _ajs.type = "text/javascript";
  8358. _ajs.innerHTML =
  8359. // 'console.log(' + _loading + ');\n' +
  8360. 'var _js = document.createElement("script");\n' +
  8361. '_js.type="text/javascript";\n' +
  8362. '_js.charset="UTF-8";\n' +
  8363. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8364. "_js.onload = function(){\n" +
  8365. ' var a = document.getElementsByTagName("img")\n' +
  8366. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8367. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8368. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8369. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8370. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8371. "beforeUpload_shishi(file," +
  8372. "'" +
  8373. _userid +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _cid +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. _stage +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. _task +
  8386. "'" +
  8387. ", " +
  8388. "'" +
  8389. _tool +
  8390. "'" +
  8391. ", " +
  8392. "'" +
  8393. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8394. "'" +
  8395. ", " +
  8396. "'" +
  8397. aTool +
  8398. "'" +
  8399. ", " +
  8400. "`" +
  8401. text +
  8402. "`" +
  8403. ")\n" +
  8404. " });\n" +
  8405. "}\n" +
  8406. "document.head.appendChild(_js);\n";
  8407. _iframe.contentWindow.document.head.appendChild(_ajs);
  8408. }
  8409. }
  8410. }
  8411. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8412. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8413. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8414. _userid = student.userid, //登录用户id
  8415. _username = student.student //用户名字
  8416. let _iframe;
  8417. let _cid = cid,
  8418. _stage = stage,
  8419. _task = task,
  8420. _tool = tool;
  8421. var _jie = $$("div", {
  8422. "style": {
  8423. "position": "absolute",
  8424. "bottom": "50px",
  8425. "right": "50px",
  8426. "zIndex": "9999",
  8427. "backgroundColor": "#2268bc",
  8428. "color": "#fff",
  8429. "padding": "12px 20px",
  8430. "cursor": "pointer",
  8431. "borderRadius": "4px",
  8432. },
  8433. "innerHTML": "提交作业"
  8434. })
  8435. let aTool = ''
  8436. let _loading = document.createElement('div')
  8437. _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;"
  8438. // _loading.id = "";
  8439. let _lchild = document.createElement('div')
  8440. let _limg = document.createElement('img')
  8441. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8442. _limg.style = "width: 26px;margin-right: 10px;"
  8443. _lchild.appendChild(_limg)
  8444. let _lspan = document.createElement('span')
  8445. _lspan.innerHTML = "上传中..."
  8446. _lchild.appendChild(_lspan)
  8447. _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%);"
  8448. _loading.appendChild(_lchild)
  8449. var _box = $$('div', {
  8450. "style": {
  8451. "position": "relative",
  8452. "width": "100%",
  8453. "height": "100%",
  8454. },
  8455. })
  8456. _box.appendChild(_loading)
  8457. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8458. switch (str) {
  8459. case "whiteboard":
  8460. aTool = 1;
  8461. _iframe = $$("iframe", {
  8462. "frameborder": "no",
  8463. "border": "0",
  8464. "scrolling ": "no",
  8465. "style": {
  8466. "cssText": "border:0;width:100%;height:100%"
  8467. },
  8468. "src": "https://beta.iwb.cocorobo.cn/"
  8469. })
  8470. _box.appendChild(_iframe);
  8471. _box.appendChild(_jie);
  8472. _formdiv = new U.UF.UI.form(
  8473. "电子白板-" + _username,
  8474. _box, {
  8475. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8476. "style": {
  8477. "width": "90%",
  8478. "height": "90%",
  8479. "overflow": 'hidden'
  8480. },
  8481. "onresize": function () { }
  8482. }, {
  8483. closecallback: function () { }
  8484. }, {
  8485. "style": {
  8486. "height": "36px"
  8487. }
  8488. }).form; //创建窗体
  8489. _taskbar = {
  8490. "id": str + _formdiv.id,
  8491. "style": {
  8492. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8493. },
  8494. "name": "电子白板",
  8495. "forms": _formdiv,
  8496. "click": function () {
  8497. U.MD.D.I.openApplication(str, obj, info);
  8498. }
  8499. }
  8500. break;
  8501. case "mind":
  8502. aTool = 3;
  8503. _iframe = $$("iframe", {
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0;width:100%;height:100%"
  8509. },
  8510. "src": "/kityminder-editor/dist/index.html"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "思维导图-" + _username,
  8516. _box, { //"/jsmind/example/demo.html"
  8517. "id": "mind" + cid + stage + task + tool + _userid,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //创建窗体
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8535. },
  8536. "name": "思维导图",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. case "MindMap":
  8544. aTool = 3;
  8545. _iframe = $$("iframe", {
  8546. "frameborder": "no",
  8547. "border": "0",
  8548. "scrolling ": "no",
  8549. "style": {
  8550. "cssText": "border:0;width:100%;height:100%"
  8551. },
  8552. "src": "//cloud.cocorobo.cn/mind/"
  8553. })
  8554. _box.appendChild(_iframe);
  8555. _box.appendChild(_jie);
  8556. _formdiv = new U.UF.UI.form(
  8557. "思维导图-" + _username,
  8558. _box, { //"/jsmind/example/demo.html"
  8559. "id": "mind" + cid + stage + task + tool + _userid,
  8560. "style": {
  8561. "width": "90%",
  8562. "height": "90%",
  8563. "overflow": 'hidden'
  8564. },
  8565. "onresize": function () { }
  8566. }, {
  8567. closecallback: function () { }
  8568. }, {
  8569. "style": {
  8570. "height": "36px"
  8571. }
  8572. }).form; //创建窗体
  8573. _taskbar = {
  8574. "id": str + _formdiv.id,
  8575. "style": {
  8576. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8577. },
  8578. "name": "思维导图",
  8579. "forms": _formdiv,
  8580. "click": function () {
  8581. U.MD.D.I.openApplication(str, obj, info);
  8582. }
  8583. }
  8584. break;
  8585. case "doc":
  8586. aTool = 6;
  8587. _iframe = $$("iframe", {
  8588. "frameborder": "no",
  8589. "border": "0",
  8590. "scrolling ": "no",
  8591. "style": {
  8592. "cssText": "border:0;width:100%;height:100%"
  8593. },
  8594. "src": "/Office/Word/WordEditArea.htm"
  8595. })
  8596. _box.appendChild(_iframe);
  8597. _box.appendChild(_jie);
  8598. _formdiv = new U.UF.UI.form(
  8599. "协同文档-" + _username,
  8600. _box, {
  8601. "id": "doc" + cid + stage + task + tool + _userid,
  8602. "style": {
  8603. "width": "90%",
  8604. "height": "90%",
  8605. "overflow": 'hidden'
  8606. },
  8607. "onresize": function () { }
  8608. }, {
  8609. closecallback: function () { }
  8610. }, {
  8611. "style": {
  8612. "height": "36px"
  8613. }
  8614. }).form; //创建窗体
  8615. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8616. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8617. })
  8618. _taskbar = {
  8619. "id": str + _formdiv.id,
  8620. "style": {
  8621. "backgroundImage": "url(/img/icon/doc.png)"
  8622. },
  8623. "name": "协同文档",
  8624. "forms": _formdiv,
  8625. "click": function () {
  8626. U.MD.D.I.openApplication(str, obj, info);
  8627. }
  8628. }
  8629. break;
  8630. case "mindNetwork": //好友打开
  8631. aTool = 7;
  8632. _iframe = $$("iframe", {
  8633. "webkitallowfullscreen": "",
  8634. "mozallowfullscreen": "",
  8635. "allowfullscreen": "",
  8636. "frameborder": "no",
  8637. "border": "0",
  8638. "scrolling ": "no",
  8639. "style": {
  8640. "cssText": "border:0; width:100%; height:100%;"
  8641. },
  8642. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8643. })
  8644. _box.appendChild(_iframe);
  8645. _box.appendChild(_jie);
  8646. _formdiv = new U.UF.UI.form(
  8647. "思维网格-" + _username,
  8648. _box, {
  8649. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8650. "style": {
  8651. "width": "90%",
  8652. "height": "90%",
  8653. "overflow": 'hidden'
  8654. },
  8655. "onresize": function () { }
  8656. }, {
  8657. closecallback: function () { }
  8658. }, {
  8659. "style": {
  8660. "height": "36px"
  8661. }
  8662. }).form; //创建窗体
  8663. _taskbar = {
  8664. "id": str + _formdiv.id,
  8665. "style": {
  8666. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8667. },
  8668. "name": "思维网格",
  8669. "forms": _formdiv,
  8670. "click": function () {
  8671. U.MD.D.I.openApplication(str, obj, info);
  8672. }
  8673. }
  8674. break;
  8675. case "courseDesign":
  8676. _iframe = $$("iframe", {
  8677. "webkitallowfullscreen": "",
  8678. "mozallowfullscreen": "",
  8679. "allowfullscreen": "",
  8680. "frameborder": "no",
  8681. "border": "0",
  8682. "scrolling ": "no",
  8683. "style": {
  8684. "cssText": "border:0; width:100%; height:100%;"
  8685. },
  8686. "src": "/course-design-vue"
  8687. })
  8688. _box.appendChild(_iframe);
  8689. _box.appendChild(_jie);
  8690. _formdiv = new U.UF.UI.form(
  8691. "项目设计-" + _username,
  8692. _box, {
  8693. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8694. "style": {
  8695. "width": "90%",
  8696. "height": "90%",
  8697. "overflow": 'hidden'
  8698. },
  8699. "onresize": function () { }
  8700. }, {
  8701. closecallback: function () { }
  8702. }, {
  8703. "style": {
  8704. "height": "36px"
  8705. }
  8706. }).form; //创建窗体
  8707. _taskbar = {
  8708. "id": str + _formdiv.id,
  8709. "style": {
  8710. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8711. },
  8712. "name": "项目设计",
  8713. "forms": _formdiv,
  8714. "click": function () {
  8715. U.MD.D.I.openApplication(str, obj, info);
  8716. }
  8717. }
  8718. break;
  8719. }
  8720. const script1 = document.createElement("script");
  8721. script1.type = "text/javascript";
  8722. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8723. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8724. const script2 = document.createElement("script");
  8725. script2.type = "text/javascript";
  8726. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8727. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8728. const script3 = document.createElement("script");
  8729. script3.type = "text/javascript";
  8730. script3.charset = "UTF-8";
  8731. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8732. const script4 = document.createElement("script");
  8733. script4.type = "text/javascript";
  8734. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8735. script4.src = window.origin + "/js/Common/jietu2E.js";
  8736. if (_iframe) {
  8737. if (str == 'doc') {
  8738. _iframe = _formdiv.querySelector('iframe')
  8739. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8740. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8741. _iframe.contentWindow.document.body.appendChild(script1);
  8742. _iframe.contentWindow.document.body.appendChild(script2);
  8743. // _iframe.contentWindow.document.body.appendChild(script3);
  8744. _iframe.contentWindow.document.body.appendChild(script4);
  8745. })
  8746. if (onloadListener) {
  8747. _iframe.contentDocument.location.reload()
  8748. } else {
  8749. _iframe.contentDocument.location.reload()
  8750. }
  8751. } else if (str == 'courseDesign') {
  8752. U.UF.DL.iframeLoad(_iframe, function () {
  8753. // _iframe.contentWindow.U.MD.O.W.load();
  8754. // _iframe.contentWindow.document.body.appendChild(script1);
  8755. _iframe.contentWindow.document.body.appendChild(script2);
  8756. _iframe.contentWindow.document.body.appendChild(script4);
  8757. })
  8758. } else if (str == 'mind') {
  8759. _iframe = _formdiv.querySelector('iframe')
  8760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8761. //
  8762. _iframe.contentWindow.document.body.appendChild(script1);
  8763. _iframe.contentWindow.document.body.appendChild(script2);
  8764. _iframe.contentWindow.document.body.appendChild(script4);
  8765. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8766. })
  8767. if (onloadListener) {
  8768. _iframe.contentDocument.location.reload()
  8769. } else {
  8770. _iframe.contentDocument.location.reload()
  8771. }
  8772. } else if (str == 'whiteboard') {
  8773. _iframe = _formdiv.querySelector('iframe')
  8774. let onloadListener = _iframe.onload = () => {
  8775. _iframe.contentWindow.document.body.appendChild(script1);
  8776. _iframe.contentWindow.document.body.appendChild(script2);
  8777. _iframe.contentWindow.document.body.appendChild(script4);
  8778. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8779. };
  8780. // if (onloadListener) {
  8781. // try {
  8782. // _iframe.src += "?cocorobo="+new Date().getTime()
  8783. // _iframe.contentWindow.document.location.reload()
  8784. // } catch (error) {
  8785. // }
  8786. // } else {
  8787. // _iframe.contentDocument.location.reload()
  8788. // }
  8789. } else {
  8790. _iframe.onload = () => {
  8791. _iframe.contentWindow.document.body.appendChild(script1);
  8792. _iframe.contentWindow.document.body.appendChild(script2);
  8793. // _iframe.contentWindow.document.body.appendChild(script3);
  8794. _iframe.contentWindow.document.body.appendChild(script4);
  8795. };
  8796. }
  8797. _jie.onclick = async () => {
  8798. let text = ''
  8799. if (aTool == 1) {
  8800. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8801. } else if (aTool == 6) {
  8802. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8803. } else if (aTool == 3) {
  8804. text = await U.MD.D.I.getEditorContent(_iframe);
  8805. }
  8806. _loading.style.display = 'flex'
  8807. console.log(_loading);
  8808. var _ajs = _iframe.contentWindow.document.createElement("script");
  8809. _ajs.type = "text/javascript";
  8810. _ajs.innerHTML =
  8811. // 'console.log(' + _loading + ');\n' +
  8812. 'var _js = document.createElement("script");\n' +
  8813. '_js.type="text/javascript";\n' +
  8814. '_js.charset="UTF-8";\n' +
  8815. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8816. "_js.onload = function(){\n" +
  8817. ' var a = document.getElementsByTagName("img")\n' +
  8818. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8819. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8820. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8821. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8822. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8823. "beforeUpload_shishi(file," +
  8824. "'" +
  8825. _userid +
  8826. "'" +
  8827. ", " +
  8828. "'" +
  8829. _cid +
  8830. "'" +
  8831. ", " +
  8832. "'" +
  8833. _stage +
  8834. "'" +
  8835. ", " +
  8836. "'" +
  8837. _task +
  8838. "'" +
  8839. ", " +
  8840. "'" +
  8841. _tool +
  8842. "'" +
  8843. ", " +
  8844. "'" +
  8845. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8846. "'" +
  8847. ", " +
  8848. "'" +
  8849. aTool +
  8850. "'" +
  8851. ", " +
  8852. "`" +
  8853. text +
  8854. "`" +
  8855. ")\n" +
  8856. " });\n" +
  8857. "}\n" +
  8858. "document.head.appendChild(_js);\n";
  8859. _iframe.contentWindow.document.head.appendChild(_ajs);
  8860. }
  8861. }
  8862. }
  8863. U.MD.D.I.getEditorContent = function (iframe) {
  8864. return new Promise((resolve, reject) => {
  8865. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8866. console.log(content);
  8867. resolve(content)
  8868. });
  8869. });
  8870. }
  8871. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8872. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8873. // if (res.value[0].length > 0) {
  8874. // // resolve(res.value[0][0].text);
  8875. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8876. // $(fileInput).val('');
  8877. // });
  8878. // }
  8879. // }, [], { "type": "GET", "withCredentials": true });
  8880. var xmlhttp;
  8881. var Mac, Sn, DeviceId
  8882. if (window.XMLHttpRequest) {
  8883. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8884. xmlhttp = new XMLHttpRequest();
  8885. } else {
  8886. // IE6, IE5 浏览器执行代码
  8887. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8888. }
  8889. xmlhttp.onreadystatechange = function () {
  8890. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8891. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8892. // resolve(res.value[0][0].text);
  8893. if (type == '2') {
  8894. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8895. } else if (type == '3') {
  8896. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8897. }
  8898. } else {
  8899. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8900. }
  8901. }
  8902. }
  8903. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8904. xmlhttp.send();
  8905. }
  8906. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8907. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8908. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8909. _userinfo = US.userInfo, //登录用户信息
  8910. _userid = US.userInfo.userid //登录用户id
  8911. let _iframe;
  8912. let _cid = cid,
  8913. _stage = stage,
  8914. _task = task,
  8915. _tool = tool;
  8916. var _jie = $$("div", {
  8917. "style": {
  8918. "position": "absolute",
  8919. "bottom": "50px",
  8920. "right": "50px",
  8921. "zIndex": "9999",
  8922. "backgroundColor": "#2268bc",
  8923. "color": "#fff",
  8924. "padding": "12px 20px",
  8925. "cursor": "pointer",
  8926. "borderRadius": "4px",
  8927. },
  8928. "innerHTML": "确认并提交"
  8929. })
  8930. let aTool = ''
  8931. let _loading = document.createElement('div')
  8932. _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;"
  8933. // _loading.id = "";
  8934. let _lchild = document.createElement('div')
  8935. let _limg = document.createElement('img')
  8936. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8937. _limg.style = "width: 26px;margin-right: 10px;"
  8938. _lchild.appendChild(_limg)
  8939. let _lspan = document.createElement('span')
  8940. _lspan.innerHTML = "上传中..."
  8941. _lchild.appendChild(_lspan)
  8942. _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%);"
  8943. _loading.appendChild(_lchild)
  8944. var _box = $$('div', {
  8945. "style": {
  8946. "position": "relative",
  8947. "width": "100%",
  8948. "height": "100%",
  8949. },
  8950. })
  8951. _box.appendChild(_loading)
  8952. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8953. switch (str) {
  8954. case "whiteboard":
  8955. aTool = 1;
  8956. _iframe = $$("iframe", {
  8957. "frameborder": "no",
  8958. "border": "0",
  8959. "scrolling ": "no",
  8960. "style": {
  8961. "cssText": "border:0;width:100%;height:100%"
  8962. },
  8963. "src": "https://beta.iwb.cocorobo.cn/"
  8964. })
  8965. _box.appendChild(_iframe);
  8966. _box.appendChild(_jie);
  8967. _formdiv = new U.UF.UI.form(
  8968. "电子白板",
  8969. _box, {
  8970. "id": "whiteboards" + cid + stage + task + tool,
  8971. "style": {
  8972. "width": "90%",
  8973. "height": "90%",
  8974. "overflow": 'hidden'
  8975. },
  8976. "onresize": function () { }
  8977. }, {
  8978. closecallback: function () { }
  8979. }, {
  8980. "style": {
  8981. "height": "36px"
  8982. }
  8983. }).form; //创建窗体
  8984. _taskbar = {
  8985. "id": str + _formdiv.id,
  8986. "style": {
  8987. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8988. },
  8989. "name": "电子白板",
  8990. "forms": _formdiv,
  8991. "click": function () {
  8992. U.MD.D.I.openApplication(str, obj, info);
  8993. }
  8994. }
  8995. break;
  8996. case "mind":
  8997. aTool = 3;
  8998. _iframe = $$("iframe", {
  8999. "frameborder": "no",
  9000. "border": "0",
  9001. "scrolling ": "no",
  9002. "style": {
  9003. "cssText": "border:0;width:100%;height:100%"
  9004. },
  9005. "src": "/kityminder-editor/dist/index.html"
  9006. });
  9007. _box.appendChild(_iframe);
  9008. _box.appendChild(_jie);
  9009. _formdiv = new U.UF.UI.form(
  9010. "思维导图",
  9011. _box, { //"/jsmind/example/demo.html"
  9012. "id": "minds" + cid + stage + task + tool,
  9013. "style": {
  9014. "width": "90%",
  9015. "height": "90%",
  9016. "overflow": 'hidden'
  9017. },
  9018. "onresize": function () { }
  9019. }, {
  9020. closecallback: function () { }
  9021. }, {
  9022. "style": {
  9023. "height": "36px"
  9024. }
  9025. }).form; //创建窗体
  9026. _taskbar = {
  9027. "id": str + _formdiv.id,
  9028. "style": {
  9029. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9030. },
  9031. "name": "思维导图",
  9032. "forms": _formdiv,
  9033. "click": function () {
  9034. U.MD.D.I.openApplication(str, obj, info);
  9035. }
  9036. }
  9037. break;
  9038. case "doc":
  9039. aTool = 6;
  9040. _iframe = $$("iframe", {
  9041. "frameborder": "no",
  9042. "border": "0",
  9043. "scrolling ": "no",
  9044. "style": {
  9045. "cssText": "border:0;width:100%;height:100%"
  9046. },
  9047. "src": "/Office/Word/WordEditArea.htm"
  9048. })
  9049. _box.appendChild(_iframe);
  9050. _box.appendChild(_jie);
  9051. _formdiv = new U.UF.UI.form(
  9052. "协同文档",
  9053. _box, {
  9054. "id": "docs" + cid + stage + task + tool,
  9055. "style": {
  9056. "width": "90%",
  9057. "height": "90%",
  9058. "overflow": 'hidden'
  9059. },
  9060. "onresize": function () { }
  9061. }, {
  9062. closecallback: function () { }
  9063. }, {
  9064. "style": {
  9065. "height": "36px"
  9066. }
  9067. }).form; //创建窗体
  9068. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9069. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9070. })
  9071. _taskbar = {
  9072. "id": str + _formdiv.id,
  9073. "style": {
  9074. "backgroundImage": "url(/img/icon/doc.png)"
  9075. },
  9076. "name": "协同文档",
  9077. "forms": _formdiv,
  9078. "click": function () {
  9079. U.MD.D.I.openApplication(str, obj, info);
  9080. }
  9081. }
  9082. break;
  9083. }
  9084. const script1 = document.createElement("script");
  9085. script1.type = "text/javascript";
  9086. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9087. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9088. const script2 = document.createElement("script");
  9089. script2.type = "text/javascript";
  9090. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9091. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9092. const script3 = document.createElement("script");
  9093. script3.type = "text/javascript";
  9094. script3.charset = "UTF-8";
  9095. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9096. const script4 = document.createElement("script");
  9097. script4.type = "text/javascript";
  9098. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9099. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9100. if (_iframe) {
  9101. if (str == 'doc') {
  9102. _iframe = _formdiv.querySelector('iframe')
  9103. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9104. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9105. _iframe.contentWindow.document.body.appendChild(script1);
  9106. _iframe.contentWindow.document.body.appendChild(script2);
  9107. // _iframe.contentWindow.document.body.appendChild(script3);
  9108. _iframe.contentWindow.document.body.appendChild(script4);
  9109. })
  9110. if (onloadListener) {
  9111. _iframe.contentDocument.location.reload()
  9112. } else {
  9113. _iframe.contentDocument.location.reload()
  9114. }
  9115. } else if (str == 'mind') {
  9116. _iframe = _formdiv.querySelector('iframe')
  9117. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9118. _iframe.contentWindow.document.body.appendChild(script1);
  9119. _iframe.contentWindow.document.body.appendChild(script2);
  9120. _iframe.contentWindow.document.body.appendChild(script4);
  9121. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9122. })
  9123. if (onloadListener) {
  9124. _iframe.contentDocument.location.reload()
  9125. } else {
  9126. _iframe.contentDocument.location.reload()
  9127. }
  9128. } else {
  9129. _iframe.onload = () => {
  9130. _iframe.contentWindow.document.body.appendChild(script1);
  9131. _iframe.contentWindow.document.body.appendChild(script2);
  9132. // _iframe.contentWindow.document.body.appendChild(script3);
  9133. _iframe.contentWindow.document.body.appendChild(script4);
  9134. };
  9135. }
  9136. _jie.onclick = async () => {
  9137. let text = ''
  9138. if (aTool == 6) {
  9139. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9140. } else if (aTool == 3) {
  9141. text = await U.MD.D.I.getEditorContent(_iframe);
  9142. }
  9143. _loading.style.display = 'flex'
  9144. console.log(_loading);
  9145. var _ajs = _iframe.contentWindow.document.createElement("script");
  9146. _ajs.type = "text/javascript";
  9147. _ajs.innerHTML =
  9148. // 'console.log(' + _loading + ');\n' +
  9149. 'var _js = document.createElement("script");\n' +
  9150. '_js.type="text/javascript";\n' +
  9151. '_js.charset="UTF-8";\n' +
  9152. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9153. "_js.onload = function(){\n" +
  9154. ' var a = document.getElementsByTagName("img")\n' +
  9155. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9156. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9157. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9158. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9159. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9160. "beforeUpload_shishi(file," +
  9161. "'" +
  9162. _userid +
  9163. "'" +
  9164. ", " +
  9165. "'" +
  9166. _cid +
  9167. "'" +
  9168. ", " +
  9169. "'" +
  9170. _stage +
  9171. "'" +
  9172. ", " +
  9173. "'" +
  9174. _task +
  9175. "'" +
  9176. ", " +
  9177. "'" +
  9178. _tool +
  9179. "'" +
  9180. ", " +
  9181. "'" +
  9182. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9183. "'" +
  9184. ", " +
  9185. "'" +
  9186. aTool +
  9187. "'" +
  9188. ", " +
  9189. "`" +
  9190. text +
  9191. "`" +
  9192. ")\n" +
  9193. " });\n" +
  9194. "}\n" +
  9195. "document.head.appendChild(_js);\n";
  9196. _iframe.contentWindow.document.head.appendChild(_ajs);
  9197. }
  9198. }
  9199. //U.MD.D.I.openClick(str);
  9200. //如果有任务栏信息
  9201. // if (_taskbar) {
  9202. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9203. // }
  9204. }
  9205. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9206. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9207. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9208. _userinfo = US.userInfo, //登录用户信息
  9209. _userid = US.userInfo.userid //登录用户id
  9210. let _iframe;
  9211. let _cid = cid,
  9212. _stage = stage,
  9213. _task = task,
  9214. _tool = tool;
  9215. var _jie = $$("div", {
  9216. "style": {
  9217. "position": "absolute",
  9218. "bottom": "50px",
  9219. "right": "50px",
  9220. "zIndex": "9999",
  9221. "backgroundColor": "#2268bc",
  9222. "color": "#fff",
  9223. "padding": "12px 20px",
  9224. "cursor": "pointer",
  9225. "borderRadius": "4px",
  9226. },
  9227. "innerHTML": "确认并提交"
  9228. })
  9229. let aTool = ''
  9230. let _loading = document.createElement('div')
  9231. _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;"
  9232. // _loading.id = "";
  9233. let _lchild = document.createElement('div')
  9234. let _limg = document.createElement('img')
  9235. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9236. _limg.style = "width: 26px;margin-right: 10px;"
  9237. _lchild.appendChild(_limg)
  9238. let _lspan = document.createElement('span')
  9239. _lspan.innerHTML = "上传中..."
  9240. _lchild.appendChild(_lspan)
  9241. _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%);"
  9242. _loading.appendChild(_lchild)
  9243. var _box = $$('div', {
  9244. "style": {
  9245. "position": "relative",
  9246. "width": "100%",
  9247. "height": "100%",
  9248. },
  9249. })
  9250. _box.appendChild(_loading)
  9251. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9252. switch (str) {
  9253. case "whiteboard":
  9254. aTool = 1;
  9255. _iframe = $$("iframe", {
  9256. "frameborder": "no",
  9257. "border": "0",
  9258. "scrolling ": "no",
  9259. "style": {
  9260. "cssText": "border:0;width:100%;height:100%"
  9261. },
  9262. "src": "https://beta.iwb.cocorobo.cn/"
  9263. })
  9264. _box.appendChild(_iframe);
  9265. _box.appendChild(_jie);
  9266. _formdiv = new U.UF.UI.form(
  9267. "电子白板",
  9268. _box, {
  9269. "id": "whiteboards" + cid + stage + task + tool,
  9270. "style": {
  9271. "width": "90%",
  9272. "height": "90%",
  9273. "overflow": 'hidden'
  9274. },
  9275. "onresize": function () { }
  9276. }, {
  9277. closecallback: function () { }
  9278. }, {
  9279. "style": {
  9280. "height": "36px"
  9281. }
  9282. }).form; //创建窗体
  9283. _taskbar = {
  9284. "id": str + _formdiv.id,
  9285. "style": {
  9286. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9287. },
  9288. "name": "电子白板",
  9289. "forms": _formdiv,
  9290. "click": function () {
  9291. U.MD.D.I.openApplication(str, obj, info);
  9292. }
  9293. }
  9294. break;
  9295. case "mind":
  9296. aTool = 3;
  9297. _iframe = $$("iframe", {
  9298. "frameborder": "no",
  9299. "border": "0",
  9300. "scrolling ": "no",
  9301. "style": {
  9302. "cssText": "border:0;width:100%;height:100%"
  9303. },
  9304. "src": "/kityminder-editor/dist/index.html"
  9305. });
  9306. _box.appendChild(_iframe);
  9307. _box.appendChild(_jie);
  9308. _formdiv = new U.UF.UI.form(
  9309. "思维导图",
  9310. _box, { //"/jsmind/example/demo.html"
  9311. "id": "minds" + cid + stage + task + tool,
  9312. "style": {
  9313. "width": "90%",
  9314. "height": "90%",
  9315. "overflow": 'hidden'
  9316. },
  9317. "onresize": function () { }
  9318. }, {
  9319. closecallback: function () { }
  9320. }, {
  9321. "style": {
  9322. "height": "36px"
  9323. }
  9324. }).form; //创建窗体
  9325. _taskbar = {
  9326. "id": str + _formdiv.id,
  9327. "style": {
  9328. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9329. },
  9330. "name": "思维导图",
  9331. "forms": _formdiv,
  9332. "click": function () {
  9333. U.MD.D.I.openApplication(str, obj, info);
  9334. }
  9335. }
  9336. break;
  9337. case "doc":
  9338. aTool = 6;
  9339. _iframe = $$("iframe", {
  9340. "frameborder": "no",
  9341. "border": "0",
  9342. "scrolling ": "no",
  9343. "style": {
  9344. "cssText": "border:0;width:100%;height:100%"
  9345. },
  9346. "src": "/Office/Word/WordEditArea.htm"
  9347. })
  9348. _box.appendChild(_iframe);
  9349. _box.appendChild(_jie);
  9350. _formdiv = new U.UF.UI.form(
  9351. "协同文档",
  9352. _box, {
  9353. "id": "docs" + cid + stage + task + tool,
  9354. "style": {
  9355. "width": "90%",
  9356. "height": "90%",
  9357. "overflow": 'hidden'
  9358. },
  9359. "onresize": function () { }
  9360. }, {
  9361. closecallback: function () { }
  9362. }, {
  9363. "style": {
  9364. "height": "36px"
  9365. }
  9366. }).form; //创建窗体
  9367. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9368. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9369. })
  9370. _taskbar = {
  9371. "id": str + _formdiv.id,
  9372. "style": {
  9373. "backgroundImage": "url(/img/icon/doc.png)"
  9374. },
  9375. "name": "协同文档",
  9376. "forms": _formdiv,
  9377. "click": function () {
  9378. U.MD.D.I.openApplication(str, obj, info);
  9379. }
  9380. }
  9381. break;
  9382. }
  9383. const script1 = document.createElement("script");
  9384. script1.type = "text/javascript";
  9385. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9386. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9387. const script2 = document.createElement("script");
  9388. script2.type = "text/javascript";
  9389. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9390. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9391. const script3 = document.createElement("script");
  9392. script3.type = "text/javascript";
  9393. script3.charset = "UTF-8";
  9394. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9395. const script4 = document.createElement("script");
  9396. script4.type = "text/javascript";
  9397. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9398. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9399. if (_iframe) {
  9400. if (str == 'doc') {
  9401. _iframe = _formdiv.querySelector('iframe')
  9402. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9403. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9404. _iframe.contentWindow.document.body.appendChild(script1);
  9405. _iframe.contentWindow.document.body.appendChild(script2);
  9406. // _iframe.contentWindow.document.body.appendChild(script3);
  9407. _iframe.contentWindow.document.body.appendChild(script4);
  9408. })
  9409. if (onloadListener) {
  9410. _iframe.contentDocument.location.reload()
  9411. } else {
  9412. _iframe.contentDocument.location.reload()
  9413. }
  9414. } else if (str == 'mind') {
  9415. _iframe = _formdiv.querySelector('iframe')
  9416. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9417. _iframe.contentWindow.document.body.appendChild(script1);
  9418. _iframe.contentWindow.document.body.appendChild(script2);
  9419. _iframe.contentWindow.document.body.appendChild(script4);
  9420. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9421. })
  9422. if (onloadListener) {
  9423. _iframe.contentDocument.location.reload()
  9424. } else {
  9425. _iframe.contentDocument.location.reload()
  9426. }
  9427. } else {
  9428. _iframe.onload = () => {
  9429. _iframe.contentWindow.document.body.appendChild(script1);
  9430. _iframe.contentWindow.document.body.appendChild(script2);
  9431. // _iframe.contentWindow.document.body.appendChild(script3);
  9432. _iframe.contentWindow.document.body.appendChild(script4);
  9433. };
  9434. }
  9435. _jie.onclick = async () => {
  9436. let text = ''
  9437. if (aTool == 6) {
  9438. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9439. } else if (aTool == 3) {
  9440. text = await U.MD.D.I.getEditorContent(_iframe);
  9441. }
  9442. _loading.style.display = 'flex'
  9443. console.log(_loading);
  9444. var _ajs = _iframe.contentWindow.document.createElement("script");
  9445. _ajs.type = "text/javascript";
  9446. _ajs.innerHTML =
  9447. // 'console.log(' + _loading + ');\n' +
  9448. 'var _js = document.createElement("script");\n' +
  9449. '_js.type="text/javascript";\n' +
  9450. '_js.charset="UTF-8";\n' +
  9451. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9452. "_js.onload = function(){\n" +
  9453. ' var a = document.getElementsByTagName("img")\n' +
  9454. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9455. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9456. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9457. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9458. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9459. "beforeUpload_shishi(file," +
  9460. "'" +
  9461. _userid +
  9462. "'" +
  9463. ", " +
  9464. "'" +
  9465. _cid +
  9466. "'" +
  9467. ", " +
  9468. "'" +
  9469. _stage +
  9470. "'" +
  9471. ", " +
  9472. "'" +
  9473. _task +
  9474. "'" +
  9475. ", " +
  9476. "'" +
  9477. _tool +
  9478. "'" +
  9479. ", " +
  9480. "'" +
  9481. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9482. "'" +
  9483. ", " +
  9484. "'" +
  9485. aTool +
  9486. "'" +
  9487. ", " +
  9488. "`" +
  9489. text +
  9490. "`" +
  9491. ")\n" +
  9492. " });\n" +
  9493. "}\n" +
  9494. "document.head.appendChild(_js);\n";
  9495. _iframe.contentWindow.document.head.appendChild(_ajs);
  9496. }
  9497. }
  9498. //U.MD.D.I.openClick(str);
  9499. //如果有任务栏信息
  9500. // if (_taskbar) {
  9501. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9502. // }
  9503. }
  9504. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9505. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9506. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9507. _userinfo = US.userInfo, //登录用户信息
  9508. _userid = US.userInfo.userid //登录用户id
  9509. let _iframe;
  9510. let _cid = cid,
  9511. _stage = stage,
  9512. _task = task,
  9513. _tool = tool;
  9514. var _jie = $$("div", {
  9515. "style": {
  9516. "position": "absolute",
  9517. "bottom": "50px",
  9518. "right": "50px",
  9519. "zIndex": "9999",
  9520. "backgroundColor": "#2268bc",
  9521. "color": "#fff",
  9522. "padding": "12px 20px",
  9523. "cursor": "pointer",
  9524. "borderRadius": "4px",
  9525. },
  9526. "innerHTML": "上传模板"
  9527. })
  9528. let aTool = ''
  9529. let _loading = document.createElement('div')
  9530. _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;"
  9531. // _loading.id = "";
  9532. let _lchild = document.createElement('div')
  9533. let _limg = document.createElement('img')
  9534. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9535. _limg.style = "width: 26px;margin-right: 10px;"
  9536. _lchild.appendChild(_limg)
  9537. let _lspan = document.createElement('span')
  9538. _lspan.innerHTML = "上传中..."
  9539. _lchild.appendChild(_lspan)
  9540. _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%);"
  9541. _loading.appendChild(_lchild)
  9542. var _box = $$('div', {
  9543. "style": {
  9544. "position": "relative",
  9545. "width": "100%",
  9546. "height": "100%",
  9547. },
  9548. })
  9549. _box.appendChild(_loading)
  9550. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9551. switch (str) {
  9552. case "whiteboard":
  9553. aTool = 1;
  9554. _iframe = $$("iframe", {
  9555. "frameborder": "no",
  9556. "border": "0",
  9557. "scrolling ": "no",
  9558. "style": {
  9559. "cssText": "border:0;width:100%;height:100%"
  9560. },
  9561. "src": "https://beta.iwb.cocorobo.cn/"
  9562. })
  9563. _box.appendChild(_iframe);
  9564. _box.appendChild(_jie);
  9565. _formdiv = new U.UF.UI.form(
  9566. "电子白板",
  9567. _box, {
  9568. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9569. "style": {
  9570. "width": "90%",
  9571. "height": "90%",
  9572. "overflow": 'hidden'
  9573. },
  9574. "onresize": function () { }
  9575. }, {
  9576. closecallback: function () { }
  9577. }, {
  9578. "style": {
  9579. "height": "36px"
  9580. }
  9581. }).form; //创建窗体
  9582. _taskbar = {
  9583. "id": str + _formdiv.id,
  9584. "style": {
  9585. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9586. },
  9587. "name": "电子白板",
  9588. "forms": _formdiv,
  9589. "click": function () {
  9590. U.MD.D.I.openApplication(str, obj, info);
  9591. }
  9592. }
  9593. break;
  9594. case "mind":
  9595. aTool = 3;
  9596. _iframe = $$("iframe", {
  9597. "frameborder": "no",
  9598. "border": "0",
  9599. "scrolling ": "no",
  9600. "style": {
  9601. "cssText": "border:0;width:100%;height:100%"
  9602. },
  9603. "src": "/kityminder-editor/dist/index.html"
  9604. });
  9605. _box.appendChild(_iframe);
  9606. _box.appendChild(_jie);
  9607. _formdiv = new U.UF.UI.form(
  9608. "思维导图",
  9609. _box, { //"/jsmind/example/demo.html"
  9610. "id": "minds_Yu" + cid + stage + task + tool,
  9611. "style": {
  9612. "width": "90%",
  9613. "height": "90%",
  9614. "overflow": 'hidden'
  9615. },
  9616. "onresize": function () { }
  9617. }, {
  9618. closecallback: function () { }
  9619. }, {
  9620. "style": {
  9621. "height": "36px"
  9622. }
  9623. }).form; //创建窗体
  9624. _taskbar = {
  9625. "id": str + _formdiv.id,
  9626. "style": {
  9627. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9628. },
  9629. "name": "思维导图",
  9630. "forms": _formdiv,
  9631. "click": function () {
  9632. U.MD.D.I.openApplication(str, obj, info);
  9633. }
  9634. }
  9635. break;
  9636. case "doc":
  9637. aTool = 6;
  9638. _iframe = $$("iframe", {
  9639. "frameborder": "no",
  9640. "border": "0",
  9641. "scrolling ": "no",
  9642. "style": {
  9643. "cssText": "border:0;width:100%;height:100%"
  9644. },
  9645. "src": "/Office/Word/WordEditArea.htm"
  9646. })
  9647. _box.appendChild(_iframe);
  9648. _box.appendChild(_jie);
  9649. _formdiv = new U.UF.UI.form(
  9650. "协同文档",
  9651. _box, {
  9652. "id": "docs_Yu" + cid + stage + task + tool,
  9653. "style": {
  9654. "width": "90%",
  9655. "height": "90%",
  9656. "overflow": 'hidden'
  9657. },
  9658. "onresize": function () { }
  9659. }, {
  9660. closecallback: function () { }
  9661. }, {
  9662. "style": {
  9663. "height": "36px"
  9664. }
  9665. }).form; //创建窗体
  9666. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9667. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9668. })
  9669. _taskbar = {
  9670. "id": str + _formdiv.id,
  9671. "style": {
  9672. "backgroundImage": "url(/img/icon/doc.png)"
  9673. },
  9674. "name": "协同文档",
  9675. "forms": _formdiv,
  9676. "click": function () {
  9677. U.MD.D.I.openApplication(str, obj, info);
  9678. }
  9679. }
  9680. break;
  9681. case "CocoPi":
  9682. aTool = 57;
  9683. _iframe = $$("iframe", {
  9684. "allowpaymentrequest": "allowpaymentrequest",
  9685. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9686. "webkitallowfullscreen": "",
  9687. "mozallowfullscreen": "",
  9688. "frameborder": "no",
  9689. "border": "0",
  9690. "scrolling ": "no",
  9691. "style": {
  9692. "cssText": "border:0;width:100%;height:100%"
  9693. },
  9694. "src": "https://pi.cocorobo.cn/"
  9695. })
  9696. _box.appendChild(_iframe);
  9697. _box.appendChild(_jie);
  9698. _formdiv = new U.UF.UI.form(
  9699. "CocoPi",
  9700. _box, {
  9701. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9702. "style": {
  9703. "width": "90%",
  9704. "height": "90%",
  9705. "overflow": 'hidden'
  9706. },
  9707. "onresize": function () { }
  9708. }, {
  9709. closecallback: function () { }
  9710. }, {
  9711. "style": {
  9712. "height": "36px"
  9713. }
  9714. }).form; //创建窗体
  9715. _taskbar = {
  9716. "id": str + _formdiv.id,
  9717. "style": {
  9718. "backgroundImage": "url(/img/icon/cocopi.png)"
  9719. },
  9720. "name": "CocoPi",
  9721. "forms": _formdiv,
  9722. "click": function () {
  9723. U.MD.D.I.openApplication(str, obj, info);
  9724. }
  9725. }
  9726. break;
  9727. }
  9728. if (_iframe) {
  9729. if (str == 'doc') {
  9730. _iframe = _formdiv.querySelector('iframe')
  9731. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9732. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9733. })
  9734. if (onloadListener) {
  9735. _iframe.contentDocument.location.reload()
  9736. } else {
  9737. _iframe.contentDocument.location.reload()
  9738. }
  9739. } else if (str == 'mind') {
  9740. _iframe = _formdiv.querySelector('iframe')
  9741. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9742. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9743. })
  9744. if (onloadListener) {
  9745. _iframe.contentDocument.location.reload()
  9746. } else {
  9747. _iframe.contentDocument.location.reload()
  9748. }
  9749. } else if (str == 'whiteboard') {
  9750. _iframe = _formdiv.querySelector('iframe')
  9751. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9752. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9753. })
  9754. // if (onloadListener) {
  9755. // try {
  9756. // _iframe.src += "?cocorobo="+new Date().getTime()
  9757. // _iframe.contentWindow.document.location.reload()
  9758. // } catch (error) {
  9759. // }
  9760. // } else {
  9761. // _iframe.contentDocument.location.reload()
  9762. // }
  9763. } else if (str == 'CocoPi') {
  9764. _iframe = _formdiv.querySelector('iframe')
  9765. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9766. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9767. })
  9768. if (onloadListener) {
  9769. _iframe.contentDocument.location.reload()
  9770. } else {
  9771. _iframe.contentDocument.location.reload()
  9772. }
  9773. } else {
  9774. _iframe.onload = () => { };
  9775. }
  9776. _jie.onclick = async () => {
  9777. let text = ''
  9778. let type = '2'
  9779. if (aTool == 1) {
  9780. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9781. type = '3'
  9782. } else if (aTool == 6) {
  9783. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9784. type = '1'
  9785. } else if (aTool == 3) {
  9786. text = await U.MD.D.I.getEditorContent(_iframe);
  9787. type = '2'
  9788. } else if (aTool == 57) {
  9789. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9790. type = '4'
  9791. }
  9792. _loading.style.display = 'flex'
  9793. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9794. }
  9795. }
  9796. //U.MD.D.I.openClick(str);
  9797. //如果有任务栏信息
  9798. // if (_taskbar) {
  9799. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9800. // }
  9801. }
  9802. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9803. var xmlhttp;
  9804. var Mac, Sn, DeviceId
  9805. if (window.XMLHttpRequest) {
  9806. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9807. xmlhttp = new XMLHttpRequest();
  9808. } else {
  9809. // IE6, IE5 浏览器执行代码
  9810. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9811. }
  9812. xmlhttp.onreadystatechange = function () {
  9813. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9814. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9815. // resolve(res.value[0][0].text);
  9816. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9817. }
  9818. }
  9819. }
  9820. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9821. xmlhttp.send();
  9822. }
  9823. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9824. var xmlhttp;
  9825. var Mac, Sn, DeviceId
  9826. if (window.XMLHttpRequest) {
  9827. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9828. xmlhttp = new XMLHttpRequest();
  9829. } else {
  9830. // IE6, IE5 浏览器执行代码
  9831. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9832. }
  9833. xmlhttp.onreadystatechange = function () {
  9834. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9835. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9836. // resolve(res.value[0][0].text);
  9837. if (type == '2') {
  9838. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9839. } else if (type == '3') {
  9840. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9841. } else if (type == '4') {
  9842. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9843. }
  9844. } else {
  9845. if (type == '2') {
  9846. iframe.contentWindow.editor.minder.importData('json', '')
  9847. } else if (type == '3') {
  9848. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9849. } else if (type == '4') {
  9850. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9851. }
  9852. }
  9853. }
  9854. }
  9855. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9856. xmlhttp.send();
  9857. }
  9858. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9859. var xmlhttp;
  9860. var Mac, Sn, DeviceId
  9861. if (window.XMLHttpRequest) {
  9862. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9863. xmlhttp = new XMLHttpRequest();
  9864. } else {
  9865. // IE6, IE5 浏览器执行代码
  9866. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9867. }
  9868. xmlhttp.onreadystatechange = function () {
  9869. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9870. if (xmlhttp.response) {
  9871. // resolve(res.value[0][0].text);
  9872. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9873. // $(fileInput).val('');
  9874. // });
  9875. span.innerHTML = '上传成功'
  9876. setTimeout(() => {
  9877. loading.style.display = 'none'
  9878. }, 1000);
  9879. }
  9880. }
  9881. }
  9882. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9883. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9884. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9885. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9886. // 设置请求头,表示请求体的编码格式
  9887. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9888. // 设置请求体,使用url-encoded格式的数据
  9889. }
  9890. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9891. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9892. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9893. _userinfo = US.userInfo, //登录用户信息
  9894. _userid = US.userInfo.userid //登录用户id
  9895. let _iframe;
  9896. let _cid = cid,
  9897. _stage = stage,
  9898. _task = task,
  9899. _tool = tool;
  9900. var _jie = $$("div", {
  9901. "style": {
  9902. "position": "absolute",
  9903. "bottom": "50px",
  9904. "right": "50px",
  9905. "zIndex": "9999",
  9906. "backgroundColor": "#2268bc",
  9907. "color": "#fff",
  9908. "padding": "12px 20px",
  9909. "cursor": "pointer",
  9910. "borderRadius": "4px",
  9911. },
  9912. "innerHTML": "提交作业"
  9913. })
  9914. let aTool = ''
  9915. let _loading = document.createElement('div')
  9916. _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;"
  9917. // _loading.id = "";
  9918. let _lchild = document.createElement('div')
  9919. let _limg = document.createElement('img')
  9920. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9921. _limg.style = "width: 26px;margin-right: 10px;"
  9922. _lchild.appendChild(_limg)
  9923. let _lspan = document.createElement('span')
  9924. _lspan.innerHTML = "上传中..."
  9925. _lchild.appendChild(_lspan)
  9926. _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%);"
  9927. _loading.appendChild(_lchild)
  9928. var _box = $$('div', {
  9929. "style": {
  9930. "position": "relative",
  9931. "width": "100%",
  9932. "height": "100%",
  9933. },
  9934. })
  9935. _box.appendChild(_loading)
  9936. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9937. switch (str) {
  9938. case "CocoPi":
  9939. aTool = 57;
  9940. _iframe = $$("iframe", {
  9941. "allowpaymentrequest": "allowpaymentrequest",
  9942. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9943. "webkitallowfullscreen": "",
  9944. "mozallowfullscreen": "",
  9945. "frameborder": "no",
  9946. "border": "0",
  9947. "scrolling ": "no",
  9948. "style": {
  9949. "cssText": "border:0;width:100%;height:100%"
  9950. },
  9951. "src": "https://pi.cocorobo.cn/"
  9952. })
  9953. _box.appendChild(_iframe);
  9954. _box.appendChild(_jie);
  9955. _formdiv = new U.UF.UI.form(
  9956. "CocoPi",
  9957. _box, {
  9958. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9959. "style": {
  9960. "width": "90%",
  9961. "height": "90%",
  9962. "overflow": 'hidden'
  9963. },
  9964. "onresize": function () { }
  9965. }, {
  9966. closecallback: function () { }
  9967. }, {
  9968. "style": {
  9969. "height": "36px"
  9970. }
  9971. }).form; //创建窗体
  9972. _taskbar = {
  9973. "id": str + _formdiv.id,
  9974. "style": {
  9975. "backgroundImage": "url(/img/icon/cocopi.png)"
  9976. },
  9977. "name": "CocoPi",
  9978. "forms": _formdiv,
  9979. "click": function () {
  9980. U.MD.D.I.openApplication(str, obj, info);
  9981. }
  9982. }
  9983. break;
  9984. }
  9985. if (_iframe) {
  9986. if (str == 'CocoPi') {
  9987. _iframe = _formdiv.querySelector('iframe')
  9988. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9989. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9990. })
  9991. if (onloadListener) {
  9992. _iframe.contentDocument.location.reload()
  9993. } else {
  9994. _iframe.contentDocument.location.reload()
  9995. }
  9996. }
  9997. _jie.onclick = async () => {
  9998. let text = ''
  9999. if (aTool == 57) {
  10000. text = _iframe.contentWindow.getLoadXmlStr()
  10001. }
  10002. _loading.style.display = 'flex'
  10003. console.log(_loading);
  10004. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10005. _loading.style.display = 'none'
  10006. let _div = document.createElement('div')
  10007. _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;"
  10008. let _inner = document.createElement('div')
  10009. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10010. _inner.innerHTML = "上传成功"
  10011. _div.appendChild(_inner)
  10012. _iframe.contentWindow.window.document.body.appendChild(_div)
  10013. _div.onclick = () => {
  10014. _iframe.contentWindow.window.document.body.removeChild(_div)
  10015. }
  10016. setTimeout(() => {
  10017. _iframe.contentWindow.window.document.body.removeChild(_div)
  10018. }, 1000);
  10019. }, [], { "type": "POST", "withCredentials": true });
  10020. }
  10021. }
  10022. }
  10023. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10024. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10025. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10026. _userid = student.userid, //登录用户id
  10027. _username = student.student //用户名字
  10028. let _iframe;
  10029. let _cid = cid,
  10030. _stage = stage,
  10031. _task = task,
  10032. _tool = tool;
  10033. var _jie = $$("div", {
  10034. "style": {
  10035. "position": "absolute",
  10036. "bottom": "50px",
  10037. "right": "50px",
  10038. "zIndex": "9999",
  10039. "backgroundColor": "#2268bc",
  10040. "color": "#fff",
  10041. "padding": "12px 20px",
  10042. "cursor": "pointer",
  10043. "borderRadius": "4px",
  10044. },
  10045. "innerHTML": "提交作业"
  10046. })
  10047. let aTool = ''
  10048. let _loading = document.createElement('div')
  10049. _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;"
  10050. // _loading.id = "";
  10051. let _lchild = document.createElement('div')
  10052. let _limg = document.createElement('img')
  10053. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10054. _limg.style = "width: 26px;margin-right: 10px;"
  10055. _lchild.appendChild(_limg)
  10056. let _lspan = document.createElement('span')
  10057. _lspan.innerHTML = "上传中..."
  10058. _lchild.appendChild(_lspan)
  10059. _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%);"
  10060. _loading.appendChild(_lchild)
  10061. var _box = $$('div', {
  10062. "style": {
  10063. "position": "relative",
  10064. "width": "100%",
  10065. "height": "100%",
  10066. },
  10067. })
  10068. _box.appendChild(_loading)
  10069. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10070. switch (str) {
  10071. case "CocoPi":
  10072. aTool = 57;
  10073. _iframe = $$("iframe", {
  10074. "allowpaymentrequest": "allowpaymentrequest",
  10075. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10076. "webkitallowfullscreen": "",
  10077. "mozallowfullscreen": "",
  10078. "frameborder": "no",
  10079. "border": "0",
  10080. "scrolling ": "no",
  10081. "style": {
  10082. "cssText": "border:0;width:100%;height:100%"
  10083. },
  10084. "src": "https://pi.cocorobo.cn/"
  10085. })
  10086. _box.appendChild(_iframe);
  10087. _box.appendChild(_jie);
  10088. _formdiv = new U.UF.UI.form(
  10089. "CocoPi-" + _username,
  10090. _box, {
  10091. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10092. "style": {
  10093. "width": "90%",
  10094. "height": "90%",
  10095. "overflow": 'hidden'
  10096. },
  10097. "onresize": function () { }
  10098. }, {
  10099. closecallback: function () { }
  10100. }, {
  10101. "style": {
  10102. "height": "36px"
  10103. }
  10104. }).form; //创建窗体
  10105. _taskbar = {
  10106. "id": str + _formdiv.id,
  10107. "style": {
  10108. "backgroundImage": "url(/img/icon/cocopi.png)"
  10109. },
  10110. "name": "CocoPi",
  10111. "forms": _formdiv,
  10112. "click": function () {
  10113. U.MD.D.I.openApplication(str, obj, info);
  10114. }
  10115. }
  10116. break;
  10117. }
  10118. if (_iframe) {
  10119. if (str == 'CocoPi') {
  10120. _iframe = _formdiv.querySelector('iframe')
  10121. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10122. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10123. })
  10124. if (onloadListener) {
  10125. _iframe.contentDocument.location.reload()
  10126. } else {
  10127. _iframe.contentDocument.location.reload()
  10128. }
  10129. }
  10130. _jie.onclick = async () => {
  10131. let text = ''
  10132. if (aTool == 57) {
  10133. text = _iframe.contentWindow.getLoadXmlStr()
  10134. }
  10135. _loading.style.display = 'flex'
  10136. console.log(_loading);
  10137. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10138. _loading.style.display = 'none'
  10139. let _div = document.createElement('div')
  10140. _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;"
  10141. let _inner = document.createElement('div')
  10142. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10143. _inner.innerHTML = "上传成功"
  10144. _div.appendChild(_inner)
  10145. _iframe.contentWindow.window.document.body.appendChild(_div)
  10146. _div.onclick = () => {
  10147. _iframe.contentWindow.window.document.body.removeChild(_div)
  10148. }
  10149. setTimeout(() => {
  10150. _iframe.contentWindow.window.document.body.removeChild(_div)
  10151. }, 1000);
  10152. }, [], { "type": "POST", "withCredentials": true });
  10153. }
  10154. }
  10155. }
  10156. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10157. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10158. if (res.value[0].length > 0) {
  10159. if (atool == 57) {
  10160. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10161. }
  10162. } else {
  10163. if (atool == 57) {
  10164. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10165. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10166. }
  10167. }
  10168. }, [], { "type": "POST", "withCredentials": true });
  10169. }