DeskTop.js 656 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529
  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. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  909. ];
  910. //dsei
  911. U.MD.D.I.dseiStudentDeskIcon = [
  912. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  913. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  914. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  915. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  917. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  918. ];
  919. //未来教育基地
  920. U.MD.D.I.szjkyTeacherDeskIcon = [
  921. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  922. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  926. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  927. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  928. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  929. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  930. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  931. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  932. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  933. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  934. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  937. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  938. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  939. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  940. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  941. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  942. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  943. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  944. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  945. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  946. ];
  947. //未来教育基地
  948. U.MD.D.I.szjkyAdminDeskIcon = [
  949. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  950. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  951. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  952. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  953. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  954. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  955. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  956. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  957. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  958. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  959. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  960. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  961. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  962. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  965. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  966. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  967. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  968. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  969. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  970. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  971. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  972. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  973. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  974. ];
  975. //未来教育基地
  976. U.MD.D.I.szjkyStudentDeskIcon = [
  977. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  978. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  981. ];
  982. //成华教育局
  983. U.MD.D.I.chjyjTeacherDeskIcon = [
  984. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  985. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  989. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  990. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  991. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  992. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  993. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  994. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  997. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  998. ];
  999. //成华教育局chjyj
  1000. U.MD.D.I.chjyjAdminDeskIcon = [
  1001. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1002. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1006. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1007. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1008. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1009. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1010. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1011. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1012. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. ];
  1017. //成华教育局chjyj
  1018. U.MD.D.I.chjyjStudentDeskIcon = [
  1019. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1020. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1021. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. ];
  1024. //tpc
  1025. U.MD.D.I.tpcStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcTeacherDeskIcon = [
  1033. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1034. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcAdminDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //THU-IOE
  1052. U.MD.D.I.thuioeTeacherDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1056. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1060. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1061. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1062. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1063. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1064. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1065. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1066. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1067. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1068. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1069. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1070. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1071. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1072. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1073. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1074. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1075. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1076. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1077. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1078. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1079. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1080. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1081. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1082. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1083. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1084. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1085. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //THU-IOE
  1094. U.MD.D.I.thuioeStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //jccssyl
  1101. U.MD.D.I.jccssylTeacherDeskIcon = [
  1102. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1103. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1104. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1105. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1109. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1114. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1115. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1118. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1119. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1120. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1121. ];
  1122. //jccssyl
  1123. U.MD.D.I.jccssylStudentDeskIcon = [
  1124. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1125. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1126. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. ];
  1129. //cale
  1130. U.MD.D.I.caleTeacherDeskIcon = [
  1131. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1132. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1134. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1138. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1139. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1140. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1141. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1142. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1143. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1144. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1147. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1148. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1150. ];
  1151. //cale
  1152. U.MD.D.I.caleStudentDeskIcon = [
  1153. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1154. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1155. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. ];
  1158. //lqwmsgzs
  1159. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1160. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1161. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1163. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1167. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1168. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1169. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1170. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1171. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1172. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1173. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1174. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1175. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1176. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1177. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1178. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1179. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1180. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1181. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1182. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1183. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1184. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1185. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1186. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1187. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1188. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1189. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1190. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1191. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1192. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1193. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //lqwmsgzs
  1199. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //盐田区幼儿园
  1206. U.MD.D.I.ytyTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1213. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1216. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1217. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1218. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1220. ];
  1221. //盐田区幼儿园
  1222. U.MD.D.I.ytyStudentDeskIcon = [
  1223. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. ];
  1227. //scnuai
  1228. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1234. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1235. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1236. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1237. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1238. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1239. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1240. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1241. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1243. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1244. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1245. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1246. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1247. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1248. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1249. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1250. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1251. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1252. ];
  1253. //scnuai
  1254. U.MD.D.I.scnuaiAdminDeskIcon = [
  1255. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1256. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1257. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1258. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1259. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1260. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1261. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1262. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1263. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1264. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1265. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1266. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1267. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1273. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1274. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1275. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1276. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1277. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1278. ];
  1279. //scnuai
  1280. U.MD.D.I.scnuaiStudentDeskIcon = [
  1281. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1282. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1283. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1284. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1285. ];
  1286. //cocobiz
  1287. U.MD.D.I.cocobizteacherDeskIcon = [
  1288. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1289. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1290. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1291. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1295. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1296. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1297. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1298. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1299. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1300. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1301. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1303. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1304. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1306. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1307. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1308. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizStudentDeskIcon = [
  1312. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1314. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1315. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1318. ];
  1319. //xxzjky
  1320. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1321. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1322. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1324. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1325. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1326. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1327. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1328. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1329. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1330. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1331. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1332. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1333. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1334. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1336. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1337. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1339. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1340. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1341. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1345. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1347. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1348. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1350. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1351. ];
  1352. //nsfx
  1353. U.MD.D.I.nsfxTeacherDeskIcon = [
  1354. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1355. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1357. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1361. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1362. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1363. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1364. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1365. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1367. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1368. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1369. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1370. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1371. ];
  1372. //nsfx
  1373. U.MD.D.I.nsfxStudentDeskIcon = [
  1374. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1375. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1376. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1377. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1378. ];
  1379. //stia
  1380. U.MD.D.I.stiaTeacherDeskIcon = [
  1381. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1382. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1383. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1384. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1385. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1391. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1392. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1393. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1394. ];
  1395. //stia
  1396. U.MD.D.I.stiaStudentDeskIcon = [
  1397. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1398. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1399. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1401. ];
  1402. //szdjg
  1403. U.MD.D.I.szdjgTeacherDeskIcon = [
  1404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1406. ];
  1407. //szdjg
  1408. U.MD.D.I.szdjgStudentDeskIcon = [
  1409. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. ];
  1414. //010607
  1415. U.MD.D.I.x010607TeacherDeskIcon = [
  1416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1423. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1424. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1427. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1428. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1429. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1430. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1431. ];
  1432. //010607
  1433. U.MD.D.I.x010607StudentDeskIcon = [
  1434. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1437. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1438. ];
  1439. //010608
  1440. U.MD.D.I.x010608TeacherDeskIcon = [
  1441. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1442. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1443. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1444. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1445. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1446. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1447. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1448. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1449. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1450. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1451. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1452. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1453. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1454. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1455. ];
  1456. //010608
  1457. U.MD.D.I.x010608StudentDeskIcon = [
  1458. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1462. ];
  1463. //xhly
  1464. U.MD.D.I.xhlyTeacherDeskIcon = [
  1465. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1466. ];
  1467. //010608
  1468. U.MD.D.I.xhlyStudentDeskIcon = [
  1469. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. ];
  1471. //北师大
  1472. U.MD.D.I.BSDNSteacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1475. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1476. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1477. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1483. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1484. ];
  1485. //北师大
  1486. U.MD.D.I.BSDNSstudentDeskIcon = [
  1487. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //CUHK_EDU
  1493. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1502. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1503. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1504. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1505. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1506. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1507. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1508. ];
  1509. //CUHK_EDU
  1510. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1511. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1515. ];
  1516. //010503
  1517. U.MD.D.I.x010503TeacherDeskIcon = [
  1518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1520. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1521. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1522. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1525. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1526. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1527. ];
  1528. //010503
  1529. U.MD.D.I.x010503StudentDeskIcon = [
  1530. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1533. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. ];
  1535. //SPROUT Lab
  1536. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1537. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1538. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1540. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1541. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1546. ];
  1547. //SPROUT Lab
  1548. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. ];
  1553. //010204
  1554. U.MD.D.I.x010204TeacherDeskIcon = [
  1555. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1556. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1557. ];
  1558. //010204
  1559. U.MD.D.I.x010204StudentDeskIcon = [
  1560. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1561. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1562. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1563. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1564. ];
  1565. //trail
  1566. U.MD.D.I.trailTeacherDeskIcon = [
  1567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. ];
  1570. //trail
  1571. U.MD.D.I.trailStudentDeskIcon = [
  1572. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. ];
  1577. //010504
  1578. U.MD.D.I.x010504TeacherDeskIcon = [
  1579. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1580. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1582. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1583. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1584. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1585. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1586. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1587. ];
  1588. //010504
  1589. U.MD.D.I.x010504StudentDeskIcon = [
  1590. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //SCNUET
  1596. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1597. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1602. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1603. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1604. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1605. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1606. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1607. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1608. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1609. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1610. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1611. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1612. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1613. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1614. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1615. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1616. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1617. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1618. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1619. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1620. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1621. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1622. ];
  1623. //SCNUET
  1624. U.MD.D.I.SCNUETAdminDeskIcon = [
  1625. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1626. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1629. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1630. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1631. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1632. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1633. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1634. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1635. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1636. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1637. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1638. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1639. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1641. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1642. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1643. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1644. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1645. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1646. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1647. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1648. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1649. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1650. ];
  1651. //SCNUET
  1652. U.MD.D.I.SCNUETStudentDeskIcon = [
  1653. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1657. ];
  1658. //x020201
  1659. U.MD.D.I.x020201TeacherDeskIcon = [
  1660. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1661. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1663. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1666. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1667. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1670. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1671. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1672. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1673. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1674. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1675. ];
  1676. //x020201
  1677. U.MD.D.I.x020201AdminDeskIcon = [
  1678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1684. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1685. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1686. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1689. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1690. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1692. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1693. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1694. ];
  1695. //020201
  1696. U.MD.D.I.x020201StudentDeskIcon = [
  1697. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1698. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. ];
  1702. //010611
  1703. U.MD.D.I.x010611TeacherDeskIcon = [
  1704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1710. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1711. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1712. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1713. ];
  1714. //010611
  1715. U.MD.D.I.x010611StudentDeskIcon = [
  1716. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1717. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1718. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1720. ];
  1721. //tianyuan
  1722. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1723. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1724. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1725. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1726. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1727. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. ];
  1734. //010611
  1735. U.MD.D.I.tianyuanStudentDeskIcon = [
  1736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. ];
  1741. //#region 桌面初始化a
  1742. /**
  1743. * 初始化桌面的起始函数
  1744. *
  1745. */
  1746. U.MD.D.I.init = function () {
  1747. if ($("#U_MD_D_K")[0]) {
  1748. //初始化桌面图标
  1749. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1750. // var clickUrl = ':12588/requestIp.php';
  1751. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1752. // U.MD.D.I.Ip = data;
  1753. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1754. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1755. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1756. // })
  1757. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1758. // })
  1759. }
  1760. }
  1761. /**
  1762. * 模式切换
  1763. *
  1764. */
  1765. U.MD.D.I.ModeCheck = function (type) {
  1766. if (US.Config.type == type) {
  1767. return
  1768. }
  1769. US.Config.type = type
  1770. $('.U_PBL_Check .active')[0].className = ''
  1771. if (type == 1) {
  1772. $('.U_PBL_Check div')[0].className = 'active'
  1773. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1774. } else {
  1775. $('.U_PBL_Check div')[1].className = 'active'
  1776. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1777. }
  1778. //初始化桌面图标
  1779. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1780. if (type == 2) {
  1781. U.MD.D.I.openApplication("project")
  1782. }
  1783. }
  1784. /**
  1785. * 隐藏任务栏
  1786. *
  1787. * @param {element} 桌面元素
  1788. */
  1789. U.MD.D.I.hiddenTaskbar = function (el) {
  1790. //任务栏位置变小
  1791. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1792. //桌面的位置变大
  1793. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1794. }
  1795. /**
  1796. * 隐藏任务栏
  1797. *
  1798. * @param {element} 桌面元素
  1799. */
  1800. U.MD.D.I.hiddenTaskbarout = function (el) {
  1801. //任务栏位置变小
  1802. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1803. //任务栏位置变化
  1804. U.selectEl(el).css({ "bottom": "-60px" });
  1805. //桌面的位置变大
  1806. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1807. }
  1808. }
  1809. /**
  1810. * 初始化打印桌面图标
  1811. *
  1812. * @param {element} 桌面元素
  1813. */
  1814. U.MD.D.I.initDesktopIcons = function (el, type) {
  1815. var i, //用于循环
  1816. _content, //桌面图标元素
  1817. _iconcontent, //桌面图标元素
  1818. _frag = $$("frag"), //定义一个碎片元素
  1819. _type = US.userInfo.type,
  1820. _org = US.userInfo.org,
  1821. _oid = US.userInfo.organizeid,
  1822. _role = US.userInfo.role,
  1823. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1824. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1825. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1826. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1827. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1828. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1829. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1830. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1831. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1832. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1833. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1834. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1835. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1836. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1837. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1838. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1839. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1840. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1841. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1842. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1843. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1844. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1845. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1846. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1847. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1848. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1849. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1850. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1851. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1852. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1853. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1854. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1855. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1856. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1857. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1858. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1859. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1860. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1861. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1862. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1863. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1864. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1865. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1866. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1867. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1868. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1869. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1870. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1871. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1872. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1873. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1874. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1875. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1876. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1877. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1878. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1879. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1880. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1881. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1882. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1883. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1884. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1885. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1886. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1887. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1888. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1889. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1890. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1891. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1892. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1893. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1894. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1895. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1896. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1897. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1898. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1899. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1900. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1901. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1902. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1903. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1904. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1905. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1906. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1907. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1908. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1909. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1910. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1911. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1912. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1913. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1914. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1915. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1916. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1917. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1918. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1919. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1920. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1921. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1922. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1923. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1924. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1925. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1926. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1927. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1928. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1929. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1930. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1931. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1932. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1933. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1934. 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'];
  1935. 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'];
  1936. //清楚桌面图标
  1937. el.innerHTML = "";
  1938. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1939. _teacherDesktopIconInfo.push(
  1940. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1941. { "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)" } },
  1942. )
  1943. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1944. }
  1945. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1946. _teacherDesktopIconInfo.push(
  1947. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1948. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1949. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1950. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1951. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1952. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1953. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1954. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1955. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1956. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1957. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1958. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1959. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1962. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1963. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1964. // { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1965. )
  1966. }
  1967. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1968. _teacherDesktopIconInfo.push(
  1969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1970. )
  1971. }
  1972. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1973. // _teacherDesktopIconInfo.push(
  1974. // )
  1975. // }
  1976. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1977. _teacherDesktopIconInfo.push(
  1978. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1979. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1980. )
  1981. }
  1982. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1983. _teacherDesktopIconInfo.push(
  1984. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1985. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1986. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1987. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1988. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1989. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1990. )
  1991. _studentDesktopIconInfo.push(
  1992. )
  1993. }
  1994. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1995. _teacherDesktopIconInfo.push(
  1996. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1997. )
  1998. _studentDesktopIconInfo.push(
  1999. )
  2000. }
  2001. //010606 组织
  2002. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2003. _teacherDesktopIconInfo.push(
  2004. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2005. )
  2006. _studentDesktopIconInfo.push(
  2007. )
  2008. }
  2009. //麒麟二中 和 民新小学
  2010. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2011. _teacherDesktopIconInfo.push(
  2012. )
  2013. }
  2014. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2015. _teacherDesktopIconInfo.push(
  2016. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2017. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2019. )
  2020. }
  2021. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2022. _hkTeacherDeskIconInfo.push(
  2023. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2024. )
  2025. }
  2026. //北师大附中(010601)
  2027. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2028. // _teacherDesktopIconInfo.push(
  2029. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2030. // )
  2031. // _studentDesktopIconInfo.push(
  2032. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2033. // )
  2034. // }
  2035. //樂善堂余近卿中學
  2036. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2037. _teacherDesktopIconInfo.push(
  2038. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. )
  2040. }
  2041. // Education Artificial Intelligence
  2042. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2043. _teacherDesktopIconInfo.push(
  2044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2045. )
  2046. }
  2047. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2048. _teacherDesktopIconInfo.push(
  2049. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2050. )
  2051. }
  2052. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2053. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2054. _teacherDesktopIconInfo.push(
  2055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2057. )
  2058. }
  2059. //麒麟二中
  2060. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2061. _studentDesktopIconInfo.push(
  2062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2064. )
  2065. }
  2066. //万科双语
  2067. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2068. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2069. if (el.Name == '项目管理') {
  2070. el.Name = 'PBL项目'
  2071. }
  2072. return el
  2073. })
  2074. _studentDesktopIconInfo3.push(
  2075. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2076. )
  2077. }
  2078. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2079. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2080. return el.Name != '魔盒识字' && el.Name != '24点'
  2081. })
  2082. }
  2083. 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) {
  2084. _studentDesktopIconInfo.push(
  2085. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2086. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2087. )
  2088. }
  2089. //循环创建桌面图标
  2090. if (type == 1) {
  2091. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2092. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2093. _content = $$("div", {
  2094. className: "U_MD_D_KO",
  2095. "onmousedown": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_studentDesktopIconInfo[i]]),
  2099. "onclick": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_studentDesktopIconInfo[i]])
  2103. }, _frag); //
  2104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2107. }
  2108. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2109. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2110. _content = $$("div", {
  2111. className: "U_MD_D_KO",
  2112. "onmousedown": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2116. "onclick": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_hkZJLSStudentDeskIconInfo[i]])
  2120. }, _frag); //
  2121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2124. } //
  2125. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2126. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2127. _content = $$("div", {
  2128. className: "U_MD_D_KO",
  2129. "onmousedown": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_ytyStudentDeskIconInfo[i]]),
  2133. "onclick": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_ytyStudentDeskIconInfo[i]])
  2137. }, _frag); //
  2138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2141. } //
  2142. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2143. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2144. _content = $$("div", {
  2145. className: "U_MD_D_KO",
  2146. "onmousedown": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_jccssylStudentDeskIconInfo[i]]),
  2150. "onclick": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_jccssylStudentDeskIconInfo[i]])
  2154. }, _frag); //
  2155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2158. }
  2159. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2160. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_scnuaiStudentDeskIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_scnuaiStudentDeskIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2177. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2178. _content = $$("div", {
  2179. className: "U_MD_D_KO",
  2180. "onmousedown": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_caleStudentDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_caleStudentDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2192. }
  2193. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2194. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2195. _content = $$("div", {
  2196. className: "U_MD_D_KO",
  2197. "onmousedown": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_thuioeStudentDeskIconInfo[i]]),
  2201. "onclick": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_thuioeStudentDeskIconInfo[i]])
  2205. }, _frag); //
  2206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2209. }
  2210. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2211. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2212. _content = $$("div", {
  2213. className: "U_MD_D_KO",
  2214. "onmousedown": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_tpcStudentDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_tpcStudentDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2226. } //
  2227. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2228. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2229. _content = $$("div", {
  2230. className: "U_MD_D_KO",
  2231. "onmousedown": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_chjyjStudentDeskIconInfo[i]]),
  2235. "onclick": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_chjyjStudentDeskIconInfo[i]])
  2239. }, _frag); //
  2240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2243. }
  2244. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2245. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2246. _content = $$("div", {
  2247. className: "U_MD_D_KO",
  2248. "onmousedown": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_szjkyStudentDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_szjkyStudentDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2262. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2263. _content = $$("div", {
  2264. className: "U_MD_D_KO",
  2265. "onmousedown": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_x020201StudentDeskIconInfo[i]]),
  2269. "onclick": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_x020201StudentDeskIconInfo[i]])
  2273. }, _frag); //
  2274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2277. }
  2278. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2279. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2280. _content = $$("div", {
  2281. className: "U_MD_D_KO",
  2282. "onmousedown": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_SCNUETStudentDeskIconInfo[i]]),
  2286. "onclick": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_SCNUETStudentDeskIconInfo[i]])
  2290. }, _frag); //
  2291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2294. }
  2295. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2296. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2297. _content = $$("div", {
  2298. className: "U_MD_D_KO",
  2299. "onmousedown": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_dseiStudentDeskIconInfo[i]]),
  2303. "onclick": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_dseiStudentDeskIconInfo[i]])
  2307. }, _frag); //
  2308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2311. }
  2312. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2313. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2330. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_nsfxStudentDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_nsfxStudentDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2347. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2348. _content = $$("div", {
  2349. className: "U_MD_D_KO",
  2350. "onmousedown": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_stiaStudentDeskIconInfo[i]]),
  2354. "onclick": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_stiaStudentDeskIconInfo[i]])
  2358. }, _frag); //
  2359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2362. }
  2363. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2364. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2365. _content = $$("div", {
  2366. className: "U_MD_D_KO",
  2367. "onmousedown": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_szdjgStudentDeskIconInfo[i]]),
  2371. "onclick": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_szdjgStudentDeskIconInfo[i]])
  2375. }, _frag); //
  2376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2379. }
  2380. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2381. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2382. _content = $$("div", {
  2383. className: "U_MD_D_KO",
  2384. "onmousedown": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_x010607StudentDeskIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_x010607StudentDeskIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2398. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2399. _content = $$("div", {
  2400. className: "U_MD_D_KO",
  2401. "onmousedown": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_xhlyStudentDeskIconInfo[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_xhlyStudentDeskIconInfo[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2413. }
  2414. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2415. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2432. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_x010503StudentDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_x010503StudentDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2447. }
  2448. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2449. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_x010504StudentDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010504StudentDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2466. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_x010204StudentDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_x010204StudentDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2483. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_trailStudentDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_trailStudentDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2500. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2501. _content = $$("div", {
  2502. className: "U_MD_D_KO",
  2503. "onmousedown": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2517. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_x010608StudentDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010608StudentDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2534. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_x010611StudentDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010611StudentDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2551. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_tianyuantudentDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_tianyuantudentDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2568. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2569. _content = $$("div", {
  2570. className: "U_MD_D_KO",
  2571. "onmousedown": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_siesStudentDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_siesStudentDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2585. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_guzmsStudentDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_guzmsStudentDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2602. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2603. _content = $$("div", {
  2604. className: "U_MD_D_KO",
  2605. "onmousedown": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_hkStudentDeskIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_hkStudentDeskIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2619. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2620. _content = $$("div", {
  2621. className: "U_MD_D_KO",
  2622. "onmousedown": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_hkaceStudentDeskIconInfo[i]]),
  2626. "onclick": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_hkaceStudentDeskIconInfo[i]])
  2630. }, _frag); //
  2631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2634. }
  2635. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2636. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_BSDNSstudentDesktopIconInfo[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2651. }
  2652. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2653. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2654. _content = $$("div", {
  2655. className: "U_MD_D_KO",
  2656. "onmousedown": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_cocobizStudentDeskIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_cocobizStudentDeskIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2670. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_xxzjkyStudentDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2685. }
  2686. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2687. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2688. _content = $$("div", {
  2689. className: "U_MD_D_KO",
  2690. "onmousedown": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_studentDesktopIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_studentDesktopIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2704. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_tcStudentDeskIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_tcStudentDeskIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2721. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2722. _content = $$("div", {
  2723. className: "U_MD_D_KO",
  2724. "onmousedown": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_szscStudentDeskIconInfo[i]]),
  2728. "onclick": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_szscStudentDeskIconInfo[i]])
  2732. }, _frag); //
  2733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2736. }
  2737. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2738. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2739. _content = $$("div", {
  2740. className: "U_MD_D_KO",
  2741. "onmousedown": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_studentDesktopIconInfo3[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_studentDesktopIconInfo3[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2753. }
  2754. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2755. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2756. _content = $$("div", {
  2757. className: "U_MD_D_KO",
  2758. "onmousedown": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_studentDesktopIconInfo2[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_studentDesktopIconInfo2[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2770. }
  2771. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2772. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2773. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2774. continue
  2775. }
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_wanketeacherDesktopIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_wanketeacherDesktopIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2792. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_wankeAdminDesktopIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_wankeAdminDesktopIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2809. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2810. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2811. continue
  2812. }
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_scnuaiTeacherDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2829. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2830. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2831. continue
  2832. }
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_BSDNSteacherDesktopIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2849. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_scnuaiAdminDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_scnuaiAdminDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2866. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2867. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2868. continue
  2869. }
  2870. _content = $$("div", {
  2871. className: "U_MD_D_KO",
  2872. "onmousedown": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_jccssylTeacherDeskIconInfo[i]]),
  2876. "onclick": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_jccssylTeacherDeskIconInfo[i]])
  2880. }, _frag); //
  2881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2884. }
  2885. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2886. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2887. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2888. continue
  2889. }
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_caleTeacherDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_caleTeacherDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2906. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2907. _content = $$("div", {
  2908. className: "U_MD_D_KO",
  2909. "onmousedown": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_tpcOrganizerDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_tpcOrganizerDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2923. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2924. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2925. continue
  2926. }
  2927. _content = $$("div", {
  2928. className: "U_MD_D_KO",
  2929. "onmousedown": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_tpcTeacherDeskIconInfo[i]]),
  2933. "onclick": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_tpcTeacherDeskIconInfo[i]])
  2937. }, _frag); //
  2938. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2941. }
  2942. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2943. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2944. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2945. continue
  2946. }
  2947. _content = $$("div", {
  2948. className: "U_MD_D_KO",
  2949. "onmousedown": U.UF.C.closure(function (obj) {
  2950. //防止拖动图标即打开了桌面应用
  2951. U.MD.D.click(this, obj);
  2952. }, [_teacherDesktopIconInfo2[i]]),
  2953. "onclick": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_teacherDesktopIconInfo2[i]])
  2957. }, _frag); //
  2958. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2959. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2960. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2961. }
  2962. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2963. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2964. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2965. continue
  2966. }
  2967. _content = $$("div", {
  2968. className: "U_MD_D_KO",
  2969. "onmousedown": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_thuioeTeacherDeskIconInfo[i]]),
  2973. "onclick": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_thuioeTeacherDeskIconInfo[i]])
  2977. }, _frag); //
  2978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2981. }
  2982. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2983. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2984. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2985. continue
  2986. }
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_lotechTeacherDeskIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_lotechTeacherDeskIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3001. }//
  3002. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3003. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3004. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3005. continue
  3006. }
  3007. _content = $$("div", {
  3008. className: "U_MD_D_KO",
  3009. "onmousedown": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3013. "onclick": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3017. }, _frag); //
  3018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3021. }
  3022. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3023. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3024. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3025. continue
  3026. }
  3027. _content = $$("div", {
  3028. className: "U_MD_D_KO",
  3029. "onmousedown": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_siesTeacherDeskIconInfo[i]]),
  3033. "onclick": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_siesTeacherDeskIconInfo[i]])
  3037. }, _frag); //
  3038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3041. }
  3042. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3043. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3044. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3045. continue
  3046. }
  3047. _content = $$("div", {
  3048. className: "U_MD_D_KO",
  3049. "onmousedown": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_guzmsTeacherDeskIconInfo[i]]),
  3053. "onclick": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_guzmsTeacherDeskIconInfo[i]])
  3057. }, _frag); //
  3058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3061. }
  3062. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3063. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3064. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3065. continue
  3066. }
  3067. _content = $$("div", {
  3068. className: "U_MD_D_KO",
  3069. "onmousedown": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_longhuaTeacherDeskIconInfo[i]]),
  3073. "onclick": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_longhuaTeacherDeskIconInfo[i]])
  3077. }, _frag); //
  3078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3081. }
  3082. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3083. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3084. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3085. continue
  3086. }
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_ytyTeacherDeskIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_ytyTeacherDeskIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3103. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3104. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3105. continue
  3106. }
  3107. _content = $$("div", {
  3108. className: "U_MD_D_KO",
  3109. "onmousedown": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3113. "onclick": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_yunhaiTeacherDeskIconInfo[i]])
  3117. }, _frag); //
  3118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3121. } //_hkStudentDeskIconInfo
  3122. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3123. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3124. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3125. continue
  3126. }
  3127. _content = $$("div", {
  3128. className: "U_MD_D_KO",
  3129. "onmousedown": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3133. "onclick": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3137. }, _frag); //
  3138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3141. }
  3142. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3143. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3144. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3145. continue
  3146. }
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_hkTeacherDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_hkTeacherDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3163. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3164. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3165. continue
  3166. }
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_hkaceTeacherDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_hkaceTeacherDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3183. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3184. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_cocobizTeacherDeskIconInfo[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_cocobizTeacherDeskIconInfo[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3203. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3223. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3224. _content = $$("div", {
  3225. className: "U_MD_D_KO",
  3226. "onmousedown": U.UF.C.closure(function (obj) {
  3227. //防止拖动图标即打开了桌面应用
  3228. U.MD.D.click(this, obj);
  3229. }, [_gdjgAdminDeskIconInfo[i]]),
  3230. "onclick": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_gdjgAdminDeskIconInfo[i]])
  3234. }, _frag); //
  3235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3238. }
  3239. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3240. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3241. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3242. continue
  3243. }
  3244. _content = $$("div", {
  3245. className: "U_MD_D_KO",
  3246. "onmousedown": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_gdjgTeacherDeskIconInfo[i]]),
  3250. "onclick": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_gdjgTeacherDeskIconInfo[i]])
  3254. }, _frag); //
  3255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3258. }
  3259. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3260. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3261. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3262. continue
  3263. }
  3264. _content = $$("div", {
  3265. className: "U_MD_D_KO",
  3266. "onmousedown": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_szherTeacherDeskIconInfo[i]]),
  3270. "onclick": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_szherTeacherDeskIconInfo[i]])
  3274. }, _frag); //
  3275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3278. }
  3279. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3280. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3281. _content = $$("div", {
  3282. className: "U_MD_D_KO",
  3283. "onmousedown": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_heyuannAdminDeskIconInfo[i]]),
  3287. "onclick": U.UF.C.closure(function (obj) {
  3288. //防止拖动图标即打开了桌面应用
  3289. U.MD.D.click(this, obj);
  3290. }, [_heyuannAdminDeskIconInfo[i]])
  3291. }, _frag); //
  3292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3295. }
  3296. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3297. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3298. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3299. continue
  3300. }
  3301. _content = $$("div", {
  3302. className: "U_MD_D_KO",
  3303. "onmousedown": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_heyuanTeacherDeskIconInfo[i]]),
  3307. "onclick": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_heyuanTeacherDeskIconInfo[i]])
  3311. }, _frag); //
  3312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3315. } //
  3316. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3317. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3318. _content = $$("div", {
  3319. className: "U_MD_D_KO",
  3320. "onmousedown": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_dseiAdminDeskIconInfo[i]]),
  3324. "onclick": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_dseiAdminDeskIconInfo[i]])
  3328. }, _frag); //
  3329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3332. }
  3333. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3334. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3335. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3336. continue
  3337. }
  3338. _content = $$("div", {
  3339. className: "U_MD_D_KO",
  3340. "onmousedown": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_dseiTeacherDeskIconInfo[i]]),
  3344. "onclick": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_dseiTeacherDeskIconInfo[i]])
  3348. }, _frag); //
  3349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3352. } //
  3353. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3354. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_chjyjAdminDeskIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_chjyjAdminDeskIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3369. }//
  3370. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3371. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3372. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3373. continue
  3374. }
  3375. _content = $$("div", {
  3376. className: "U_MD_D_KO",
  3377. "onmousedown": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_chjyjTeacherDeskIconInfo[i]]),
  3381. "onclick": U.UF.C.closure(function (obj) {
  3382. //防止拖动图标即打开了桌面应用
  3383. U.MD.D.click(this, obj);
  3384. }, [_chjyjTeacherDeskIconInfo[i]])
  3385. }, _frag); //
  3386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3389. }
  3390. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3391. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_szjkyAdminDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_szjkyAdminDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3406. }//
  3407. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3408. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3409. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_szjkyTeacherDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_szjkyTeacherDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3428. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_x020201AdminDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_x020201AdminDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3443. }//
  3444. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3445. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_x020201TeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_x020201TeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3465. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3466. _content = $$("div", {
  3467. className: "U_MD_D_KO",
  3468. "onmousedown": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_SCNUETAdminDeskIconInfo[i]]),
  3472. "onclick": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_SCNUETAdminDeskIconInfo[i]])
  3476. }, _frag); //
  3477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3480. }//
  3481. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3482. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3483. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3484. continue
  3485. }
  3486. _content = $$("div", {
  3487. className: "U_MD_D_KO",
  3488. "onmousedown": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3492. "onclick": U.UF.C.closure(function (obj) {
  3493. //防止拖动图标即打开了桌面应用
  3494. U.MD.D.click(this, obj);
  3495. }, [_SCNUETTeacherDeskIconInfo[i]])
  3496. }, _frag); //
  3497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3500. }
  3501. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3502. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3503. _content = $$("div", {
  3504. className: "U_MD_D_KO",
  3505. "onmousedown": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_futianAdminDeskIconInfo[i]]),
  3509. "onclick": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_futianAdminDeskIconInfo[i]])
  3513. }, _frag); //
  3514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3517. }
  3518. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3519. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3520. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3521. continue
  3522. }
  3523. _content = $$("div", {
  3524. className: "U_MD_D_KO",
  3525. "onmousedown": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_futianTeacherDeskIconInfo[i]]),
  3529. "onclick": U.UF.C.closure(function (obj) {
  3530. //防止拖动图标即打开了桌面应用
  3531. U.MD.D.click(this, obj);
  3532. }, [_futianTeacherDeskIconInfo[i]])
  3533. }, _frag); //
  3534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3537. }
  3538. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3539. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3540. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3541. continue
  3542. }
  3543. _content = $$("div", {
  3544. className: "U_MD_D_KO",
  3545. "onmousedown": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_MingdeTeacherDeskIcon[i]]),
  3549. "onclick": U.UF.C.closure(function (obj) {
  3550. //防止拖动图标即打开了桌面应用
  3551. U.MD.D.click(this, obj);
  3552. }, [_MingdeTeacherDeskIcon[i]])
  3553. }, _frag); //
  3554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3557. }
  3558. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3559. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3560. _content = $$("div", {
  3561. className: "U_MD_D_KO",
  3562. "onmousedown": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_lhsAdminDesktopIconInfo[i]]),
  3566. "onclick": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_lhsAdminDesktopIconInfo[i]])
  3570. }, _frag); //
  3571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3574. }
  3575. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3576. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3577. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3578. continue
  3579. }
  3580. _content = $$("div", {
  3581. className: "U_MD_D_KO",
  3582. "onmousedown": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_lhsteacherDesktopIconInfo[i]]),
  3586. "onclick": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_lhsteacherDesktopIconInfo[i]])
  3590. }, _frag); //
  3591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3594. }
  3595. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3596. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3597. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3598. continue
  3599. }
  3600. _content = $$("div", {
  3601. className: "U_MD_D_KO",
  3602. "onmousedown": U.UF.C.closure(function (obj) {
  3603. //防止拖动图标即打开了桌面应用
  3604. U.MD.D.click(this, obj);
  3605. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3606. "onclick": U.UF.C.closure(function (obj) {
  3607. //防止拖动图标即打开了桌面应用
  3608. U.MD.D.click(this, obj);
  3609. }, [_zhoujiateacherDesktopIconInfo[i]])
  3610. }, _frag); //
  3611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3614. }
  3615. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3616. for (i = 0; i < _hanDeskIcon.length; i++) {
  3617. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3618. continue
  3619. }
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_hanDeskIcon[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_hanDeskIcon[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3636. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3637. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_orgStemDeskIcon[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_orgStemDeskIcon[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3654. }
  3655. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3656. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3657. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3658. continue
  3659. }
  3660. _content = $$("div", {
  3661. className: "U_MD_D_KO",
  3662. "onmousedown": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_szulsDeskIcon[i]]),
  3666. "onclick": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_szulsDeskIcon[i]])
  3670. }, _frag); //
  3671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3674. }
  3675. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3676. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3677. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3678. continue
  3679. }
  3680. _content = $$("div", {
  3681. className: "U_MD_D_KO",
  3682. "onmousedown": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_orgDesktopIconInfo[i]]),
  3686. "onclick": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_orgDesktopIconInfo[i]])
  3690. }, _frag); //
  3691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3694. }
  3695. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3696. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3697. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3698. continue
  3699. }
  3700. _content = $$("div", {
  3701. className: "U_MD_D_KO",
  3702. "onmousedown": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_schoolDesktopIconInfo[i]]),
  3706. "onclick": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_schoolDesktopIconInfo[i]])
  3710. }, _frag); //
  3711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3714. }
  3715. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3716. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3717. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3718. continue
  3719. }
  3720. _content = $$("div", {
  3721. className: "U_MD_D_KO",
  3722. "onmousedown": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_GMteacherDesktopIconInfo[i]]),
  3726. "onclick": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_GMteacherDesktopIconInfo[i]])
  3730. }, _frag); //
  3731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3734. }
  3735. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3736. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3737. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3738. continue
  3739. }
  3740. _content = $$("div", {
  3741. className: "U_MD_D_KO",
  3742. "onmousedown": U.UF.C.closure(function (obj) {
  3743. //防止拖动图标即打开了桌面应用
  3744. U.MD.D.click(this, obj);
  3745. }, [_SONGteacherDesktopIconInfo[i]]),
  3746. "onclick": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_SONGteacherDesktopIconInfo[i]])
  3750. }, _frag); //
  3751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3754. }
  3755. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3756. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3757. _content = $$("div", {
  3758. className: "U_MD_D_KO",
  3759. "onmousedown": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_GMstudentDesktopIconInfo[i]]),
  3763. "onclick": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_GMstudentDesktopIconInfo[i]])
  3767. }, _frag); //
  3768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3771. }
  3772. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3773. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3774. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3775. continue
  3776. }
  3777. _content = $$("div", {
  3778. className: "U_MD_D_KO",
  3779. "onmousedown": U.UF.C.closure(function (obj) {
  3780. //防止拖动图标即打开了桌面应用
  3781. U.MD.D.click(this, obj);
  3782. }, [_tcTeacherDeskIconInfo[i]]),
  3783. "onclick": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_tcTeacherDeskIconInfo[i]])
  3787. }, _frag); //
  3788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3791. }
  3792. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3793. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3794. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3795. continue
  3796. }
  3797. _content = $$("div", {
  3798. className: "U_MD_D_KO",
  3799. "onmousedown": U.UF.C.closure(function (obj) {
  3800. //防止拖动图标即打开了桌面应用
  3801. U.MD.D.click(this, obj);
  3802. }, [_tcOrganizerDeskIconInfo[i]]),
  3803. "onclick": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_tcOrganizerDeskIconInfo[i]])
  3807. }, _frag); //
  3808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3811. }
  3812. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3813. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3814. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3815. continue
  3816. }
  3817. _content = $$("div", {
  3818. className: "U_MD_D_KO",
  3819. "onmousedown": U.UF.C.closure(function (obj) {
  3820. //防止拖动图标即打开了桌面应用
  3821. U.MD.D.click(this, obj);
  3822. }, [_szscTeacherDeskIconInfo[i]]),
  3823. "onclick": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_szscTeacherDeskIconInfo[i]])
  3827. }, _frag); //
  3828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3831. }
  3832. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3833. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3834. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3835. continue
  3836. }
  3837. _content = $$("div", {
  3838. className: "U_MD_D_KO",
  3839. "onmousedown": U.UF.C.closure(function (obj) {
  3840. //防止拖动图标即打开了桌面应用
  3841. U.MD.D.click(this, obj);
  3842. }, [_szscOrganizerDeskIconInfo[i]]),
  3843. "onclick": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_szscOrganizerDeskIconInfo[i]])
  3847. }, _frag); //
  3848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3851. }
  3852. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3853. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3854. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3855. continue
  3856. }
  3857. _content = $$("div", {
  3858. className: "U_MD_D_KO",
  3859. "onmousedown": U.UF.C.closure(function (obj) {
  3860. //防止拖动图标即打开了桌面应用
  3861. U.MD.D.click(this, obj);
  3862. }, [_nsfxTeacherDeskIconInfo[i]]),
  3863. "onclick": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_nsfxTeacherDeskIconInfo[i]])
  3867. }, _frag); //
  3868. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3869. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3870. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3871. }
  3872. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3873. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3874. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3875. continue
  3876. }
  3877. _content = $$("div", {
  3878. className: "U_MD_D_KO",
  3879. "onmousedown": U.UF.C.closure(function (obj) {
  3880. //防止拖动图标即打开了桌面应用
  3881. U.MD.D.click(this, obj);
  3882. }, [_stiaTeacherDeskIconInfo[i]]),
  3883. "onclick": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_stiaTeacherDeskIconInfo[i]])
  3887. }, _frag); //
  3888. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3889. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3890. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3891. }
  3892. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3893. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3894. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3895. continue
  3896. }
  3897. _content = $$("div", {
  3898. className: "U_MD_D_KO",
  3899. "onmousedown": U.UF.C.closure(function (obj) {
  3900. //防止拖动图标即打开了桌面应用
  3901. U.MD.D.click(this, obj);
  3902. }, [_szdjgTeacherDeskIconInfo[i]]),
  3903. "onclick": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_szdjgTeacherDeskIconInfo[i]])
  3907. }, _frag); //
  3908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3911. }
  3912. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3913. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3914. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3915. continue
  3916. }
  3917. _content = $$("div", {
  3918. className: "U_MD_D_KO",
  3919. "onmousedown": U.UF.C.closure(function (obj) {
  3920. //防止拖动图标即打开了桌面应用
  3921. U.MD.D.click(this, obj);
  3922. }, [_x010607TeacherDeskIconInfo[i]]),
  3923. "onclick": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_x010607TeacherDeskIconInfo[i]])
  3927. }, _frag); //
  3928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3931. }
  3932. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3933. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3934. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3935. continue
  3936. }
  3937. _content = $$("div", {
  3938. className: "U_MD_D_KO",
  3939. "onmousedown": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_xhlyTeacherDeskIconInfo[i]]),
  3943. "onclick": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_xhlyTeacherDeskIconInfo[i]])
  3947. }, _frag); //
  3948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3951. }
  3952. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3953. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3954. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3955. continue
  3956. }
  3957. _content = $$("div", {
  3958. className: "U_MD_D_KO",
  3959. "onmousedown": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3963. "onclick": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3967. }, _frag); //
  3968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3971. }
  3972. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3973. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3974. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3975. continue
  3976. }
  3977. _content = $$("div", {
  3978. className: "U_MD_D_KO",
  3979. "onmousedown": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_x010503TeacherDeskIconInfo[i]]),
  3983. "onclick": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_x010503TeacherDeskIconInfo[i]])
  3987. }, _frag); //
  3988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3991. }
  3992. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3993. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3994. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3995. continue
  3996. }
  3997. _content = $$("div", {
  3998. className: "U_MD_D_KO",
  3999. "onmousedown": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_x010504TeacherDeskIconInfo[i]]),
  4003. "onclick": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_x010504TeacherDeskIconInfo[i]])
  4007. }, _frag); //
  4008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4011. }
  4012. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4013. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4014. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4015. continue
  4016. }
  4017. _content = $$("div", {
  4018. className: "U_MD_D_KO",
  4019. "onmousedown": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_x010204TeacherDeskIconInfo[i]]),
  4023. "onclick": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_x010204TeacherDeskIconInfo[i]])
  4027. }, _frag); //
  4028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4031. }
  4032. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4033. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4034. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4035. continue
  4036. }
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_trailTeacherDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_trailTeacherDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4053. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4073. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4074. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_x010608TeacherDeskIconInfo[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_x010608TeacherDeskIconInfo[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4093. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4094. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4095. continue
  4096. }
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_x010611TeacherDeskIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_x010611TeacherDeskIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4113. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_tianyuanTeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else {
  4133. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4134. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_teacherDesktopIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_teacherDesktopIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. }
  4153. } else {
  4154. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4155. _content = $$("div", {
  4156. className: "U_MD_D_KO",
  4157. style: { 'width': '124px', 'height': '145px' },
  4158. "onmousedown": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_easyDesktopIconInfo[i]]),
  4162. "onclick": U.UF.C.closure(function (obj) {
  4163. //防止拖动图标即打开了桌面应用
  4164. U.MD.D.click(this, obj);
  4165. }, [_easyDesktopIconInfo[i]])
  4166. }, _frag); //
  4167. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4170. }
  4171. }
  4172. if (type == 1) {
  4173. //加载好后给图标定位
  4174. U.MD.D.iconPostion($(_frag).Child());
  4175. } else {
  4176. //加载好后给图标定位
  4177. U.MD.D.iconPostion2($(_frag).Child());
  4178. }
  4179. //把图标加载到页面
  4180. el.appendChild(_frag);
  4181. }
  4182. /**
  4183. * 显示任务栏
  4184. *
  4185. * @param {element} 桌面元素
  4186. */
  4187. U.MD.D.I.displayTaskbar = function (el) {
  4188. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4189. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4190. //任务栏位置变化
  4191. U.selectEl(el).css({ "bottom": "0px" });
  4192. //桌面位置变话
  4193. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4194. }
  4195. }
  4196. //#region 桌面图标拖动逻辑
  4197. /**
  4198. * 桌面排列图标
  4199. *
  4200. * @param {element} 桌面元素
  4201. * @param {object} 上下相距的距离
  4202. * @param {object} 左右相距的距离
  4203. * @return {object} 命名空间
  4204. */
  4205. U.MD.D.iconPostion = function (childs, top, left) {
  4206. var i; //用于循环处理
  4207. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4208. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4209. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4210. for (i = 0; i < childs.length; i++) {
  4211. //如果竖排top超过了范围处理
  4212. if (top + 95 > US.height - 10) {
  4213. //left超过了页面范围处理,则向上重叠打印处理
  4214. if ((left + 180) > US.width) {
  4215. top -= 110;
  4216. left -= 90;
  4217. }
  4218. //没有超过范围,那么left+90添加到下一个竖排打印
  4219. else {
  4220. left += 90;
  4221. top = 15;
  4222. };
  4223. }
  4224. //给图标的位置赋值
  4225. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4226. if (i < childs.length - 1) {
  4227. //页面图标每次向下加95
  4228. top += 95;
  4229. }
  4230. }
  4231. //返回最后调用的图标的位置
  4232. return [top, left];
  4233. }
  4234. /**
  4235. * 桌面排列图标
  4236. *
  4237. * @param {element} 桌面元素
  4238. * @param {object} 上下相距的距离
  4239. * @param {object} 左右相距的距离
  4240. * @return {object} 命名空间
  4241. */
  4242. U.MD.D.iconPostion2 = function (childs, top, left) {
  4243. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4244. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4245. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4246. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4247. for (i = 0; i < childs.length; i++) {
  4248. //如果竖排top超过了范围处理
  4249. if (left + 150 > US.width - 10) {
  4250. //left超过了页面范围处理,则向上重叠打印处理
  4251. if ((top + 180) > US.Height) {
  4252. top -= 150;
  4253. left -= 150;
  4254. }
  4255. //没有超过范围,那么left+90添加到下一个竖排打印
  4256. else {
  4257. top += 150;
  4258. left = ol;
  4259. };
  4260. }
  4261. //给图标的位置赋值
  4262. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4263. if (i < childs.length - 1) {
  4264. //页面图标每次向下加95
  4265. left += 150;
  4266. }
  4267. }
  4268. //返回最后调用的图标的位置
  4269. return [top, left];
  4270. }
  4271. /**
  4272. * 桌面点击事件逻辑
  4273. *
  4274. * @param {element} 桌面元素
  4275. * @param {object} 上下相距的距离
  4276. * @param {object} 左右相距的距离
  4277. * @return {object} 命名空间
  4278. */
  4279. U.MD.D.click = function (el, obj) {
  4280. var _buttonnumber = event.button; //点击的按钮的事件值
  4281. var _userinfo = US.userInfo;
  4282. U.UF.EV.stopBubble(); //阻止向上冒泡
  4283. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4284. if (_buttonnumber < 2) {
  4285. //如果是click事件的处理
  4286. if (event.type == "click") {
  4287. //如果元素在mousemove事件中没有移动则出发click事件
  4288. if (!U.MD.D.I.IsDrag) {
  4289. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4290. U.alert("请先登录您的账号!");
  4291. setTimeout(() => {
  4292. U.MD.U.L.login();
  4293. }, 2000);
  4294. } else {
  4295. //打开应用处理
  4296. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4297. }
  4298. }
  4299. }
  4300. //如果是mouse事件的处理
  4301. else {
  4302. if (US.Config.type == '1') {
  4303. //拖动处理,添加拖动和拖动结束事件
  4304. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4305. }
  4306. }
  4307. U.MD.D.I.IsDrag = false;
  4308. }
  4309. }
  4310. /**
  4311. * 拖动的处理
  4312. *
  4313. */
  4314. U.MD.D.iconMove = function () {
  4315. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4316. U.MD.D.I.IsDrag = true;
  4317. }
  4318. /**
  4319. * 拖动结束后,这里是定位处理,以网状的形式定位
  4320. *
  4321. * @param {element} 拖动的元素
  4322. * @return {object} 命名空间
  4323. */
  4324. U.MD.D.iconUp = function (el) {
  4325. var _top = 15,
  4326. _left = 20,
  4327. _margin,
  4328. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4329. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4330. if (_positioninfo["OT"] > 15) {
  4331. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4332. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4333. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4334. }
  4335. if (_positioninfo["OL"] > 20) {
  4336. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4337. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4338. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4339. }
  4340. //while循环判断么一个重叠的元素
  4341. do {
  4342. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4343. _top = _positioninfo[0] + 95; //得到定位后的top
  4344. _left = _positioninfo[1]; //得到定位后的left
  4345. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4346. }
  4347. /**
  4348. * 判断拖动后图标是否重叠
  4349. *
  4350. * @param {element} 拖动的元素
  4351. * @param {element} 桌面所有的元素
  4352. * @param {array} 拖动元素的位置
  4353. ----------[0] 上 top
  4354. ----------[1] 左 left
  4355. * @return {object} 命名空间
  4356. */
  4357. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4358. //循环所有的图标
  4359. for (var i = 0; i < childs.length; i++) {
  4360. //判断有没有和该图标诶子重叠的元素
  4361. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4362. return childs[i]; //如果有返回
  4363. }
  4364. }
  4365. }
  4366. //#endregion
  4367. //#endregion
  4368. //#region 桌面应用
  4369. /**
  4370. * 打开应用
  4371. *
  4372. * @param {string} 类型
  4373. -----------------Disk 网盘系统
  4374. -----------------PDisk 学习系统网盘
  4375. -----------------Poto 图片
  4376. -----------------Video 视频
  4377. -----------------Music 音乐
  4378. -----------------Word word
  4379. -----------------Excel excel
  4380. -----------------Txt 记事本
  4381. -----------------PB 学习系统
  4382. -----------------Blog 朋友圈系统
  4383. -----------------FTP ftp系统
  4384. -----------------Group 好友群
  4385. -----------------SY 首页系统
  4386. -----------------Set 个人设置
  4387. -----------------XSet 系统设置
  4388. -----------------App 我们所有的app
  4389. -----------------BC c.1473.cn 平台
  4390. -----------------CWeb d.1473.cn 变成平台
  4391. -----------------其他的外联系统 我们统一用iframe打开
  4392. * @param {array} 类型
  4393. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4394. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4395. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4396. 如果第一个参数为其他,则无第二个参数
  4397. * @returns {array}
  4398. */
  4399. window.addEventListener('message', function (e) { // 监听 message 事件
  4400. // alert(e.data.type);
  4401. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4402. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4403. //3是展示全部阶段 2学生 1老师 4专家
  4404. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4405. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4406. //3是展示全部阶段 2学生 1老师 4专家
  4407. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4408. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4409. //3是展示全部阶段 2学生 1老师 4专家
  4410. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4411. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4412. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4413. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4414. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4415. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4416. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4422. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4424. //3是展示全部阶段 2学生 1老师 4专家
  4425. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4427. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4428. U.MD.D.I.selectUser();
  4429. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4430. var _formel = document.getElementById("study");
  4431. U.UF.F.windowZooming(_formel);
  4432. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4433. var _formel = document.getElementById("studyDetail");
  4434. U.UF.F.windowZooming(_formel);
  4435. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4436. var _formel = document.getElementById("studyDetail");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4439. var _formel = document.getElementById("studentStudy");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4442. // var _formel = document.getElementById("study");
  4443. //如果最大化了,那么就把他缩小
  4444. // if (_formel.ismaximize) {
  4445. // return;
  4446. // }
  4447. // U.UF.F.windowZooming(_formel);
  4448. // U.UF.F.topWindow(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4450. // var _formel = document.getElementById("studyDetail");
  4451. //如果最大化了,那么就把他缩小
  4452. // if (_formel.ismaximize) {
  4453. // return;
  4454. // }
  4455. // U.UF.F.windowZooming(_formel);
  4456. // U.UF.F.topWindow(_formel);
  4457. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4458. // var _formel = document.getElementById("studentStudy");
  4459. // if (_formel.ismaximize) {
  4460. // return;
  4461. // }
  4462. // U.UF.F.windowZooming(_formel);
  4463. // U.UF.F.topWindow(_formel);
  4464. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4465. var _formel = document.getElementById("study");
  4466. // if (_formel.ismaximize) {
  4467. // return;
  4468. // }
  4469. // U.UF.F.windowZooming(_formel);
  4470. U.UF.F.topWindow(_formel);
  4471. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4472. var _formel = document.getElementById("studentIndex");
  4473. U.UF.F.windowZooming(_formel);
  4474. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4475. var _formel = document.getElementById("studyDetailS");
  4476. U.UF.F.windowZooming(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4478. var _formel = document.getElementById("studioIndex");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4481. var _formel = document.getElementById("studyDetailStudio");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4484. var _formel = document.getElementById("studyDetailStudio");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4487. var _formel = document.getElementById("studyDetailNT");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4490. var _formel = document.getElementById("studyDetailS");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4493. var _formel = document.getElementById("studyDetailS");
  4494. U.UF.F.topWindow(_formel);
  4495. } else if (e.data.tools && e.data.tools == "1") {
  4496. // U.MD.D.I.openApplication("whiteboard")
  4497. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4498. } else if (e.data.tools && e.data.tools == "2") {
  4499. U.MD.D.I.openApplication("note")
  4500. } else if (e.data.tools && e.data.tools == "3") {
  4501. // U.MD.D.I.openApplication("mind")
  4502. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4503. } else if (e.data.tools && e.data.tools == "4") {
  4504. U.MD.D.I.openApplication("investigation")
  4505. } else if (e.data.tools && e.data.tools == "6") {
  4506. // U.MD.D.I.openApplication("doc")
  4507. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4508. } else if (e.data.tools && e.data.tools == "7") {
  4509. // U.MD.D.I.openApplication("mindNetwork")
  4510. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "8") {
  4512. U.MD.D.I.openApplication("library")
  4513. } else if (e.data.tools && e.data.tools == "17") {
  4514. U.MD.D.I.openApplication("stuLibrary")
  4515. } else if (e.data.tools && e.data.tools == "18") {
  4516. U.MD.D.I.openApplication("train")
  4517. } else if (e.data.tools && e.data.tools == "21") {
  4518. U.MD.D.I.openApplication("program")
  4519. } else if (e.data.tools && e.data.tools == "22") {
  4520. U.MD.D.I.openApplication("AIprogram2")
  4521. } else if (e.data.tools && e.data.tools == "23") {
  4522. U.MD.D.I.openApplication("Pythonprogram")
  4523. } else if (e.data.tools && e.data.tools == "24") {
  4524. U.MD.D.I.openApplication("AIprogram")
  4525. } else if (e.data.tools && e.data.tools == "25") {
  4526. U.MD.D.I.openApplication("sys")
  4527. } else if (e.data.tools && e.data.tools == "26") {
  4528. // U.MD.D.I.openApplication("courseDesign")
  4529. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4530. } else if (e.data.tools && e.data.tools == "31") {
  4531. U.MD.D.I.openApplication("netWorkPanel")
  4532. } else if (e.data.tools && e.data.tools == "32") {
  4533. U.MD.D.I.openApplication("codeEdit")
  4534. } else if (e.data.tools && e.data.tools == "57") {
  4535. U.MD.D.I.openApplication("CocoPi")
  4536. } else if (e.data.tools && e.data.tools == "63") {
  4537. U.MD.D.I.openApplication("Wood")
  4538. } else if (e.data.tools && e.data.tools == "58") {
  4539. U.MD.D.I.openApplication("car")
  4540. } else if (e.data.tools && e.data.tools == "59") {
  4541. U.MD.D.I.openApplication("lineSearch")
  4542. } else if (e.data.tools && e.data.tools == "60") {
  4543. U.MD.D.I.openApplication("deepLearning")
  4544. } else if (e.data.tools && e.data.tools == "61") {
  4545. U.MD.D.I.openApplication("allHistory")
  4546. } else if (e.data.tools && e.data.tools == "28") {
  4547. U.MD.D.I.openApplication("translation")
  4548. } else if (e.data.tools && e.data.tools == "37") {
  4549. U.MD.D.I.openApplication("mohe")
  4550. } else if (e.data.tools && e.data.tools == "38") {
  4551. U.MD.D.I.openApplication("24game")
  4552. } else if (e.data.tools && e.data.tools == "39") {
  4553. U.MD.D.I.openApplication("GeoGebra")
  4554. } else if (e.data.tools && e.data.tools == "43") {
  4555. U.MD.D.I.openApplication("studentEvaluate")
  4556. } else if (e.data.tools && e.data.tools == "44") {
  4557. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4558. } else if (e.data.tools && e.data.tools == "46") {
  4559. U.MD.D.I.openApplication("project")
  4560. } else if (e.data.tools && e.data.tools == "71") {
  4561. U.MD.D.I.openApplication("aigptCourse")
  4562. } else if (e.data.tools && e.data.tools == "1s") {
  4563. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4564. } else if (e.data.tools && e.data.tools == "3s") {
  4565. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4566. } else if (e.data.tools && e.data.tools == "6s") {
  4567. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4568. } else if (e.data.tools && e.data.tools == "1studio") {
  4569. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "3studio") {
  4571. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "6studio") {
  4573. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "3y") {
  4575. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "1y") {
  4577. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4579. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4580. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4581. U.MD.D.I.openApplication("AIAnalyse")
  4582. } else if (e.data.tools && e.data.tools == "1teacher") {
  4583. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4584. } else if (e.data.tools && e.data.tools == "3teacher") {
  4585. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4586. } else if (e.data.tools && e.data.tools == "7teacher") {
  4587. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4588. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4589. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4591. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "1E") {
  4593. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4594. } else if (e.data.tools && e.data.tools == "3E") {
  4595. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4596. } else if (e.data.tools && e.data.tools == "57y") {
  4597. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4598. } else if (e.data.tools && e.data.tools == "57u") {
  4599. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4600. } else if (e.data.tools && e.data.tools == "57teacher") {
  4601. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4602. } else if (e.data.tools && e.data.tools == "64") {
  4603. U.MD.D.I.openApplication("AIChat")
  4604. } else if (e.data.tools && e.data.tools == "66") {
  4605. U.MD.D.I.openApplication("formulaEdi")
  4606. } else if (e.data.tools && e.data.tools == "67") {
  4607. U.MD.D.I.openApplication("molStr")
  4608. } else if (e.data.tools && e.data.tools == "68") {
  4609. U.MD.D.I.openApplication("timeAxis")
  4610. } else if (e.data.tools && e.data.tools == "openCourse") {
  4611. let _data = {
  4612. typea: e.data.typea || '',
  4613. typeb: e.data.typeb || '',
  4614. typed: e.data.typed || '',
  4615. }
  4616. U.MD.D.I.openInApplication("index", _data)
  4617. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4618. let _data = {
  4619. classid: e.data.classid || '',
  4620. }
  4621. U.MD.D.I.openInApplication("dataClass", _data)
  4622. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4623. let _data = {
  4624. cid: e.data.cid || '',
  4625. gid: e.data.gid || '',
  4626. }
  4627. U.MD.D.I.openInApplication("opencCscl", _data)
  4628. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4629. U.MD.D.I.openApplication("dataBoardTest")
  4630. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4631. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4632. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4633. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4634. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4635. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4636. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4637. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4639. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "loginSz") {
  4641. U.MD.D.I.openInApplication("loginSz")
  4642. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4643. if($('#classroom_observation_board')[0]){
  4644. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4645. }
  4646. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4647. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4648. if($('#classroom_observation_ob_comment')[0]){
  4649. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4650. }
  4651. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4652. }
  4653. });
  4654. U.MD.D.I.selectUser = function () {
  4655. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4656. if (res.value[0].length > 0) {
  4657. US.userInfo = res.value[0][0];
  4658. $(".userName")[0].innerHTML = US.userInfo.username;
  4659. }
  4660. }, [], { "type": "GET", "withCredentials": true });
  4661. }
  4662. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4663. var _userinfo = US.userInfo, //登录用户信息
  4664. _userid = US.userInfo.userid, //登录用户id
  4665. _oid = _userinfo.organizeid,
  4666. _type = US.userInfo.type,
  4667. _org = US.userInfo.org,
  4668. _role = US.userInfo.role,
  4669. _classId = US.userInfo.classid;
  4670. if (_type == 4) {
  4671. tType = 4
  4672. }
  4673. switch (str) {
  4674. case "studyDetailNT": //无终端模式
  4675. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4676. setTimeout(() => {
  4677. U.MD.U.L.login();
  4678. }, 2000);
  4679. } else {
  4680. _formdiv = new U.UF.UI.form(
  4681. "课程详情",
  4682. $$("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 }), {
  4683. "id": "studyDetailNT",
  4684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //创建窗体
  4689. _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); } }
  4690. break;
  4691. }
  4692. case "studyDetail":
  4693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4694. setTimeout(() => {
  4695. U.MD.U.L.login();
  4696. }, 2000);
  4697. } else {
  4698. _formdiv = new U.UF.UI.form(
  4699. "课程详情",
  4700. $$("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 }), {
  4701. "id": "studyDetail",
  4702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //创建窗体
  4707. _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); } }
  4708. break;
  4709. }
  4710. case "studyDetailTrain":
  4711. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4712. setTimeout(() => {
  4713. U.MD.U.L.login();
  4714. }, 2000);
  4715. } else {
  4716. _formdiv = new U.UF.UI.form(
  4717. "培训详情",
  4718. $$("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 }), {
  4719. "id": "studyDetailTrain",
  4720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4721. "onresize": function () { }
  4722. }, {
  4723. closecallback: function () { }
  4724. }, { "style": { "height": "36px" } }).form; //创建窗体
  4725. _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); } }
  4726. break;
  4727. }
  4728. case "studyDetailS":
  4729. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4730. setTimeout(() => {
  4731. U.MD.U.L.login();
  4732. }, 2000);
  4733. } else {
  4734. _formdiv = new U.UF.UI.form(
  4735. "项目详情",
  4736. $$("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 }), {
  4737. "id": "studyDetailS",
  4738. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. _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); } }
  4744. break;
  4745. }
  4746. case "studyDetailStudio":
  4747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4748. setTimeout(() => {
  4749. U.MD.U.L.login();
  4750. }, 2000);
  4751. } else {
  4752. _formdiv = new U.UF.UI.form(
  4753. "工作详情",
  4754. $$("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 }), {
  4755. "id": "studyDetailStudio",
  4756. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4757. "onresize": function () { }
  4758. }, {
  4759. closecallback: function () { }
  4760. }, { "style": { "height": "36px" } }).form; //创建窗体
  4761. _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); } }
  4762. break;
  4763. }
  4764. case "studyDetailS5":
  4765. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4766. setTimeout(() => {
  4767. U.MD.U.L.login();
  4768. }, 2000);
  4769. } else {
  4770. _formdiv = new U.UF.UI.form(
  4771. "项目详情",
  4772. $$("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 }), {
  4773. "id": "studyDetailS",
  4774. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _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); } }
  4780. break;
  4781. }
  4782. case "studyDetailGM":
  4783. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4784. setTimeout(() => {
  4785. U.MD.U.L.login();
  4786. }, 2000);
  4787. } else {
  4788. _formdiv = new U.UF.UI.form(
  4789. "课程详情",
  4790. $$("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 }), {
  4791. "id": "studyDetail",
  4792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4793. "onresize": function () { }
  4794. }, {
  4795. closecallback: function () { }
  4796. }, { "style": { "height": "36px" } }).form; //创建窗体
  4797. _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); } }
  4798. break;
  4799. }
  4800. case "hanUrl":
  4801. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4802. setTimeout(() => {
  4803. U.MD.U.L.login();
  4804. }, 2000);
  4805. } else {
  4806. _formdiv = new U.UF.UI.form(
  4807. "汉字宫",
  4808. $$("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" }), {
  4809. "id": "hanUrl",
  4810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. }
  4818. case "index":
  4819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4820. setTimeout(() => {
  4821. U.MD.U.L.login();
  4822. }, 2000);
  4823. } else {
  4824. _formdiv = new U.UF.UI.form(
  4825. "课程中心",
  4826. $$("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 }), {
  4827. "id": "study",
  4828. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _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); } }
  4834. break;
  4835. }
  4836. case "dataClass":
  4837. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4838. setTimeout(() => {
  4839. U.MD.U.L.login();
  4840. }, 2000);
  4841. } else {
  4842. _formdiv = new U.UF.UI.form(
  4843. "数据报告",
  4844. $$("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 }), {
  4845. "id": "dataClass",
  4846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. }
  4854. case "opencCscl":
  4855. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4856. setTimeout(() => {
  4857. U.MD.U.L.login();
  4858. }, 2000);
  4859. } else {
  4860. _formdiv = new U.UF.UI.form(
  4861. "协同建构",
  4862. $$("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 }), {
  4863. "id": "futureClass",
  4864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _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); } }
  4870. break;
  4871. }
  4872. case "openCourseUpdate":
  4873. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4874. setTimeout(() => {
  4875. U.MD.U.L.login();
  4876. }, 2000);
  4877. } else {
  4878. _formdiv = new U.UF.UI.form(
  4879. "课程管理",
  4880. $$("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 }), {
  4881. "id": "openCourseUpdate",
  4882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. break;
  4888. }
  4889. case "openNewCourseUpdate":
  4890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4891. setTimeout(() => {
  4892. U.MD.U.L.login();
  4893. }, 2000);
  4894. } else {
  4895. _formdiv = new U.UF.UI.form(
  4896. "课程管理",
  4897. $$("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 }), {
  4898. "id": "openCourseUpdate",
  4899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. break;
  4905. }
  4906. case "openCourseEUpdate":
  4907. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4908. setTimeout(() => {
  4909. U.MD.U.L.login();
  4910. }, 2000);
  4911. } else {
  4912. _formdiv = new U.UF.UI.form(
  4913. "课程管理",
  4914. $$("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 }), {
  4915. "id": "openCourseUpdate",
  4916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. break;
  4922. }
  4923. case "openCourseAiUpdate":
  4924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4925. setTimeout(() => {
  4926. U.MD.U.L.login();
  4927. }, 2000);
  4928. } else {
  4929. _formdiv = new U.UF.UI.form(
  4930. "课程管理",
  4931. $$("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 }), {
  4932. "id": "openCourseUpdate",
  4933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. break;
  4939. }
  4940. case "openCourseNewUpdate":
  4941. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4942. setTimeout(() => {
  4943. U.MD.U.L.login();
  4944. }, 2000);
  4945. } else {
  4946. _formdiv = new U.UF.UI.form(
  4947. "课程管理",
  4948. $$("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 }), {
  4949. "id": "openCourseUpdate",
  4950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4951. "onresize": function () { }
  4952. }, {
  4953. closecallback: function () { }
  4954. }, { "style": { "height": "36px" } }).form; //创建窗体
  4955. break;
  4956. }
  4957. case "inviteLoginSz":
  4958. _formdiv = new U.UF.UI.form(
  4959. "随机码登录",
  4960. $$("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 }), {
  4961. "id": "loginSz",
  4962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4963. "onresize": function () { }
  4964. }, {
  4965. closecallback: function () { }
  4966. }, { "style": { "height": "36px" } }).form; //创建窗体
  4967. break;
  4968. case "loginSz":
  4969. _formdiv = new U.UF.UI.form(
  4970. "教师登录",
  4971. $$("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" }), {
  4972. "id": "loginSz",
  4973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4974. "onresize": function () { }
  4975. }, {
  4976. closecallback: function () { }
  4977. }, { "style": { "height": "36px" } }).form; //创建窗体
  4978. break;
  4979. case "teacher":
  4980. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4981. setTimeout(() => {
  4982. U.MD.U.L.login();
  4983. }, 2000);
  4984. } else {
  4985. _formdiv = new U.UF.UI.form(
  4986. "教师管理",
  4987. $$("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 }), {
  4988. "id": "teacher",
  4989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { }
  4993. }, { "style": { "height": "36px" } }).form; //创建窗体
  4994. break;
  4995. }
  4996. case "dataBoardSZArea":
  4997. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4998. setTimeout(() => {
  4999. U.MD.U.L.login();
  5000. }, 2000);
  5001. } else {
  5002. _formdiv = new U.UF.UI.form(
  5003. "综合数据看板",
  5004. $$("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 }), {
  5005. "id": "dataBoardSZArea",
  5006. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. break;
  5012. }
  5013. case "dataBoardSZCity":
  5014. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5015. setTimeout(() => {
  5016. U.MD.U.L.login();
  5017. }, 2000);
  5018. } else {
  5019. _formdiv = new U.UF.UI.form(
  5020. "综合数据看板",
  5021. $$("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 }), {
  5022. "id": "dataBoardSZCity",
  5023. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. break;
  5029. }
  5030. case "classroom_observation_board":
  5031. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5032. setTimeout(() => {
  5033. U.MD.U.L.login();
  5034. }, 2000);
  5035. } else {
  5036. _formdiv = new U.UF.UI.form(
  5037. "课堂观察",
  5038. $$("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 }), {
  5039. "id": "classroom_observation_board",
  5040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. break;
  5046. }
  5047. case "classroom_observation_ob_comment":
  5048. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5049. setTimeout(() => {
  5050. U.MD.U.L.login();
  5051. }, 2000);
  5052. } else {
  5053. _formdiv = new U.UF.UI.form(
  5054. "课堂审核",
  5055. $$("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 }), {
  5056. "id": "classroom_observation_ob_comment",
  5057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //创建窗体
  5062. break;
  5063. }
  5064. }
  5065. }
  5066. U.MD.D.I.openApplication = function (str, obj, info) {
  5067. obj = obj || {};
  5068. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5069. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5070. _userinfo = US.userInfo, //登录用户信息
  5071. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5072. _oid = obj.organizeid || _userinfo.organizeid,
  5073. _type = US.userInfo.type,
  5074. _org = US.userInfo.org,
  5075. _role = US.userInfo.role,
  5076. _classId = US.userInfo.classid,
  5077. _TscreenType = 1
  5078. _screenType = 2,
  5079. _SscreenType = 3;
  5080. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5081. return;
  5082. }
  5083. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5084. switch (str) {
  5085. case "studnetProject": //好友打开
  5086. _formdiv = new U.UF.UI.form(
  5087. "我的项目",
  5088. $$("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 }), {
  5089. "id": "studnetProject",
  5090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5091. "onresize": function () { }
  5092. }, {
  5093. closecallback: function () { }
  5094. }, { "style": { "height": "36px" } }).form; //创建窗体
  5095. _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); } }
  5096. break;
  5097. case "studentEvaluate": //好友打开
  5098. _formdiv = new U.UF.UI.form(
  5099. "我的评价",
  5100. $$("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 }), {
  5101. "id": "studentEvaluate",
  5102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. _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); } }
  5108. break;
  5109. case "my":
  5110. _formdiv = new U.UF.UI.form(
  5111. "我的资料",
  5112. $$("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 }), {
  5113. "id": "my",
  5114. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5115. "onresize": function () { }
  5116. }, {
  5117. closecallback: function () { }
  5118. }, { "style": { "height": "36px" } }).form; //创建窗体
  5119. _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); } }
  5120. break;
  5121. case "program":
  5122. _formdiv = new U.UF.UI.form(
  5123. "编程平台",
  5124. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5125. "id": "program",
  5126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5127. "onresize": function () { }
  5128. }, {
  5129. closecallback: function () { }
  5130. }, { "style": { "height": "36px" } }).form; //创建窗体
  5131. _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); } }
  5132. break;
  5133. case "library":
  5134. _formdiv = new U.UF.UI.form(
  5135. "素材库",
  5136. $$("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 }), {
  5137. "id": "library",
  5138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5139. "onresize": function () { }
  5140. }, {
  5141. closecallback: function () { }
  5142. }, { "style": { "height": "36px" } }).form; //创建窗体
  5143. _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); } }
  5144. break;
  5145. case "whiteboard":
  5146. _formdiv = new U.UF.UI.form(
  5147. "电子白板",
  5148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5149. "id": "whiteboard",
  5150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5151. "onresize": function () { }
  5152. }, {
  5153. closecallback: function () { }
  5154. }, { "style": { "height": "36px" } }).form; //创建窗体
  5155. _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); } }
  5156. break;
  5157. case "investigation":
  5158. _formdiv = new U.UF.UI.form(
  5159. "问卷调查",
  5160. $$("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 }), {
  5161. "id": "investigation",
  5162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. _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); } }
  5168. break;
  5169. case "note":
  5170. _formdiv = new U.UF.UI.form(
  5171. "便签分类",
  5172. $$("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 }), {
  5173. "id": "note",
  5174. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5175. "onresize": function () { }
  5176. }, {
  5177. closecallback: function () { }
  5178. }, { "style": { "height": "36px" } }).form; //创建窗体
  5179. _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); } }
  5180. break;
  5181. // case "score":
  5182. // _formdiv = new U.UF.UI.form(
  5183. // "量规评分",
  5184. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5185. // "id": "score",
  5186. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5187. // "onresize": function() {}
  5188. // }, {
  5189. // closecallback: function() {}
  5190. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5191. // _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); } }
  5192. // break;
  5193. case "mind":
  5194. _formdiv = new U.UF.UI.form(
  5195. "思维导图",
  5196. $$("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"
  5197. "id": "mind",
  5198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5199. "onresize": function () { }
  5200. }, {
  5201. closecallback: function () { }
  5202. }, { "style": { "height": "36px" } }).form; //创建窗体
  5203. _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); } }
  5204. break;
  5205. case "doc":
  5206. // U.MD.D.I.isRoom();
  5207. _formdiv = new U.UF.UI.form(
  5208. "协同文档",
  5209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5210. "id": "doc",
  5211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5217. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5218. // })
  5219. _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); } }
  5220. break;
  5221. case "studentStudy":
  5222. _formdiv = new U.UF.UI.form(
  5223. "课程中心",
  5224. $$("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
  5225. "id": "studentStudy",
  5226. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //创建窗体
  5231. _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); } }
  5232. break;
  5233. case "train": //好友打开
  5234. _formdiv = new U.UF.UI.form(
  5235. "训练平台",
  5236. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5237. "id": "train",
  5238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5239. "onresize": function () { }
  5240. }, {
  5241. closecallback: function () { }
  5242. }, { "style": { "height": "36px" } }).form; //创建窗体
  5243. _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); } }
  5244. break;
  5245. case "mindNetwork": //好友打开
  5246. _formdiv = new U.UF.UI.form(
  5247. "思维网格",
  5248. $$("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 }), {
  5249. "id": "mindNetwork",
  5250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. case "studentClassRoom": //好友打开
  5258. _formdiv = new U.UF.UI.form(
  5259. "实时课堂",
  5260. $$("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 }), {
  5261. "id": "studentClassRoom",
  5262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //创建窗体
  5267. _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); } }
  5268. setTimeout(() => {
  5269. U.UF.F.windowZooming(_formdiv)
  5270. }, 0);
  5271. break;
  5272. }
  5273. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5274. switch (str) {
  5275. case "studnetProject": //好友打开
  5276. _formdiv = new U.UF.UI.form(
  5277. "我的项目",
  5278. $$("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 }), {
  5279. "id": "studnetProject",
  5280. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _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); } }
  5286. break;
  5287. case "studentEvaluate": //好友打开
  5288. _formdiv = new U.UF.UI.form(
  5289. "我的评价",
  5290. $$("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 }), {
  5291. "id": "studentEvaluate",
  5292. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5293. "onresize": function () { }
  5294. }, {
  5295. closecallback: function () { }
  5296. }, { "style": { "height": "36px" } }).form; //创建窗体
  5297. _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); } }
  5298. break;
  5299. case "my":
  5300. _formdiv = new U.UF.UI.form(
  5301. "我的资料",
  5302. $$("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 }), {
  5303. "id": "my",
  5304. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. _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); } }
  5310. break;
  5311. case "program":
  5312. _formdiv = new U.UF.UI.form(
  5313. "编程平台",
  5314. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5315. "id": "program",
  5316. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //创建窗体
  5321. _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); } }
  5322. break;
  5323. case "library":
  5324. _formdiv = new U.UF.UI.form(
  5325. "素材库",
  5326. $$("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 }), {
  5327. "id": "library",
  5328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5329. "onresize": function () { }
  5330. }, {
  5331. closecallback: function () { }
  5332. }, { "style": { "height": "36px" } }).form; //创建窗体
  5333. _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); } }
  5334. break;
  5335. case "whiteboard":
  5336. _formdiv = new U.UF.UI.form(
  5337. "电子白板",
  5338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5339. "id": "whiteboard",
  5340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. case "investigation":
  5348. _formdiv = new U.UF.UI.form(
  5349. "问卷调查",
  5350. $$("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 }), {
  5351. "id": "investigation",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. case "note":
  5360. _formdiv = new U.UF.UI.form(
  5361. "便签分类",
  5362. $$("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 }), {
  5363. "id": "note",
  5364. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. // case "score":
  5372. // _formdiv = new U.UF.UI.form(
  5373. // "量规评分",
  5374. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5375. // "id": "score",
  5376. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5377. // "onresize": function() {}
  5378. // }, {
  5379. // closecallback: function() {}
  5380. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. // _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); } }
  5382. // break;
  5383. case "mind":
  5384. _formdiv = new U.UF.UI.form(
  5385. "思维导图",
  5386. $$("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"
  5387. "id": "mind",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "doc":
  5396. // U.MD.D.I.isRoom();
  5397. _formdiv = new U.UF.UI.form(
  5398. "协同文档",
  5399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5400. "id": "doc",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5407. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5408. })
  5409. _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); } }
  5410. break;
  5411. case "train": //好友打开
  5412. _formdiv = new U.UF.UI.form(
  5413. "训练平台",
  5414. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5415. "id": "train",
  5416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _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); } }
  5422. break;
  5423. case "studentStudy":
  5424. _formdiv = new U.UF.UI.form(
  5425. "课程中心",
  5426. $$("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
  5427. "id": "studentStudy",
  5428. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _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); } }
  5434. break;
  5435. case "mindNetwork": //好友打开
  5436. _formdiv = new U.UF.UI.form(
  5437. "思维网格",
  5438. $$("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 }), {
  5439. "id": "mindNetwork",
  5440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5441. "onresize": function () { }
  5442. }, {
  5443. closecallback: function () { }
  5444. }, { "style": { "height": "36px" } }).form; //创建窗体
  5445. _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); } }
  5446. break;
  5447. case "studentClassRoom": //好友打开
  5448. _formdiv = new U.UF.UI.form(
  5449. "实时课堂",
  5450. $$("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 }), {
  5451. "id": "studentClassRoom",
  5452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //创建窗体
  5457. _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); } }
  5458. setTimeout(() => {
  5459. U.UF.F.windowZooming(_formdiv)
  5460. }, 0);
  5461. break;
  5462. }
  5463. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5464. //选择应用处理
  5465. switch (str) {
  5466. case "project": //好友打开
  5467. _formdiv = new U.UF.UI.form(
  5468. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5469. $$("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 }), {
  5470. "id": "project",
  5471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. break;
  5478. case "student":
  5479. _formdiv = new U.UF.UI.form(
  5480. "学生管理",
  5481. $$("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 }), {
  5482. "id": "student",
  5483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _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); } }
  5489. break;
  5490. case "evaluate":
  5491. _formdiv = new U.UF.UI.form(
  5492. "学生评价",
  5493. $$("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 }), {
  5494. "id": "evaluate",
  5495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _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); } }
  5501. break;
  5502. case "sys":
  5503. _formdiv = new U.UF.UI.form(
  5504. "目标管理",
  5505. $$("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 }), {
  5506. "id": "sys",
  5507. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _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); } }
  5513. break;
  5514. case "courseDesign":
  5515. _formdiv = new U.UF.UI.form(
  5516. "项目设计",
  5517. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5518. "id": "courseDesign",
  5519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. _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); } }
  5525. break;
  5526. case "program":
  5527. _formdiv = new U.UF.UI.form(
  5528. "编程平台",
  5529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5530. "id": "program",
  5531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "class":
  5539. _formdiv = new U.UF.UI.form(
  5540. "班级管理",
  5541. $$("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 }), {
  5542. "id": "class",
  5543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "Grade":
  5551. _formdiv = new U.UF.UI.form(
  5552. "年级管理",
  5553. $$("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 }), {
  5554. "id": "Grade",
  5555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "teacherOffice":
  5563. _formdiv = new U.UF.UI.form(
  5564. "教研室",
  5565. $$("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 }), {
  5566. "id": "teacherOffice",
  5567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "my":
  5575. _formdiv = new U.UF.UI.form(
  5576. "我的资料",
  5577. $$("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 }), {
  5578. "id": "my",
  5579. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "notice":
  5587. _formdiv = new U.UF.UI.form(
  5588. "通知公告",
  5589. $$("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 }), {
  5590. "id": "notice",
  5591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break;
  5598. case "library":
  5599. _formdiv = new U.UF.UI.form(
  5600. "素材库",
  5601. $$("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 }), {
  5602. "id": "library",
  5603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "whiteboard":
  5611. _formdiv = new U.UF.UI.form(
  5612. "电子白板",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5614. "id": "whiteboard",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "investigation":
  5623. _formdiv = new U.UF.UI.form(
  5624. "问卷调查",
  5625. $$("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 }), {
  5626. "id": "investigation",
  5627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. case "note":
  5635. _formdiv = new U.UF.UI.form(
  5636. "便签分类",
  5637. $$("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 }), {
  5638. "id": "note",
  5639. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _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); } }
  5645. break;
  5646. // case "score":
  5647. // _formdiv = new U.UF.UI.form(
  5648. // "量规评分",
  5649. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5650. // "id": "score",
  5651. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. // "onresize": function() {}
  5653. // }, {
  5654. // closecallback: function() {}
  5655. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. // _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); } }
  5657. // break;
  5658. case "mind":
  5659. _formdiv = new U.UF.UI.form(
  5660. "思维导图",
  5661. $$("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"
  5662. "id": "mind",
  5663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. case "doc":
  5671. // U.MD.D.I.isRoom();
  5672. _formdiv = new U.UF.UI.form(
  5673. "协同文档",
  5674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5675. "id": "doc",
  5676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5682. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5683. })
  5684. _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); } }
  5685. break;
  5686. case "study":
  5687. _formdiv = new U.UF.UI.form(
  5688. "课程中心",
  5689. $$("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
  5690. "id": "study",
  5691. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _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); } }
  5697. break;
  5698. case "mindNetwork": //好友打开
  5699. _formdiv = new U.UF.UI.form(
  5700. "思维网格",
  5701. $$("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 }), {
  5702. "id": "mindNetwork",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _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); } }
  5709. break;
  5710. case "train": //好友打开
  5711. _formdiv = new U.UF.UI.form(
  5712. "训练平台",
  5713. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5714. "id": "mindNetwork",
  5715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. _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); } }
  5721. break;
  5722. case "teacherClassRoom": //好友打开
  5723. _formdiv = new U.UF.UI.form(
  5724. "实时课堂",
  5725. $$("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 }), {
  5726. "id": "teacherClassRoom",
  5727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. _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); } }
  5733. setTimeout(() => {
  5734. U.UF.F.windowZooming(_formdiv)
  5735. }, 0);
  5736. break;
  5737. }
  5738. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5739. switch (str) {
  5740. case "project": //好友打开
  5741. _formdiv = new U.UF.UI.form(
  5742. "课程管理",
  5743. $$("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 }), {
  5744. "id": "project",
  5745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "evaluate":
  5753. _formdiv = new U.UF.UI.form(
  5754. "学生评价",
  5755. $$("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 }), {
  5756. "id": "evaluate",
  5757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break;
  5764. case "notice":
  5765. _formdiv = new U.UF.UI.form(
  5766. "通知公告",
  5767. $$("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 }), {
  5768. "id": "notice",
  5769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "stuLibrary":
  5777. _formdiv = new U.UF.UI.form(
  5778. "学习资料",
  5779. $$("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 }), {
  5780. "id": "stuLibrary",
  5781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. break;
  5788. case "program":
  5789. _formdiv = new U.UF.UI.form(
  5790. "编程平台",
  5791. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5792. "id": "program",
  5793. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5794. "onresize": function () { }
  5795. }, {
  5796. closecallback: function () { }
  5797. }, { "style": { "height": "36px" } }).form; //创建窗体
  5798. _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); } }
  5799. break;
  5800. case "whiteboard":
  5801. _formdiv = new U.UF.UI.form(
  5802. "电子白板",
  5803. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5804. "id": "whiteboard",
  5805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _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); } }
  5811. break;
  5812. case "investigation":
  5813. _formdiv = new U.UF.UI.form(
  5814. "问卷调查",
  5815. $$("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 }), {
  5816. "id": "investigation",
  5817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. _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); } }
  5823. break;
  5824. case "mind":
  5825. _formdiv = new U.UF.UI.form(
  5826. "思维导图",
  5827. $$("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"
  5828. "id": "mind",
  5829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5830. "onresize": function () { }
  5831. }, {
  5832. closecallback: function () { }
  5833. }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. _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); } }
  5835. break;
  5836. case "doc":
  5837. // U.MD.D.I.isRoom();
  5838. _formdiv = new U.UF.UI.form(
  5839. "协同文档",
  5840. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5841. "id": "doc",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5848. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5849. })
  5850. _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); } }
  5851. break;
  5852. case "study":
  5853. _formdiv = new U.UF.UI.form(
  5854. "课程中心",
  5855. $$("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
  5856. "id": "study",
  5857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //创建窗体
  5862. _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); } }
  5863. break;
  5864. case "mindNetwork": //好友打开
  5865. _formdiv = new U.UF.UI.form(
  5866. "思维网格",
  5867. $$("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 }), {
  5868. "id": "mindNetwork",
  5869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _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); } }
  5875. break;
  5876. case "train": //好友打开
  5877. _formdiv = new U.UF.UI.form(
  5878. "训练平台",
  5879. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5880. "id": "train",
  5881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //创建窗体
  5886. _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); } }
  5887. break;
  5888. case "sys":
  5889. _formdiv = new U.UF.UI.form(
  5890. "目标管理",
  5891. $$("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 }), {
  5892. "id": "sys",
  5893. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. _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); } }
  5899. break;
  5900. case "courseDesign":
  5901. _formdiv = new U.UF.UI.form(
  5902. "项目设计",
  5903. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5904. "id": "courseDesign",
  5905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, { "style": { "height": "36px" } }).form; //创建窗体
  5910. _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); } }
  5911. break;
  5912. }
  5913. } else if (!_type) {
  5914. switch (str) {
  5915. case "my":
  5916. _formdiv = new U.UF.UI.form(
  5917. "我的资料",
  5918. $$("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 }), {
  5919. "id": "my",
  5920. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //创建窗体
  5925. _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); } }
  5926. break;
  5927. }
  5928. }
  5929. switch (str) {
  5930. // AIprogram2 AI体验 aihub.cocorobo.cn
  5931. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5932. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5933. case "formulaEdi": //公式编辑
  5934. _formdiv = new U.UF.UI.form(
  5935. "公式编辑",
  5936. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5937. "id": "formulaEdi",
  5938. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5939. "onresize": function () { }
  5940. }, {
  5941. closecallback: function () { }
  5942. }, { "style": { "height": "36px" } }).form; //创建窗体
  5943. _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); } }
  5944. break;
  5945. case "molStr": //分子结构
  5946. _formdiv = new U.UF.UI.form(
  5947. "分子结构",
  5948. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5949. "id": "molStr",
  5950. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _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); } }
  5956. break;
  5957. case "timeAxis": //时间轴
  5958. _formdiv = new U.UF.UI.form(
  5959. "时间轴",
  5960. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5961. "id": "timeAxis",
  5962. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _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); } }
  5968. break;
  5969. case "AIprogram2": //AI体验
  5970. _formdiv = new U.UF.UI.form(
  5971. "AI体验",
  5972. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5973. "id": "AIprogram2",
  5974. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. _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); } }
  5980. break;
  5981. case "Pythonprogram": //python编程
  5982. _formdiv = new U.UF.UI.form(
  5983. "Python编程",
  5984. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5985. "id": "Pythonprogram",
  5986. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _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); } }
  5992. break;
  5993. case "AIprogram": //ai编程
  5994. _formdiv = new U.UF.UI.form(
  5995. "AI编程平台",
  5996. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5997. "id": "AIprogram",
  5998. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "CocoPi": //CocoPi
  6006. _formdiv = new U.UF.UI.form(
  6007. "CocoPi",
  6008. $$("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" }), {
  6009. "id": "CocoPi",
  6010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. case "Wood": //Wood
  6018. _formdiv = new U.UF.UI.form(
  6019. "海龟编程",
  6020. $$("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/" }), {
  6021. "id": "Wood",
  6022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _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); } }
  6028. break;
  6029. case "car": //模拟驾驶
  6030. _formdiv = new U.UF.UI.form(
  6031. "模拟驾驶",
  6032. $$("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/" }), {
  6033. "id": "car",
  6034. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "lineSearch": //路径搜索
  6042. _formdiv = new U.UF.UI.form(
  6043. "路径搜索",
  6044. $$("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/" }), {
  6045. "id": "lineSearch",
  6046. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _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); } }
  6052. break;
  6053. case "deepLearning": //深度学习
  6054. _formdiv = new U.UF.UI.form(
  6055. "深度学习",
  6056. $$("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/#" }), {
  6057. "id": "deepLearning",
  6058. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. _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); } }
  6064. break;
  6065. case "allHistory": //深度学习
  6066. _formdiv = new U.UF.UI.form(
  6067. "全历史",
  6068. $$("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/" }), {
  6069. "id": "allHistory",
  6070. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6071. "onresize": function () { }
  6072. }, {
  6073. closecallback: function () { }
  6074. }, { "style": { "height": "36px" } }).form; //创建窗体
  6075. _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); } }
  6076. break;
  6077. case "chatPDF": //ai编程
  6078. _formdiv = new U.UF.UI.form(
  6079. "chatPDF",
  6080. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6081. "id": "chatPDF",
  6082. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6083. "onresize": function () { }
  6084. }, {
  6085. closecallback: function () { }
  6086. }, { "style": { "height": "36px" } }).form; //创建窗体
  6087. _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); } }
  6088. break;
  6089. case "resources": //国家教育
  6090. _formdiv = new U.UF.UI.form(
  6091. "国家教育",
  6092. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6093. "id": "resources",
  6094. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6095. "onresize": function () { }
  6096. }, {
  6097. closecallback: function () { }
  6098. }, { "style": { "height": "36px" } }).form; //创建窗体
  6099. _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); } }
  6100. break;
  6101. case "codeEdit": //源码编辑
  6102. _formdiv = new U.UF.UI.form(
  6103. "源码编辑",
  6104. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6105. "id": "codeEdit",
  6106. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6107. "onresize": function () { }
  6108. }, {
  6109. closecallback: function () { }
  6110. }, { "style": { "height": "36px" } }).form; //创建窗体
  6111. _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); } }
  6112. break; //
  6113. case "MindMap": //MindMap
  6114. _formdiv = new U.UF.UI.form(
  6115. "MindMap",
  6116. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6117. "id": "MindMap",
  6118. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6119. "onresize": function () { }
  6120. }, {
  6121. closecallback: function () { }
  6122. }, { "style": { "height": "36px" } }).form; //创建窗体
  6123. _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); } }
  6124. break;
  6125. case "netWorkPanel": //netWorkPanel
  6126. _formdiv = new U.UF.UI.form(
  6127. "netWorkPanel",
  6128. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6129. "id": "netWorkPanel",
  6130. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6131. "onresize": function () { }
  6132. }, {
  6133. closecallback: function () { }
  6134. }, { "style": { "height": "36px" } }).form; //创建窗体
  6135. _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); } }
  6136. break;
  6137. case "GeoGebra": //GeoGebra
  6138. _formdiv = new U.UF.UI.form(
  6139. "GeoGebra",
  6140. $$("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" }), {
  6141. "id": "GeoGebra",
  6142. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "translation": //翻译
  6150. _formdiv = new U.UF.UI.form(
  6151. "翻译",
  6152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6153. "id": "translation",
  6154. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "mohe": //魔盒
  6162. _formdiv = new U.UF.UI.form(
  6163. "魔盒识字",
  6164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6165. "id": "mohe",
  6166. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "24game": //24点
  6174. _formdiv = new U.UF.UI.form(
  6175. "24点",
  6176. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6177. "id": "24game",
  6178. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "case":
  6186. _formdiv = new U.UF.UI.form(
  6187. "课程进展",
  6188. $$("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 }), {
  6189. "id": "case",
  6190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "snf":
  6198. _formdiv = new U.UF.UI.form(
  6199. "赛诺梵",
  6200. $$("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" }), {
  6201. "id": "snf",
  6202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. break;
  6209. case "hanFamily":
  6210. _formdiv = new U.UF.UI.form(
  6211. "汉字家族",
  6212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6213. "id": "hanFamily",
  6214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _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); } }
  6220. break;
  6221. case "hanClassics":
  6222. _formdiv = new U.UF.UI.form(
  6223. "国学经典",
  6224. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6225. "id": "hanClassics",
  6226. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _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); } }
  6232. break;
  6233. case "hanTraining":
  6234. _formdiv = new U.UF.UI.form(
  6235. "笔画训练",
  6236. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6237. "id": "hanTraining",
  6238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _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); } }
  6244. break;
  6245. case "hanClass":
  6246. _formdiv = new U.UF.UI.form(
  6247. "书法课堂",
  6248. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6249. "id": "hanClass",
  6250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. case "han":
  6258. _formdiv = new U.UF.UI.form(
  6259. "汉字宫",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6261. "id": "han",
  6262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "projectGM": //课程管理
  6270. _formdiv = new U.UF.UI.form(
  6271. "课程管理",
  6272. $$("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 }), {
  6273. "id": "projectGM",
  6274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "studyGM": //课程中心
  6282. _formdiv = new U.UF.UI.form(
  6283. "课程中心",
  6284. $$("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
  6285. "id": "study",
  6286. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. // studentGM
  6294. case "studentGM": //学生管理
  6295. _formdiv = new U.UF.UI.form(
  6296. "学生管理",
  6297. $$("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 }), {
  6298. "id": "studentGM",
  6299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6300. "onresize": function () { }
  6301. }, {
  6302. closecallback: function () { }
  6303. }, { "style": { "height": "36px" } }).form; //创建窗体
  6304. _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); } }
  6305. break;
  6306. case "evaluateGM": //学生评价
  6307. _formdiv = new U.UF.UI.form(
  6308. "学生评价",
  6309. $$("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 }), {
  6310. "id": "evaluateGM",
  6311. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6312. "onresize": function () { }
  6313. }, {
  6314. closecallback: function () { }
  6315. }, { "style": { "height": "36px" } }).form; //创建窗体
  6316. _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); } }
  6317. break;
  6318. // classGM
  6319. case "classGM": //班级管理
  6320. _formdiv = new U.UF.UI.form(
  6321. "班级管理",
  6322. $$("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 }), {
  6323. "id": "classGM",
  6324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //创建窗体
  6329. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6330. break;
  6331. // dataGM
  6332. case "dataGM":
  6333. _formdiv = new U.UF.UI.form(
  6334. "我的资料",
  6335. $$("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 }), {
  6336. "id": "dataGM",
  6337. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6338. "onresize": function () { }
  6339. }, {
  6340. closecallback: function () { }
  6341. }, { "style": { "height": "36px" } }).form; //创建窗体
  6342. _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); } }
  6343. break;
  6344. // caseGM
  6345. case "caseGM": //课程进展
  6346. _formdiv = new U.UF.UI.form(
  6347. "课程进展",
  6348. $$("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 }), {
  6349. "id": "caseGM",
  6350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6351. "onresize": function () { }
  6352. }, {
  6353. closecallback: function () { }
  6354. }, { "style": { "height": "36px" } }).form; //创建窗体
  6355. _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); } }
  6356. break;
  6357. // meterialGM
  6358. case "meterialGM": //素材库
  6359. _formdiv = new U.UF.UI.form(
  6360. "素材库",
  6361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6362. "id": "meterialGM",
  6363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6364. "onresize": function () { }
  6365. }, {
  6366. closecallback: function () { }
  6367. }, { "style": { "height": "36px" } }).form; //创建窗体
  6368. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6369. break;
  6370. // evaluateSGM
  6371. case "evaluateSGM": //我的评价
  6372. _formdiv = new U.UF.UI.form(
  6373. "我的评价",
  6374. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6375. "id": "evaluateSGM",
  6376. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //创建窗体
  6381. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6382. break;
  6383. case "jupyter": //jupyter
  6384. _formdiv = new U.UF.UI.form(
  6385. "jupyter",
  6386. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6387. "id": "jupyter",
  6388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6394. break;
  6395. case "number": //数字实验室
  6396. _formdiv = new U.UF.UI.form(
  6397. "数字实验室",
  6398. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6399. "id": "number",
  6400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6406. break;
  6407. case "studentCourse": //项目管理 学生
  6408. _formdiv = new U.UF.UI.form(
  6409. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6410. $$("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 }), {
  6411. "id": "studentCourse",
  6412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6418. break;
  6419. case "studentCourseS": //项目管理 老师
  6420. _formdiv = new U.UF.UI.form(
  6421. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6422. $$("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 }), {
  6423. "id": "studentCourseS",
  6424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6430. break;
  6431. case "studentIndex": //项目中心
  6432. _formdiv = new U.UF.UI.form(
  6433. "项目中心",
  6434. $$("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 }), {
  6435. "id": "studentIndex",
  6436. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6442. break;
  6443. case "CaseDesignS":
  6444. _formdiv = new U.UF.UI.form(
  6445. "项目进展",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6447. "id": "case",
  6448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6454. break;
  6455. case "tcStudent": //腾讯学生管理
  6456. _formdiv = new U.UF.UI.form(
  6457. "学生管理",
  6458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6459. "id": "tcStudent",
  6460. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6466. break;
  6467. case "tcSchool": //腾讯学校管理
  6468. _formdiv = new U.UF.UI.form(
  6469. "学校管理",
  6470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6471. "id": "tcSchool",
  6472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6478. break;
  6479. case "tcTeacher": //腾讯学校管理
  6480. _formdiv = new U.UF.UI.form(
  6481. "教师管理",
  6482. $$("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 }), {
  6483. "id": "tcTeacher",
  6484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "teacher":
  6492. _formdiv = new U.UF.UI.form(
  6493. "教师管理",
  6494. $$("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 }), {
  6495. "id": "teacher",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "tcData": //腾讯我的资料
  6504. _formdiv = new U.UF.UI.form(
  6505. "我的资料",
  6506. $$("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 }), {
  6507. "id": "tcData",
  6508. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. break;
  6515. case "tcNotice": //腾讯消息通知
  6516. _formdiv = new U.UF.UI.form(
  6517. "消息通知",
  6518. $$("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 }), {
  6519. "id": "tcNotice",
  6520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _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); } }
  6526. break;
  6527. case "myReport": //好友打开
  6528. _formdiv = new U.UF.UI.form(
  6529. "我的评价",
  6530. $$("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 }), {
  6531. "id": "myReport",
  6532. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6533. "onresize": function () { }
  6534. }, {
  6535. closecallback: function () { }
  6536. }, { "style": { "height": "36px" } }).form; //创建窗体
  6537. _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); } }
  6538. break;
  6539. case "learnAna": //好友打开
  6540. _formdiv = new U.UF.UI.form(
  6541. "学习分析",
  6542. $$("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 }), {
  6543. "id": "learnAna",
  6544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6545. "onresize": function () { }
  6546. }, {
  6547. closecallback: function () { }
  6548. }, { "style": { "height": "36px" } }).form; //创建窗体
  6549. _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); } }
  6550. break;
  6551. case "AIChat": //AI共创
  6552. _formdiv = new U.UF.UI.form(
  6553. "AI共创",
  6554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6555. "id": "AIChat",
  6556. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6557. "onresize": function () { }
  6558. }, {
  6559. istop: true,
  6560. closecallback: function () { $("#aichat_icon").remove(); },
  6561. narrowcallback: function () {
  6562. if (!$("#aichat_icon")[0]) {
  6563. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6564. }
  6565. },
  6566. }, { "style": { "height": "36px" } }).form; //创建窗体
  6567. _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); } }
  6568. break;
  6569. case "ainew": //AI共创
  6570. _formdiv = new U.UF.UI.form(
  6571. "AI协同",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6573. "id": "ainew",
  6574. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _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); } }
  6580. break;
  6581. case "gpt4": //gpt4
  6582. _formdiv = new U.UF.UI.form(
  6583. "AI助手",
  6584. $$("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 }), {
  6585. "id": "gpt4",
  6586. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _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); } }
  6592. break;
  6593. case "aigpt": //gpt4
  6594. _formdiv = new U.UF.UI.form(
  6595. "AI助手+",
  6596. $$("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 }), {
  6597. "id": "aigpt",
  6598. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () {
  6602. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6603. }
  6604. }, { "style": { "height": "36px" } }).form; //创建窗体
  6605. _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); } }
  6606. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6607. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6608. })
  6609. break;
  6610. case "aiKnowledge": //aiKnowledge
  6611. _formdiv = new U.UF.UI.form(
  6612. "知识建构",
  6613. $$("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" }), {
  6614. "id": "aiKnowledge",
  6615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. case "futureClass": //AI共创
  6623. _formdiv = new U.UF.UI.form(
  6624. "协同建构",
  6625. $$("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
  6626. "id": "synergyCourse",
  6627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () {
  6631. $("iframe", _formdiv)[0].contentWindow.loginout();
  6632. }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "aiagent": //ai agent
  6637. _formdiv = new U.UF.UI.form(
  6638. "AI Agent",
  6639. $$("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" }), {
  6640. "id": "AIAgent",
  6641. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6647. break;
  6648. case "dataBoard": //数据看板
  6649. _formdiv = new U.UF.UI.form(
  6650. "数据看板",
  6651. $$("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 }), {
  6652. "id": "dataBoard",
  6653. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6659. break;
  6660. case "dataBoardSies": //数据融合
  6661. _formdiv = new U.UF.UI.form(
  6662. "数据融合",
  6663. $$("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 }), {
  6664. "id": "dataBoardSies",
  6665. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6671. break;
  6672. case "dataBoardNew": //数据看板
  6673. _formdiv = new U.UF.UI.form(
  6674. "综合看板",
  6675. $$("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 }), {
  6676. "id": "dataBoardNew",
  6677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6683. break;
  6684. case "dataBoardTest": //数据看板
  6685. _formdiv = new U.UF.UI.form(
  6686. "评测看板",
  6687. $$("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 }), {
  6688. "id": "dataBoardTest",
  6689. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6695. break;
  6696. case "AIAnalyse": //AI共创
  6697. _formdiv = new U.UF.UI.form(
  6698. "AI分析",
  6699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6700. "id": "AIAnalyse",
  6701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6707. break;
  6708. case "studioCourse": //AI共创
  6709. _formdiv = new U.UF.UI.form(
  6710. "工作管理",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6712. "id": "studioCourse",
  6713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. case "studioIndex": //AI共创
  6721. _formdiv = new U.UF.UI.form(
  6722. "工作中心",
  6723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6724. "id": "studioIndex",
  6725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6731. break;
  6732. case "source":
  6733. _formdiv = new U.UF.UI.form(
  6734. "教学资源",
  6735. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6736. "id": "source",
  6737. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6743. break;
  6744. case "testTeacher":
  6745. _formdiv = new U.UF.UI.form(
  6746. "教师管理",
  6747. $$("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 }), {
  6748. "id": "testTeacher",
  6749. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _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); } }
  6755. break;
  6756. case "testStudent":
  6757. _formdiv = new U.UF.UI.form(
  6758. "教师中心",
  6759. $$("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 }), {
  6760. "id": "testStudent",
  6761. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _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); } }
  6767. break;
  6768. case "testTeacherSies":
  6769. _formdiv = new U.UF.UI.form(
  6770. "教师管理",
  6771. $$("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 }), {
  6772. "id": "testTeacherSies",
  6773. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. closecallback: function () { }
  6777. }, { "style": { "height": "36px" } }).form; //创建窗体
  6778. _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); } }
  6779. break;
  6780. case "testStudentSies":
  6781. _formdiv = new U.UF.UI.form(
  6782. "教师中心",
  6783. $$("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 }), {
  6784. "id": "testStudentSies",
  6785. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6786. "onresize": function () { }
  6787. }, {
  6788. closecallback: function () { }
  6789. }, { "style": { "height": "36px" } }).form; //创建窗体
  6790. _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); } }
  6791. break;
  6792. case "ytpbl": //消息通知
  6793. _formdiv = new U.UF.UI.form(
  6794. "案例征集",
  6795. $$("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 }), {
  6796. "id": "ytpbl",
  6797. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, { "style": { "height": "36px" } }).form; //创建窗体
  6802. _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); } }
  6803. // 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");
  6804. break;
  6805. case "aiCourseResource": //人工智能窗体
  6806. _formdiv = new U.UF.UI.form(
  6807. false,
  6808. $$("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 }), {
  6809. "id": "aiCourseResource",
  6810. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6811. "onresize": function () { },
  6812. "isdrag": false,
  6813. }, {
  6814. closecallback: function () { }
  6815. }, { "style": { "height": "36px" } }).form; //创建窗体
  6816. _taskbar = ''
  6817. break;
  6818. case "szdjgCocooroboX": //图形化编程
  6819. _formdiv = new U.UF.UI.form(
  6820. "图形化编程",
  6821. $$("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" }), {
  6822. "id": "szdjgCocooroboX",
  6823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6824. "onresize": function () { }
  6825. }, {
  6826. closecallback: function () { }
  6827. }, { "style": { "height": "36px" } }).form; //创建窗体
  6828. _taskbar = ''
  6829. break;
  6830. case "szdjgPython": //python编程
  6831. _formdiv = new U.UF.UI.form(
  6832. "Python编程",
  6833. $$("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" }), {
  6834. "id": "szdjgPython",
  6835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, { "style": { "height": "36px" } }).form; //创建窗体
  6840. _taskbar = ''
  6841. break;
  6842. case "Record":
  6843. _formdiv = new U.UF.UI.form(
  6844. "观察记录",
  6845. $$("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 }), {
  6846. "id": "Record",
  6847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, { "style": { "height": "36px" } }).form; //创建窗体
  6852. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6853. break;
  6854. case "aigptCourse":
  6855. _formdiv = new U.UF.UI.form(
  6856. "AI智能体",
  6857. $$("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' }), {
  6858. "id": "aigptCourse",
  6859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6860. "onresize": function () { }
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6865. break;
  6866. case "classroomObservation":
  6867. _formdiv = new U.UF.UI.form(
  6868. "课堂观察",
  6869. $$("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 }), {
  6870. "id": "classroomObservation",
  6871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6877. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6878. break;
  6879. case "pblCourse":
  6880. _formdiv = new U.UF.UI.form(
  6881. "学生PBL",
  6882. $$("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 }), {
  6883. "id": "pblCourse",
  6884. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _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); } }
  6890. break;
  6891. case "appStore":
  6892. _formdiv = new U.UF.UI.form(
  6893. "应用中心",
  6894. $$("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 }), {
  6895. "id": "pblCourse",
  6896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //创建窗体
  6901. _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); } }
  6902. break;
  6903. }
  6904. //U.MD.D.I.openClick(str);
  6905. //如果有任务栏信息
  6906. if (_taskbar) {
  6907. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6908. }
  6909. }
  6910. // U.MD.D.I.openClick = function(str){
  6911. // var click = '';
  6912. // switch(str){
  6913. // case 'friend':
  6914. // click = '我的好友';
  6915. // break;
  6916. // case 'domain':
  6917. // click = '域名管理';
  6918. // break;
  6919. // case 'disk':
  6920. // click = '我的云盘';
  6921. // break;
  6922. // case 'word':
  6923. // click = 'Word';
  6924. // break;
  6925. // case 'excel':
  6926. // click = 'Execl';
  6927. // break;
  6928. // case 'txt':
  6929. // click = '文本文件';
  6930. // break;
  6931. // case 'lookupFriend':
  6932. // click = '查找好友';
  6933. // break;
  6934. // case 'ftp':
  6935. // click = 'FTP';
  6936. // break;
  6937. // case 'group':
  6938. // click = '群组';
  6939. // break;
  6940. // case 'set':
  6941. // click = '我的设置';
  6942. // break;
  6943. // case 'systemSet':
  6944. // click = '系统设置';
  6945. // break;
  6946. // case 'boomYun':
  6947. // click = '互联办公';
  6948. // break;
  6949. // case 'xz':
  6950. // click = '云端下载';
  6951. // break;
  6952. // case 'client':
  6953. // click = '有思浏览器';
  6954. // break;
  6955. // case 'backEndProgramming':
  6956. // click = '在线后台编程';
  6957. // break;
  6958. // case 'frontEndProgramming':
  6959. // click = '在线前端编程';
  6960. // break;
  6961. // default: break;
  6962. // }
  6963. // if(U.MD.D.I.Ip && click){
  6964. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6965. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6966. // })
  6967. // }
  6968. // }
  6969. /**
  6970. *函数作用:ajax简易函数,使用post格式
  6971. *@param url {data} 后台地址
  6972. *@param data {data} 参数json
  6973. *@param fn {data} 回调函数
  6974. *
  6975. */
  6976. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6977. // var xhr = new XMLHttpRequest();
  6978. // xhr.open("GET",url,true);
  6979. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6980. // xhr.onreadystatechange = function(){
  6981. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6982. // fn.call(this,xhr.responseText);
  6983. // }
  6984. // };
  6985. // xhr.send();
  6986. // }
  6987. /*判断是否是内网IP*/
  6988. // U.MD.D.I.isInnerIPFn = function(str){
  6989. // var curPageUrl = str;
  6990. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6991. // curPageUrl =curPageUrl.replace(reg1,'');
  6992. // // console.log('curPageUrl-1 '+curPageUrl);
  6993. // var reg2 = /\:+/g;//替换冒号为一点
  6994. // curPageUrl =curPageUrl.replace(reg2,'.');
  6995. // // console.log('curPageUrl-2 '+curPageUrl);
  6996. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6997. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6998. // if(curPageUrl[2] != '16'){
  6999. // return ipAddress;
  7000. // }else{
  7001. // return false;
  7002. // }
  7003. // }
  7004. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7005. // //compatibility for firefox and chrome
  7006. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7007. // var pc = new myPeerConnection({
  7008. // iceServers: []
  7009. // }),
  7010. // noop = function() {},
  7011. // localIPs = {},
  7012. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7013. // key;
  7014. // function iterateIP(ip) {
  7015. // if (!localIPs[ip]) onNewIP(ip);
  7016. // localIPs[ip] = true;
  7017. // }
  7018. // //create a bogus data channel
  7019. // pc.createDataChannel("");
  7020. // // create offer and set local description
  7021. // pc.createOffer().then(function(sdp) {
  7022. // sdp.sdp.split('\n').forEach(function(line) {
  7023. // if (line.indexOf('candidate') < 0) return;
  7024. // line.match(ipRegex).forEach(iterateIP);
  7025. // });
  7026. // pc.setLocalDescription(sdp, noop, noop);
  7027. // }).catch(function(reason) {
  7028. // // An error occurred, so handle the failure to connect
  7029. // });
  7030. // //sten for candidate events
  7031. // pc.onicecandidate = function(ice) {
  7032. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7033. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7034. // };
  7035. // }
  7036. // U.MD.D.I.getUserIpBool = function(callback){
  7037. // U.MD.D.I.getUserIP(function(ip){
  7038. // alert("Got IP! :" + ip);
  7039. // });
  7040. //}
  7041. //#endregion
  7042. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7043. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7044. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7045. _userinfo = US.userInfo, //登录用户信息
  7046. _userid = US.userInfo.userid //登录用户id
  7047. let _iframe;
  7048. let _cid = cid,
  7049. _stage = stage,
  7050. _task = task,
  7051. _tool = tool;
  7052. var _jie = $$("div", {
  7053. "style": {
  7054. "position": "absolute",
  7055. "bottom": "50px",
  7056. "right": "50px",
  7057. "zIndex": "9999",
  7058. "backgroundColor": "#2268bc",
  7059. "color": "#fff",
  7060. "padding": "12px 20px",
  7061. "cursor": "pointer",
  7062. "borderRadius": "4px",
  7063. },
  7064. "innerHTML": "提交作业"
  7065. })
  7066. let aTool = ''
  7067. let _loading = document.createElement('div')
  7068. _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;"
  7069. // _loading.id = "";
  7070. let _lchild = document.createElement('div')
  7071. let _limg = document.createElement('img')
  7072. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7073. _limg.style = "width: 26px;margin-right: 10px;"
  7074. _lchild.appendChild(_limg)
  7075. let _lspan = document.createElement('span')
  7076. _lspan.innerHTML = "上传中..."
  7077. _lchild.appendChild(_lspan)
  7078. _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%);"
  7079. _loading.appendChild(_lchild)
  7080. var _box = $$('div', {
  7081. "style": {
  7082. "position": "relative",
  7083. "width": "100%",
  7084. "height": "100%",
  7085. },
  7086. })
  7087. _box.appendChild(_loading)
  7088. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7089. switch (str) {
  7090. case "whiteboard":
  7091. aTool = 1;
  7092. _iframe = $$("iframe", {
  7093. "frameborder": "no",
  7094. "border": "0",
  7095. "scrolling ": "no",
  7096. "style": {
  7097. "cssText": "border:0;width:100%;height:100%"
  7098. },
  7099. "src": "https://beta.iwb.cocorobo.cn/"
  7100. })
  7101. _box.appendChild(_iframe);
  7102. _box.appendChild(_jie);
  7103. _formdiv = new U.UF.UI.form(
  7104. "电子白板",
  7105. _box, {
  7106. "id": "whiteboard" + cid + stage + task + tool,
  7107. "style": {
  7108. "width": "90%",
  7109. "height": "90%",
  7110. "overflow": 'hidden'
  7111. },
  7112. "onresize": function () { }
  7113. }, {
  7114. closecallback: function () { }
  7115. }, {
  7116. "style": {
  7117. "height": "36px"
  7118. }
  7119. }).form; //创建窗体
  7120. _taskbar = {
  7121. "id": str + _formdiv.id,
  7122. "style": {
  7123. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7124. },
  7125. "name": "电子白板",
  7126. "forms": _formdiv,
  7127. "click": function () {
  7128. U.MD.D.I.openApplication(str, obj, info);
  7129. }
  7130. }
  7131. break;
  7132. case "mind":
  7133. aTool = 3;
  7134. _iframe = $$("iframe", {
  7135. "frameborder": "no",
  7136. "border": "0",
  7137. "scrolling ": "no",
  7138. "style": {
  7139. "cssText": "border:0;width:100%;height:100%"
  7140. },
  7141. "src": "/kityminder-editor/dist/index.html"
  7142. })
  7143. _box.appendChild(_iframe);
  7144. _box.appendChild(_jie);
  7145. _formdiv = new U.UF.UI.form(
  7146. "思维导图",
  7147. _box, { //"/jsmind/example/demo.html"
  7148. "id": "mind" + cid + stage + task + tool,
  7149. "style": {
  7150. "width": "90%",
  7151. "height": "90%",
  7152. "overflow": 'hidden'
  7153. },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, {
  7158. "style": {
  7159. "height": "36px"
  7160. }
  7161. }).form; //创建窗体
  7162. _taskbar = {
  7163. "id": str + _formdiv.id,
  7164. "style": {
  7165. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7166. },
  7167. "name": "思维导图",
  7168. "forms": _formdiv,
  7169. "click": function () {
  7170. U.MD.D.I.openApplication(str, obj, info);
  7171. }
  7172. }
  7173. break;
  7174. case "MindMap":
  7175. aTool = 3;
  7176. _iframe = $$("iframe", {
  7177. "frameborder": "no",
  7178. "border": "0",
  7179. "scrolling ": "no",
  7180. "style": {
  7181. "cssText": "border:0;width:100%;height:100%"
  7182. },
  7183. "src": "//cloud.cocorobo.cn/mind/"
  7184. })
  7185. _box.appendChild(_iframe);
  7186. _box.appendChild(_jie);
  7187. _formdiv = new U.UF.UI.form(
  7188. "思维导图",
  7189. _box, { //"/jsmind/example/demo.html"
  7190. "id": "mind" + cid + stage + task + tool,
  7191. "style": {
  7192. "width": "90%",
  7193. "height": "90%",
  7194. "overflow": 'hidden'
  7195. },
  7196. "onresize": function () { }
  7197. }, {
  7198. closecallback: function () { }
  7199. }, {
  7200. "style": {
  7201. "height": "36px"
  7202. }
  7203. }).form; //创建窗体
  7204. _taskbar = {
  7205. "id": str + _formdiv.id,
  7206. "style": {
  7207. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7208. },
  7209. "name": "思维导图",
  7210. "forms": _formdiv,
  7211. "click": function () {
  7212. U.MD.D.I.openApplication(str, obj, info);
  7213. }
  7214. }
  7215. break;
  7216. case "doc":
  7217. aTool = 6;
  7218. _iframe = $$("iframe", {
  7219. "frameborder": "no",
  7220. "border": "0",
  7221. "scrolling ": "no",
  7222. "style": {
  7223. "cssText": "border:0;width:100%;height:100%"
  7224. },
  7225. "src": "/Office/Word/WordEditArea.htm"
  7226. })
  7227. _box.appendChild(_iframe);
  7228. _box.appendChild(_jie);
  7229. _formdiv = new U.UF.UI.form(
  7230. "协同文档",
  7231. _box, {
  7232. "id": "doc" + cid + stage + task + tool,
  7233. "style": {
  7234. "width": "90%",
  7235. "height": "90%",
  7236. "overflow": 'hidden'
  7237. },
  7238. "onresize": function () { }
  7239. }, {
  7240. closecallback: function () { }
  7241. }, {
  7242. "style": {
  7243. "height": "36px"
  7244. }
  7245. }).form; //创建窗体
  7246. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7247. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7248. })
  7249. _taskbar = {
  7250. "id": str + _formdiv.id,
  7251. "style": {
  7252. "backgroundImage": "url(/img/icon/doc.png)"
  7253. },
  7254. "name": "协同文档",
  7255. "forms": _formdiv,
  7256. "click": function () {
  7257. U.MD.D.I.openApplication(str, obj, info);
  7258. }
  7259. }
  7260. break;
  7261. case "mindNetwork": //好友打开
  7262. aTool = 7;
  7263. _iframe = $$("iframe", {
  7264. "webkitallowfullscreen": "",
  7265. "mozallowfullscreen": "",
  7266. "allowfullscreen": "",
  7267. "frameborder": "no",
  7268. "border": "0",
  7269. "scrolling ": "no",
  7270. "style": {
  7271. "cssText": "border:0; width:100%; height:100%;"
  7272. },
  7273. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7274. })
  7275. _box.appendChild(_iframe);
  7276. _box.appendChild(_jie);
  7277. _formdiv = new U.UF.UI.form(
  7278. "思维网格",
  7279. _box, {
  7280. "id": "mindNetwork" + cid + stage + task + tool,
  7281. "style": {
  7282. "width": "90%",
  7283. "height": "90%",
  7284. "overflow": 'hidden'
  7285. },
  7286. "onresize": function () { }
  7287. }, {
  7288. closecallback: function () { }
  7289. }, {
  7290. "style": {
  7291. "height": "36px"
  7292. }
  7293. }).form; //创建窗体
  7294. _taskbar = {
  7295. "id": str + _formdiv.id,
  7296. "style": {
  7297. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7298. },
  7299. "name": "思维网格",
  7300. "forms": _formdiv,
  7301. "click": function () {
  7302. U.MD.D.I.openApplication(str, obj, info);
  7303. }
  7304. }
  7305. break;
  7306. case "courseDesign":
  7307. _iframe = $$("iframe", {
  7308. "webkitallowfullscreen": "",
  7309. "mozallowfullscreen": "",
  7310. "allowfullscreen": "",
  7311. "frameborder": "no",
  7312. "border": "0",
  7313. "scrolling ": "no",
  7314. "style": {
  7315. "cssText": "border:0; width:100%; height:100%;"
  7316. },
  7317. "src": "/course-design-vue"
  7318. })
  7319. _box.appendChild(_iframe);
  7320. _box.appendChild(_jie);
  7321. _formdiv = new U.UF.UI.form(
  7322. "项目设计",
  7323. _box, {
  7324. "id": "courseDesign" + cid + stage + task + tool,
  7325. "style": {
  7326. "width": "90%",
  7327. "height": "90%",
  7328. "overflow": 'hidden'
  7329. },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, {
  7334. "style": {
  7335. "height": "36px"
  7336. }
  7337. }).form; //创建窗体
  7338. _taskbar = {
  7339. "id": str + _formdiv.id,
  7340. "style": {
  7341. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7342. },
  7343. "name": "项目设计",
  7344. "forms": _formdiv,
  7345. "click": function () {
  7346. U.MD.D.I.openApplication(str, obj, info);
  7347. }
  7348. }
  7349. break;
  7350. }
  7351. const script1 = document.createElement("script");
  7352. script1.type = "text/javascript";
  7353. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7354. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7355. const script2 = document.createElement("script");
  7356. script2.type = "text/javascript";
  7357. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7358. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7359. const script3 = document.createElement("script");
  7360. script3.type = "text/javascript";
  7361. script3.charset = "UTF-8";
  7362. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7363. const script4 = document.createElement("script");
  7364. script4.type = "text/javascript";
  7365. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7366. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7367. if (_iframe) {
  7368. if (str == 'doc') {
  7369. _iframe = _formdiv.querySelector('iframe')
  7370. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7371. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7372. _iframe.contentWindow.document.body.appendChild(script1);
  7373. _iframe.contentWindow.document.body.appendChild(script2);
  7374. // _iframe.contentWindow.document.body.appendChild(script3);
  7375. _iframe.contentWindow.document.body.appendChild(script4);
  7376. })
  7377. if (onloadListener) {
  7378. _iframe.contentDocument.location.reload()
  7379. } else {
  7380. _iframe.contentDocument.location.reload()
  7381. }
  7382. } else if (str == 'courseDesign') {
  7383. U.UF.DL.iframeLoad(_iframe, function () {
  7384. // _iframe.contentWindow.U.MD.O.W.load();
  7385. // _iframe.contentWindow.document.body.appendChild(script1);
  7386. _iframe.contentWindow.document.body.appendChild(script2);
  7387. _iframe.contentWindow.document.body.appendChild(script4);
  7388. })
  7389. } else if (str == 'mind') {
  7390. _iframe = _formdiv.querySelector('iframe')
  7391. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7392. //
  7393. _iframe.contentWindow.document.body.appendChild(script1);
  7394. _iframe.contentWindow.document.body.appendChild(script2);
  7395. _iframe.contentWindow.document.body.appendChild(script4);
  7396. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7397. })
  7398. if (onloadListener) {
  7399. _iframe.contentDocument.location.reload()
  7400. } else {
  7401. _iframe.contentDocument.location.reload()
  7402. }
  7403. } else if (str == 'whiteboard') {
  7404. _iframe = _formdiv.querySelector('iframe')
  7405. let onloadListener = _iframe.onload = () => {
  7406. _iframe.contentWindow.document.body.appendChild(script1);
  7407. _iframe.contentWindow.document.body.appendChild(script2);
  7408. _iframe.contentWindow.document.body.appendChild(script4);
  7409. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7410. };
  7411. // if (onloadListener) {
  7412. // try {
  7413. // _iframe.src += "?cocorobo="+new Date().getTime()
  7414. // _iframe.contentWindow.document.location.reload()
  7415. // } catch (error) {
  7416. // }
  7417. // } else {
  7418. // _iframe.contentDocument.location.reload()
  7419. // }
  7420. } else {
  7421. _iframe.onload = () => {
  7422. _iframe.contentWindow.document.body.appendChild(script1);
  7423. _iframe.contentWindow.document.body.appendChild(script2);
  7424. // _iframe.contentWindow.document.body.appendChild(script3);
  7425. _iframe.contentWindow.document.body.appendChild(script4);
  7426. };
  7427. }
  7428. _jie.onclick = async () => {
  7429. let text = ''
  7430. if (aTool == 1) {
  7431. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7432. } else if (aTool == 6) {
  7433. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7434. } else if (aTool == 3) {
  7435. text = await U.MD.D.I.getEditorContent(_iframe);
  7436. }
  7437. _loading.style.display = 'flex'
  7438. console.log(_loading);
  7439. var _ajs = _iframe.contentWindow.document.createElement("script");
  7440. _ajs.type = "text/javascript";
  7441. _ajs.innerHTML =
  7442. // 'console.log(' + _loading + ');\n' +
  7443. 'var _js = document.createElement("script");\n' +
  7444. '_js.type="text/javascript";\n' +
  7445. '_js.charset="UTF-8";\n' +
  7446. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7447. "_js.onload = function(){\n" +
  7448. ' var a = document.getElementsByTagName("img")\n' +
  7449. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7450. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7451. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7452. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7453. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7454. "beforeUpload_shishi(file," +
  7455. "'" +
  7456. _userid +
  7457. "'" +
  7458. ", " +
  7459. "'" +
  7460. _cid +
  7461. "'" +
  7462. ", " +
  7463. "'" +
  7464. _stage +
  7465. "'" +
  7466. ", " +
  7467. "'" +
  7468. _task +
  7469. "'" +
  7470. ", " +
  7471. "'" +
  7472. _tool +
  7473. "'" +
  7474. ", " +
  7475. "'" +
  7476. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7477. "'" +
  7478. ", " +
  7479. "'" +
  7480. aTool +
  7481. "'" +
  7482. ", " +
  7483. "`" +
  7484. text +
  7485. "`" +
  7486. ")\n" +
  7487. " });\n" +
  7488. "}\n" +
  7489. "document.head.appendChild(_js);\n";
  7490. _iframe.contentWindow.document.head.appendChild(_ajs);
  7491. }
  7492. }
  7493. //U.MD.D.I.openClick(str);
  7494. //如果有任务栏信息
  7495. // if (_taskbar) {
  7496. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7497. // }
  7498. }
  7499. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7500. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7501. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7502. _userinfo = US.userInfo, //登录用户信息
  7503. _userid = US.userInfo.userid //登录用户id
  7504. let _iframe;
  7505. let _cid = cid,
  7506. _stage = stage,
  7507. _task = task,
  7508. _tool = tool;
  7509. var _jie = $$("div", {
  7510. "style": {
  7511. "position": "absolute",
  7512. "bottom": "50px",
  7513. "right": "50px",
  7514. "zIndex": "9999",
  7515. "backgroundColor": "#2268bc",
  7516. "color": "#fff",
  7517. "padding": "12px 20px",
  7518. "cursor": "pointer",
  7519. "borderRadius": "4px",
  7520. },
  7521. "innerHTML": "提交作业"
  7522. })
  7523. let aTool = ''
  7524. let _loading = document.createElement('div')
  7525. _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;"
  7526. // _loading.id = "";
  7527. let _lchild = document.createElement('div')
  7528. let _limg = document.createElement('img')
  7529. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7530. _limg.style = "width: 26px;margin-right: 10px;"
  7531. _lchild.appendChild(_limg)
  7532. let _lspan = document.createElement('span')
  7533. _lspan.innerHTML = "上传中..."
  7534. _lchild.appendChild(_lspan)
  7535. _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%);"
  7536. _loading.appendChild(_lchild)
  7537. let _box = $$('div', {
  7538. "style": {
  7539. "position": "relative",
  7540. "width": "100%",
  7541. "height": "100%",
  7542. },
  7543. })
  7544. _box.appendChild(_loading)
  7545. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7546. switch (str) {
  7547. case "whiteboard":
  7548. aTool = 1;
  7549. _iframe = $$("iframe", {
  7550. "frameborder": "no",
  7551. "border": "0",
  7552. "scrolling ": "no",
  7553. "style": {
  7554. "cssText": "border:0;width:100%;height:100%"
  7555. },
  7556. "src": "https://beta.iwb.cocorobo.cn/"
  7557. })
  7558. _box.appendChild(_iframe);
  7559. _box.appendChild(_jie);
  7560. _formdiv = new U.UF.UI.form(
  7561. "电子白板",
  7562. _box, {
  7563. "id": "whiteboard" + cid + stage + task + tool,
  7564. "style": {
  7565. "width": "90%",
  7566. "height": "90%",
  7567. "overflow": 'hidden'
  7568. },
  7569. "onresize": function () { }
  7570. }, {
  7571. closecallback: function () { }
  7572. }, {
  7573. "style": {
  7574. "height": "36px"
  7575. }
  7576. }).form; //创建窗体
  7577. _taskbar = {
  7578. "id": str + _formdiv.id,
  7579. "style": {
  7580. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7581. },
  7582. "name": "电子白板",
  7583. "forms": _formdiv,
  7584. "click": function () {
  7585. U.MD.D.I.openApplication(str, obj, info);
  7586. }
  7587. }
  7588. break;
  7589. case "mind":
  7590. aTool = 3;
  7591. _iframe = $$("iframe", {
  7592. "frameborder": "no",
  7593. "border": "0",
  7594. "scrolling ": "no",
  7595. "style": {
  7596. "cssText": "border:0;width:100%;height:100%"
  7597. },
  7598. "src": "/kityminder-editor/dist/index.html"
  7599. })
  7600. _box.appendChild(_iframe);
  7601. _box.appendChild(_jie);
  7602. _formdiv = new U.UF.UI.form(
  7603. "思维导图",
  7604. _box, { //"/jsmind/example/demo.html"
  7605. "id": "mind" + cid + stage + task + tool,
  7606. "style": {
  7607. "width": "90%",
  7608. "height": "90%",
  7609. "overflow": 'hidden'
  7610. },
  7611. "onresize": function () { }
  7612. }, {
  7613. closecallback: function () { }
  7614. }, {
  7615. "style": {
  7616. "height": "36px"
  7617. }
  7618. }).form; //创建窗体
  7619. _taskbar = {
  7620. "id": str + _formdiv.id,
  7621. "style": {
  7622. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7623. },
  7624. "name": "思维导图",
  7625. "forms": _formdiv,
  7626. "click": function () {
  7627. U.MD.D.I.openApplication(str, obj, info);
  7628. }
  7629. }
  7630. break;
  7631. case "MindMap":
  7632. aTool = 3;
  7633. _iframe = $$("iframe", {
  7634. "frameborder": "no",
  7635. "border": "0",
  7636. "scrolling ": "no",
  7637. "style": {
  7638. "cssText": "border:0;width:100%;height:100%"
  7639. },
  7640. "src": "//cloud.cocorobo.cn/mind/"
  7641. })
  7642. _box.appendChild(_iframe);
  7643. _box.appendChild(_jie);
  7644. _formdiv = new U.UF.UI.form(
  7645. "思维导图",
  7646. _box, { //"/jsmind/example/demo.html"
  7647. "id": "mind" + cid + stage + task + tool,
  7648. "style": {
  7649. "width": "90%",
  7650. "height": "90%",
  7651. "overflow": 'hidden'
  7652. },
  7653. "onresize": function () { }
  7654. }, {
  7655. closecallback: function () { }
  7656. }, {
  7657. "style": {
  7658. "height": "36px"
  7659. }
  7660. }).form; //创建窗体
  7661. _taskbar = {
  7662. "id": str + _formdiv.id,
  7663. "style": {
  7664. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7665. },
  7666. "name": "思维导图",
  7667. "forms": _formdiv,
  7668. "click": function () {
  7669. U.MD.D.I.openApplication(str, obj, info);
  7670. }
  7671. }
  7672. break;
  7673. case "doc":
  7674. aTool = 6;
  7675. _iframe = $$("iframe", {
  7676. "frameborder": "no",
  7677. "border": "0",
  7678. "scrolling ": "no",
  7679. "style": {
  7680. "cssText": "border:0;width:100%;height:100%"
  7681. },
  7682. "src": "/Office/Word/WordEditArea.htm"
  7683. })
  7684. _box.appendChild(_iframe);
  7685. _box.appendChild(_jie);
  7686. _formdiv = new U.UF.UI.form(
  7687. "协同文档",
  7688. _box, {
  7689. "id": "doc" + cid + stage + task + tool,
  7690. "style": {
  7691. "width": "90%",
  7692. "height": "90%",
  7693. "overflow": 'hidden'
  7694. },
  7695. "onresize": function () { }
  7696. }, {
  7697. closecallback: function () { }
  7698. }, {
  7699. "style": {
  7700. "height": "36px"
  7701. }
  7702. }).form; //创建窗体
  7703. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7704. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7705. })
  7706. _taskbar = {
  7707. "id": str + _formdiv.id,
  7708. "style": {
  7709. "backgroundImage": "url(/img/icon/doc.png)"
  7710. },
  7711. "name": "协同文档",
  7712. "forms": _formdiv,
  7713. "click": function () {
  7714. U.MD.D.I.openApplication(str, obj, info);
  7715. }
  7716. }
  7717. break;
  7718. case "mindNetwork": //好友打开
  7719. aTool = 7;
  7720. _iframe = $$("iframe", {
  7721. "webkitallowfullscreen": "",
  7722. "mozallowfullscreen": "",
  7723. "allowfullscreen": "",
  7724. "frameborder": "no",
  7725. "border": "0",
  7726. "scrolling ": "no",
  7727. "style": {
  7728. "cssText": "border:0; width:100%; height:100%;"
  7729. },
  7730. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7731. })
  7732. _box.appendChild(_iframe);
  7733. _box.appendChild(_jie);
  7734. _formdiv = new U.UF.UI.form(
  7735. "思维网格",
  7736. _box, {
  7737. "id": "mindNetwork" + cid + stage + task + tool,
  7738. "style": {
  7739. "width": "90%",
  7740. "height": "90%",
  7741. "overflow": 'hidden'
  7742. },
  7743. "onresize": function () { }
  7744. }, {
  7745. closecallback: function () { }
  7746. }, {
  7747. "style": {
  7748. "height": "36px"
  7749. }
  7750. }).form; //创建窗体
  7751. _taskbar = {
  7752. "id": str + _formdiv.id,
  7753. "style": {
  7754. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7755. },
  7756. "name": "思维网格",
  7757. "forms": _formdiv,
  7758. "click": function () {
  7759. U.MD.D.I.openApplication(str, obj, info);
  7760. }
  7761. }
  7762. break;
  7763. case "courseDesign":
  7764. _iframe = $$("iframe", {
  7765. "webkitallowfullscreen": "",
  7766. "mozallowfullscreen": "",
  7767. "allowfullscreen": "",
  7768. "frameborder": "no",
  7769. "border": "0",
  7770. "scrolling ": "no",
  7771. "style": {
  7772. "cssText": "border:0; width:100%; height:100%;"
  7773. },
  7774. "src": "/course-design-vue"
  7775. })
  7776. _box.appendChild(_iframe);
  7777. _box.appendChild(_jie);
  7778. _formdiv = new U.UF.UI.form(
  7779. "项目设计",
  7780. _box, {
  7781. "id": "courseDesign" + cid + stage + task + tool,
  7782. "style": {
  7783. "width": "90%",
  7784. "height": "90%",
  7785. "overflow": 'hidden'
  7786. },
  7787. "onresize": function () { }
  7788. }, {
  7789. closecallback: function () { }
  7790. }, {
  7791. "style": {
  7792. "height": "36px"
  7793. }
  7794. }).form; //创建窗体
  7795. _taskbar = {
  7796. "id": str + _formdiv.id,
  7797. "style": {
  7798. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7799. },
  7800. "name": "项目设计",
  7801. "forms": _formdiv,
  7802. "click": function () {
  7803. U.MD.D.I.openApplication(str, obj, info);
  7804. }
  7805. }
  7806. break;
  7807. }
  7808. const script1 = document.createElement("script");
  7809. script1.type = "text/javascript";
  7810. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7811. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7812. const script2 = document.createElement("script");
  7813. script2.type = "text/javascript";
  7814. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7815. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7816. const script3 = document.createElement("script");
  7817. script3.type = "text/javascript";
  7818. script3.charset = "UTF-8";
  7819. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7820. const script4 = document.createElement("script");
  7821. script4.type = "text/javascript";
  7822. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7823. script4.src = window.origin + "/js/Common/jietu2E.js";
  7824. if (_iframe) {
  7825. if (str == 'doc') {
  7826. _iframe = _formdiv.querySelector('iframe')
  7827. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7828. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7829. _iframe.contentWindow.document.body.appendChild(script1);
  7830. _iframe.contentWindow.document.body.appendChild(script2);
  7831. // _iframe.contentWindow.document.body.appendChild(script3);
  7832. _iframe.contentWindow.document.body.appendChild(script4);
  7833. })
  7834. if (onloadListener) {
  7835. _iframe.contentDocument.location.reload()
  7836. } else {
  7837. _iframe.contentDocument.location.reload()
  7838. }
  7839. } else if (str == 'courseDesign') {
  7840. U.UF.DL.iframeLoad(_iframe, function () {
  7841. // _iframe.contentWindow.U.MD.O.W.load();
  7842. // _iframe.contentWindow.document.body.appendChild(script1);
  7843. _iframe.contentWindow.document.body.appendChild(script2);
  7844. _iframe.contentWindow.document.body.appendChild(script4);
  7845. })
  7846. } else if (str == 'mind') {
  7847. _iframe = _formdiv.querySelector('iframe')
  7848. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7849. //
  7850. _iframe.contentWindow.document.body.appendChild(script1);
  7851. _iframe.contentWindow.document.body.appendChild(script2);
  7852. _iframe.contentWindow.document.body.appendChild(script4);
  7853. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7854. })
  7855. if (onloadListener) {
  7856. _iframe.contentDocument.location.reload()
  7857. } else {
  7858. _iframe.contentDocument.location.reload()
  7859. }
  7860. } else if (str == 'whiteboard') {
  7861. _iframe = _formdiv.querySelector('iframe')
  7862. let onloadListener = _iframe.onload = () => {
  7863. _iframe.contentWindow.document.body.appendChild(script1);
  7864. _iframe.contentWindow.document.body.appendChild(script2);
  7865. _iframe.contentWindow.document.body.appendChild(script4);
  7866. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7867. };
  7868. // if (onloadListener) {
  7869. // try {
  7870. // _iframe.src += "?cocorobo="+new Date().getTime()
  7871. // _iframe.contentWindow.document.location.reload()
  7872. // } catch (error) {
  7873. // }
  7874. // } else {
  7875. // _iframe.contentDocument.location.reload()
  7876. // }
  7877. } else {
  7878. _iframe.onload = () => {
  7879. _iframe.contentWindow.document.body.appendChild(script1);
  7880. _iframe.contentWindow.document.body.appendChild(script2);
  7881. // _iframe.contentWindow.document.body.appendChild(script3);
  7882. _iframe.contentWindow.document.body.appendChild(script4);
  7883. };
  7884. }
  7885. _jie.onclick = async () => {
  7886. let text = ''
  7887. if (aTool == 1) {
  7888. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7889. } else if (aTool == 6) {
  7890. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7891. } else if (aTool == 3) {
  7892. text = await U.MD.D.I.getEditorContent(_iframe);
  7893. }
  7894. _loading.style.display = 'flex'
  7895. console.log(_loading);
  7896. var _ajs = _iframe.contentWindow.document.createElement("script");
  7897. _ajs.type = "text/javascript";
  7898. _ajs.innerHTML =
  7899. // 'console.log(' + _loading + ');\n' +
  7900. 'var _js = document.createElement("script");\n' +
  7901. '_js.type="text/javascript";\n' +
  7902. '_js.charset="UTF-8";\n' +
  7903. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7904. "_js.onload = function(){\n" +
  7905. ' var a = document.getElementsByTagName("img")\n' +
  7906. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7907. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7908. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7909. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7910. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7911. "beforeUpload_shishi(file," +
  7912. "'" +
  7913. _userid +
  7914. "'" +
  7915. ", " +
  7916. "'" +
  7917. _cid +
  7918. "'" +
  7919. ", " +
  7920. "'" +
  7921. _stage +
  7922. "'" +
  7923. ", " +
  7924. "'" +
  7925. _task +
  7926. "'" +
  7927. ", " +
  7928. "'" +
  7929. _tool +
  7930. "'" +
  7931. ", " +
  7932. "'" +
  7933. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7934. "'" +
  7935. ", " +
  7936. "'" +
  7937. aTool +
  7938. "'" +
  7939. ", " +
  7940. "`" +
  7941. text +
  7942. "`" +
  7943. ")\n" +
  7944. " });\n" +
  7945. "}\n" +
  7946. "document.head.appendChild(_js);\n";
  7947. _iframe.contentWindow.document.head.appendChild(_ajs);
  7948. }
  7949. }
  7950. //U.MD.D.I.openClick(str);
  7951. //如果有任务栏信息
  7952. // if (_taskbar) {
  7953. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7954. // }
  7955. }
  7956. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7957. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7958. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7959. _userid = student.userid, //登录用户id
  7960. _username = student.student //用户名字
  7961. let _iframe;
  7962. let _cid = cid,
  7963. _stage = stage,
  7964. _task = task,
  7965. _tool = tool;
  7966. var _jie = $$("div", {
  7967. "style": {
  7968. "position": "absolute",
  7969. "bottom": "50px",
  7970. "right": "50px",
  7971. "zIndex": "9999",
  7972. "backgroundColor": "#2268bc",
  7973. "color": "#fff",
  7974. "padding": "12px 20px",
  7975. "cursor": "pointer",
  7976. "borderRadius": "4px",
  7977. },
  7978. "innerHTML": "提交作业"
  7979. })
  7980. let aTool = ''
  7981. let _loading = document.createElement('div')
  7982. _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;"
  7983. // _loading.id = "";
  7984. let _lchild = document.createElement('div')
  7985. let _limg = document.createElement('img')
  7986. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7987. _limg.style = "width: 26px;margin-right: 10px;"
  7988. _lchild.appendChild(_limg)
  7989. let _lspan = document.createElement('span')
  7990. _lspan.innerHTML = "上传中..."
  7991. _lchild.appendChild(_lspan)
  7992. _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%);"
  7993. _loading.appendChild(_lchild)
  7994. var _box = $$('div', {
  7995. "style": {
  7996. "position": "relative",
  7997. "width": "100%",
  7998. "height": "100%",
  7999. },
  8000. })
  8001. _box.appendChild(_loading)
  8002. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8003. switch (str) {
  8004. case "whiteboard":
  8005. aTool = 1;
  8006. _iframe = $$("iframe", {
  8007. "frameborder": "no",
  8008. "border": "0",
  8009. "scrolling ": "no",
  8010. "style": {
  8011. "cssText": "border:0;width:100%;height:100%"
  8012. },
  8013. "src": "https://beta.iwb.cocorobo.cn/"
  8014. })
  8015. _box.appendChild(_iframe);
  8016. _box.appendChild(_jie);
  8017. _formdiv = new U.UF.UI.form(
  8018. "电子白板-" + _username,
  8019. _box, {
  8020. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8021. "style": {
  8022. "width": "90%",
  8023. "height": "90%",
  8024. "overflow": 'hidden'
  8025. },
  8026. "onresize": function () { }
  8027. }, {
  8028. closecallback: function () { }
  8029. }, {
  8030. "style": {
  8031. "height": "36px"
  8032. }
  8033. }).form; //创建窗体
  8034. _taskbar = {
  8035. "id": str + _formdiv.id,
  8036. "style": {
  8037. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8038. },
  8039. "name": "电子白板",
  8040. "forms": _formdiv,
  8041. "click": function () {
  8042. U.MD.D.I.openApplication(str, obj, info);
  8043. }
  8044. }
  8045. break;
  8046. case "mind":
  8047. aTool = 3;
  8048. _iframe = $$("iframe", {
  8049. "frameborder": "no",
  8050. "border": "0",
  8051. "scrolling ": "no",
  8052. "style": {
  8053. "cssText": "border:0;width:100%;height:100%"
  8054. },
  8055. "src": "/kityminder-editor/dist/index.html"
  8056. })
  8057. _box.appendChild(_iframe);
  8058. _box.appendChild(_jie);
  8059. _formdiv = new U.UF.UI.form(
  8060. "思维导图-" + _username,
  8061. _box, { //"/jsmind/example/demo.html"
  8062. "id": "mind" + cid + stage + task + tool + _userid,
  8063. "style": {
  8064. "width": "90%",
  8065. "height": "90%",
  8066. "overflow": 'hidden'
  8067. },
  8068. "onresize": function () { }
  8069. }, {
  8070. closecallback: function () { }
  8071. }, {
  8072. "style": {
  8073. "height": "36px"
  8074. }
  8075. }).form; //创建窗体
  8076. _taskbar = {
  8077. "id": str + _formdiv.id,
  8078. "style": {
  8079. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8080. },
  8081. "name": "思维导图",
  8082. "forms": _formdiv,
  8083. "click": function () {
  8084. U.MD.D.I.openApplication(str, obj, info);
  8085. }
  8086. }
  8087. break;
  8088. case "MindMap":
  8089. aTool = 3;
  8090. _iframe = $$("iframe", {
  8091. "frameborder": "no",
  8092. "border": "0",
  8093. "scrolling ": "no",
  8094. "style": {
  8095. "cssText": "border:0;width:100%;height:100%"
  8096. },
  8097. "src": "//cloud.cocorobo.cn/mind/"
  8098. })
  8099. _box.appendChild(_iframe);
  8100. _box.appendChild(_jie);
  8101. _formdiv = new U.UF.UI.form(
  8102. "思维导图-" + _username,
  8103. _box, { //"/jsmind/example/demo.html"
  8104. "id": "mind" + cid + stage + task + tool + _userid,
  8105. "style": {
  8106. "width": "90%",
  8107. "height": "90%",
  8108. "overflow": 'hidden'
  8109. },
  8110. "onresize": function () { }
  8111. }, {
  8112. closecallback: function () { }
  8113. }, {
  8114. "style": {
  8115. "height": "36px"
  8116. }
  8117. }).form; //创建窗体
  8118. _taskbar = {
  8119. "id": str + _formdiv.id,
  8120. "style": {
  8121. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8122. },
  8123. "name": "思维导图",
  8124. "forms": _formdiv,
  8125. "click": function () {
  8126. U.MD.D.I.openApplication(str, obj, info);
  8127. }
  8128. }
  8129. break;
  8130. case "doc":
  8131. aTool = 6;
  8132. _iframe = $$("iframe", {
  8133. "frameborder": "no",
  8134. "border": "0",
  8135. "scrolling ": "no",
  8136. "style": {
  8137. "cssText": "border:0;width:100%;height:100%"
  8138. },
  8139. "src": "/Office/Word/WordEditArea.htm"
  8140. })
  8141. _box.appendChild(_iframe);
  8142. _box.appendChild(_jie);
  8143. _formdiv = new U.UF.UI.form(
  8144. "协同文档-" + _username,
  8145. _box, {
  8146. "id": "doc" + cid + stage + task + tool + _userid,
  8147. "style": {
  8148. "width": "90%",
  8149. "height": "90%",
  8150. "overflow": 'hidden'
  8151. },
  8152. "onresize": function () { }
  8153. }, {
  8154. closecallback: function () { }
  8155. }, {
  8156. "style": {
  8157. "height": "36px"
  8158. }
  8159. }).form; //创建窗体
  8160. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8161. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8162. })
  8163. _taskbar = {
  8164. "id": str + _formdiv.id,
  8165. "style": {
  8166. "backgroundImage": "url(/img/icon/doc.png)"
  8167. },
  8168. "name": "协同文档",
  8169. "forms": _formdiv,
  8170. "click": function () {
  8171. U.MD.D.I.openApplication(str, obj, info);
  8172. }
  8173. }
  8174. break;
  8175. case "mindNetwork": //好友打开
  8176. aTool = 7;
  8177. _iframe = $$("iframe", {
  8178. "webkitallowfullscreen": "",
  8179. "mozallowfullscreen": "",
  8180. "allowfullscreen": "",
  8181. "frameborder": "no",
  8182. "border": "0",
  8183. "scrolling ": "no",
  8184. "style": {
  8185. "cssText": "border:0; width:100%; height:100%;"
  8186. },
  8187. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8188. })
  8189. _box.appendChild(_iframe);
  8190. _box.appendChild(_jie);
  8191. _formdiv = new U.UF.UI.form(
  8192. "思维网格-" + _username,
  8193. _box, {
  8194. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8195. "style": {
  8196. "width": "90%",
  8197. "height": "90%",
  8198. "overflow": 'hidden'
  8199. },
  8200. "onresize": function () { }
  8201. }, {
  8202. closecallback: function () { }
  8203. }, {
  8204. "style": {
  8205. "height": "36px"
  8206. }
  8207. }).form; //创建窗体
  8208. _taskbar = {
  8209. "id": str + _formdiv.id,
  8210. "style": {
  8211. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8212. },
  8213. "name": "思维网格",
  8214. "forms": _formdiv,
  8215. "click": function () {
  8216. U.MD.D.I.openApplication(str, obj, info);
  8217. }
  8218. }
  8219. break;
  8220. case "courseDesign":
  8221. _iframe = $$("iframe", {
  8222. "webkitallowfullscreen": "",
  8223. "mozallowfullscreen": "",
  8224. "allowfullscreen": "",
  8225. "frameborder": "no",
  8226. "border": "0",
  8227. "scrolling ": "no",
  8228. "style": {
  8229. "cssText": "border:0; width:100%; height:100%;"
  8230. },
  8231. "src": "/course-design-vue"
  8232. })
  8233. _box.appendChild(_iframe);
  8234. _box.appendChild(_jie);
  8235. _formdiv = new U.UF.UI.form(
  8236. "项目设计-" + _username,
  8237. _box, {
  8238. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8239. "style": {
  8240. "width": "90%",
  8241. "height": "90%",
  8242. "overflow": 'hidden'
  8243. },
  8244. "onresize": function () { }
  8245. }, {
  8246. closecallback: function () { }
  8247. }, {
  8248. "style": {
  8249. "height": "36px"
  8250. }
  8251. }).form; //创建窗体
  8252. _taskbar = {
  8253. "id": str + _formdiv.id,
  8254. "style": {
  8255. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8256. },
  8257. "name": "项目设计",
  8258. "forms": _formdiv,
  8259. "click": function () {
  8260. U.MD.D.I.openApplication(str, obj, info);
  8261. }
  8262. }
  8263. break;
  8264. }
  8265. const script1 = document.createElement("script");
  8266. script1.type = "text/javascript";
  8267. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8268. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8269. const script2 = document.createElement("script");
  8270. script2.type = "text/javascript";
  8271. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8272. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8273. const script3 = document.createElement("script");
  8274. script3.type = "text/javascript";
  8275. script3.charset = "UTF-8";
  8276. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8277. const script4 = document.createElement("script");
  8278. script4.type = "text/javascript";
  8279. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8280. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8281. if (_iframe) {
  8282. if (str == 'doc') {
  8283. _iframe = _formdiv.querySelector('iframe')
  8284. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8285. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8286. _iframe.contentWindow.document.body.appendChild(script1);
  8287. _iframe.contentWindow.document.body.appendChild(script2);
  8288. // _iframe.contentWindow.document.body.appendChild(script3);
  8289. _iframe.contentWindow.document.body.appendChild(script4);
  8290. })
  8291. if (onloadListener) {
  8292. _iframe.contentDocument.location.reload()
  8293. } else {
  8294. _iframe.contentDocument.location.reload()
  8295. }
  8296. } else if (str == 'courseDesign') {
  8297. U.UF.DL.iframeLoad(_iframe, function () {
  8298. // _iframe.contentWindow.U.MD.O.W.load();
  8299. // _iframe.contentWindow.document.body.appendChild(script1);
  8300. _iframe.contentWindow.document.body.appendChild(script2);
  8301. _iframe.contentWindow.document.body.appendChild(script4);
  8302. })
  8303. } else if (str == 'mind') {
  8304. _iframe = _formdiv.querySelector('iframe')
  8305. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8306. //
  8307. _iframe.contentWindow.document.body.appendChild(script1);
  8308. _iframe.contentWindow.document.body.appendChild(script2);
  8309. _iframe.contentWindow.document.body.appendChild(script4);
  8310. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8311. })
  8312. if (onloadListener) {
  8313. _iframe.contentDocument.location.reload()
  8314. } else {
  8315. _iframe.contentDocument.location.reload()
  8316. }
  8317. } else if (str == 'whiteboard') {
  8318. _iframe = _formdiv.querySelector('iframe')
  8319. let onloadListener = _iframe.onload = () => {
  8320. _iframe.contentWindow.document.body.appendChild(script1);
  8321. _iframe.contentWindow.document.body.appendChild(script2);
  8322. _iframe.contentWindow.document.body.appendChild(script4);
  8323. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8324. };
  8325. // if (onloadListener) {
  8326. // try {
  8327. // _iframe.src += "?cocorobo="+new Date().getTime()
  8328. // _iframe.contentWindow.document.location.reload()
  8329. // } catch (error) {
  8330. // }
  8331. // } else {
  8332. // _iframe.contentDocument.location.reload()
  8333. // }
  8334. } else {
  8335. _iframe.onload = () => {
  8336. _iframe.contentWindow.document.body.appendChild(script1);
  8337. _iframe.contentWindow.document.body.appendChild(script2);
  8338. // _iframe.contentWindow.document.body.appendChild(script3);
  8339. _iframe.contentWindow.document.body.appendChild(script4);
  8340. };
  8341. }
  8342. _jie.onclick = async () => {
  8343. let text = ''
  8344. if (aTool == 1) {
  8345. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8346. } else if (aTool == 6) {
  8347. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8348. } else if (aTool == 3) {
  8349. text = await U.MD.D.I.getEditorContent(_iframe);
  8350. }
  8351. _loading.style.display = 'flex'
  8352. console.log(_loading);
  8353. var _ajs = _iframe.contentWindow.document.createElement("script");
  8354. _ajs.type = "text/javascript";
  8355. _ajs.innerHTML =
  8356. // 'console.log(' + _loading + ');\n' +
  8357. 'var _js = document.createElement("script");\n' +
  8358. '_js.type="text/javascript";\n' +
  8359. '_js.charset="UTF-8";\n' +
  8360. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8361. "_js.onload = function(){\n" +
  8362. ' var a = document.getElementsByTagName("img")\n' +
  8363. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8364. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8365. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8366. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8367. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8368. "beforeUpload_shishi(file," +
  8369. "'" +
  8370. _userid +
  8371. "'" +
  8372. ", " +
  8373. "'" +
  8374. _cid +
  8375. "'" +
  8376. ", " +
  8377. "'" +
  8378. _stage +
  8379. "'" +
  8380. ", " +
  8381. "'" +
  8382. _task +
  8383. "'" +
  8384. ", " +
  8385. "'" +
  8386. _tool +
  8387. "'" +
  8388. ", " +
  8389. "'" +
  8390. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8391. "'" +
  8392. ", " +
  8393. "'" +
  8394. aTool +
  8395. "'" +
  8396. ", " +
  8397. "`" +
  8398. text +
  8399. "`" +
  8400. ")\n" +
  8401. " });\n" +
  8402. "}\n" +
  8403. "document.head.appendChild(_js);\n";
  8404. _iframe.contentWindow.document.head.appendChild(_ajs);
  8405. }
  8406. }
  8407. }
  8408. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8409. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8410. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8411. _userid = student.userid, //登录用户id
  8412. _username = student.student //用户名字
  8413. let _iframe;
  8414. let _cid = cid,
  8415. _stage = stage,
  8416. _task = task,
  8417. _tool = tool;
  8418. var _jie = $$("div", {
  8419. "style": {
  8420. "position": "absolute",
  8421. "bottom": "50px",
  8422. "right": "50px",
  8423. "zIndex": "9999",
  8424. "backgroundColor": "#2268bc",
  8425. "color": "#fff",
  8426. "padding": "12px 20px",
  8427. "cursor": "pointer",
  8428. "borderRadius": "4px",
  8429. },
  8430. "innerHTML": "提交作业"
  8431. })
  8432. let aTool = ''
  8433. let _loading = document.createElement('div')
  8434. _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;"
  8435. // _loading.id = "";
  8436. let _lchild = document.createElement('div')
  8437. let _limg = document.createElement('img')
  8438. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8439. _limg.style = "width: 26px;margin-right: 10px;"
  8440. _lchild.appendChild(_limg)
  8441. let _lspan = document.createElement('span')
  8442. _lspan.innerHTML = "上传中..."
  8443. _lchild.appendChild(_lspan)
  8444. _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%);"
  8445. _loading.appendChild(_lchild)
  8446. var _box = $$('div', {
  8447. "style": {
  8448. "position": "relative",
  8449. "width": "100%",
  8450. "height": "100%",
  8451. },
  8452. })
  8453. _box.appendChild(_loading)
  8454. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8455. switch (str) {
  8456. case "whiteboard":
  8457. aTool = 1;
  8458. _iframe = $$("iframe", {
  8459. "frameborder": "no",
  8460. "border": "0",
  8461. "scrolling ": "no",
  8462. "style": {
  8463. "cssText": "border:0;width:100%;height:100%"
  8464. },
  8465. "src": "https://beta.iwb.cocorobo.cn/"
  8466. })
  8467. _box.appendChild(_iframe);
  8468. _box.appendChild(_jie);
  8469. _formdiv = new U.UF.UI.form(
  8470. "电子白板-" + _username,
  8471. _box, {
  8472. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8473. "style": {
  8474. "width": "90%",
  8475. "height": "90%",
  8476. "overflow": 'hidden'
  8477. },
  8478. "onresize": function () { }
  8479. }, {
  8480. closecallback: function () { }
  8481. }, {
  8482. "style": {
  8483. "height": "36px"
  8484. }
  8485. }).form; //创建窗体
  8486. _taskbar = {
  8487. "id": str + _formdiv.id,
  8488. "style": {
  8489. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8490. },
  8491. "name": "电子白板",
  8492. "forms": _formdiv,
  8493. "click": function () {
  8494. U.MD.D.I.openApplication(str, obj, info);
  8495. }
  8496. }
  8497. break;
  8498. case "mind":
  8499. aTool = 3;
  8500. _iframe = $$("iframe", {
  8501. "frameborder": "no",
  8502. "border": "0",
  8503. "scrolling ": "no",
  8504. "style": {
  8505. "cssText": "border:0;width:100%;height:100%"
  8506. },
  8507. "src": "/kityminder-editor/dist/index.html"
  8508. })
  8509. _box.appendChild(_iframe);
  8510. _box.appendChild(_jie);
  8511. _formdiv = new U.UF.UI.form(
  8512. "思维导图-" + _username,
  8513. _box, { //"/jsmind/example/demo.html"
  8514. "id": "mind" + cid + stage + task + tool + _userid,
  8515. "style": {
  8516. "width": "90%",
  8517. "height": "90%",
  8518. "overflow": 'hidden'
  8519. },
  8520. "onresize": function () { }
  8521. }, {
  8522. closecallback: function () { }
  8523. }, {
  8524. "style": {
  8525. "height": "36px"
  8526. }
  8527. }).form; //创建窗体
  8528. _taskbar = {
  8529. "id": str + _formdiv.id,
  8530. "style": {
  8531. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8532. },
  8533. "name": "思维导图",
  8534. "forms": _formdiv,
  8535. "click": function () {
  8536. U.MD.D.I.openApplication(str, obj, info);
  8537. }
  8538. }
  8539. break;
  8540. case "MindMap":
  8541. aTool = 3;
  8542. _iframe = $$("iframe", {
  8543. "frameborder": "no",
  8544. "border": "0",
  8545. "scrolling ": "no",
  8546. "style": {
  8547. "cssText": "border:0;width:100%;height:100%"
  8548. },
  8549. "src": "//cloud.cocorobo.cn/mind/"
  8550. })
  8551. _box.appendChild(_iframe);
  8552. _box.appendChild(_jie);
  8553. _formdiv = new U.UF.UI.form(
  8554. "思维导图-" + _username,
  8555. _box, { //"/jsmind/example/demo.html"
  8556. "id": "mind" + cid + stage + task + tool + _userid,
  8557. "style": {
  8558. "width": "90%",
  8559. "height": "90%",
  8560. "overflow": 'hidden'
  8561. },
  8562. "onresize": function () { }
  8563. }, {
  8564. closecallback: function () { }
  8565. }, {
  8566. "style": {
  8567. "height": "36px"
  8568. }
  8569. }).form; //创建窗体
  8570. _taskbar = {
  8571. "id": str + _formdiv.id,
  8572. "style": {
  8573. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8574. },
  8575. "name": "思维导图",
  8576. "forms": _formdiv,
  8577. "click": function () {
  8578. U.MD.D.I.openApplication(str, obj, info);
  8579. }
  8580. }
  8581. break;
  8582. case "doc":
  8583. aTool = 6;
  8584. _iframe = $$("iframe", {
  8585. "frameborder": "no",
  8586. "border": "0",
  8587. "scrolling ": "no",
  8588. "style": {
  8589. "cssText": "border:0;width:100%;height:100%"
  8590. },
  8591. "src": "/Office/Word/WordEditArea.htm"
  8592. })
  8593. _box.appendChild(_iframe);
  8594. _box.appendChild(_jie);
  8595. _formdiv = new U.UF.UI.form(
  8596. "协同文档-" + _username,
  8597. _box, {
  8598. "id": "doc" + cid + stage + task + tool + _userid,
  8599. "style": {
  8600. "width": "90%",
  8601. "height": "90%",
  8602. "overflow": 'hidden'
  8603. },
  8604. "onresize": function () { }
  8605. }, {
  8606. closecallback: function () { }
  8607. }, {
  8608. "style": {
  8609. "height": "36px"
  8610. }
  8611. }).form; //创建窗体
  8612. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8613. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8614. })
  8615. _taskbar = {
  8616. "id": str + _formdiv.id,
  8617. "style": {
  8618. "backgroundImage": "url(/img/icon/doc.png)"
  8619. },
  8620. "name": "协同文档",
  8621. "forms": _formdiv,
  8622. "click": function () {
  8623. U.MD.D.I.openApplication(str, obj, info);
  8624. }
  8625. }
  8626. break;
  8627. case "mindNetwork": //好友打开
  8628. aTool = 7;
  8629. _iframe = $$("iframe", {
  8630. "webkitallowfullscreen": "",
  8631. "mozallowfullscreen": "",
  8632. "allowfullscreen": "",
  8633. "frameborder": "no",
  8634. "border": "0",
  8635. "scrolling ": "no",
  8636. "style": {
  8637. "cssText": "border:0; width:100%; height:100%;"
  8638. },
  8639. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8640. })
  8641. _box.appendChild(_iframe);
  8642. _box.appendChild(_jie);
  8643. _formdiv = new U.UF.UI.form(
  8644. "思维网格-" + _username,
  8645. _box, {
  8646. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8647. "style": {
  8648. "width": "90%",
  8649. "height": "90%",
  8650. "overflow": 'hidden'
  8651. },
  8652. "onresize": function () { }
  8653. }, {
  8654. closecallback: function () { }
  8655. }, {
  8656. "style": {
  8657. "height": "36px"
  8658. }
  8659. }).form; //创建窗体
  8660. _taskbar = {
  8661. "id": str + _formdiv.id,
  8662. "style": {
  8663. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8664. },
  8665. "name": "思维网格",
  8666. "forms": _formdiv,
  8667. "click": function () {
  8668. U.MD.D.I.openApplication(str, obj, info);
  8669. }
  8670. }
  8671. break;
  8672. case "courseDesign":
  8673. _iframe = $$("iframe", {
  8674. "webkitallowfullscreen": "",
  8675. "mozallowfullscreen": "",
  8676. "allowfullscreen": "",
  8677. "frameborder": "no",
  8678. "border": "0",
  8679. "scrolling ": "no",
  8680. "style": {
  8681. "cssText": "border:0; width:100%; height:100%;"
  8682. },
  8683. "src": "/course-design-vue"
  8684. })
  8685. _box.appendChild(_iframe);
  8686. _box.appendChild(_jie);
  8687. _formdiv = new U.UF.UI.form(
  8688. "项目设计-" + _username,
  8689. _box, {
  8690. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8691. "style": {
  8692. "width": "90%",
  8693. "height": "90%",
  8694. "overflow": 'hidden'
  8695. },
  8696. "onresize": function () { }
  8697. }, {
  8698. closecallback: function () { }
  8699. }, {
  8700. "style": {
  8701. "height": "36px"
  8702. }
  8703. }).form; //创建窗体
  8704. _taskbar = {
  8705. "id": str + _formdiv.id,
  8706. "style": {
  8707. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8708. },
  8709. "name": "项目设计",
  8710. "forms": _formdiv,
  8711. "click": function () {
  8712. U.MD.D.I.openApplication(str, obj, info);
  8713. }
  8714. }
  8715. break;
  8716. }
  8717. const script1 = document.createElement("script");
  8718. script1.type = "text/javascript";
  8719. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8720. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8721. const script2 = document.createElement("script");
  8722. script2.type = "text/javascript";
  8723. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8724. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8725. const script3 = document.createElement("script");
  8726. script3.type = "text/javascript";
  8727. script3.charset = "UTF-8";
  8728. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8729. const script4 = document.createElement("script");
  8730. script4.type = "text/javascript";
  8731. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8732. script4.src = window.origin + "/js/Common/jietu2E.js";
  8733. if (_iframe) {
  8734. if (str == 'doc') {
  8735. _iframe = _formdiv.querySelector('iframe')
  8736. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8737. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8738. _iframe.contentWindow.document.body.appendChild(script1);
  8739. _iframe.contentWindow.document.body.appendChild(script2);
  8740. // _iframe.contentWindow.document.body.appendChild(script3);
  8741. _iframe.contentWindow.document.body.appendChild(script4);
  8742. })
  8743. if (onloadListener) {
  8744. _iframe.contentDocument.location.reload()
  8745. } else {
  8746. _iframe.contentDocument.location.reload()
  8747. }
  8748. } else if (str == 'courseDesign') {
  8749. U.UF.DL.iframeLoad(_iframe, function () {
  8750. // _iframe.contentWindow.U.MD.O.W.load();
  8751. // _iframe.contentWindow.document.body.appendChild(script1);
  8752. _iframe.contentWindow.document.body.appendChild(script2);
  8753. _iframe.contentWindow.document.body.appendChild(script4);
  8754. })
  8755. } else if (str == 'mind') {
  8756. _iframe = _formdiv.querySelector('iframe')
  8757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8758. //
  8759. _iframe.contentWindow.document.body.appendChild(script1);
  8760. _iframe.contentWindow.document.body.appendChild(script2);
  8761. _iframe.contentWindow.document.body.appendChild(script4);
  8762. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8763. })
  8764. if (onloadListener) {
  8765. _iframe.contentDocument.location.reload()
  8766. } else {
  8767. _iframe.contentDocument.location.reload()
  8768. }
  8769. } else if (str == 'whiteboard') {
  8770. _iframe = _formdiv.querySelector('iframe')
  8771. let onloadListener = _iframe.onload = () => {
  8772. _iframe.contentWindow.document.body.appendChild(script1);
  8773. _iframe.contentWindow.document.body.appendChild(script2);
  8774. _iframe.contentWindow.document.body.appendChild(script4);
  8775. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8776. };
  8777. // if (onloadListener) {
  8778. // try {
  8779. // _iframe.src += "?cocorobo="+new Date().getTime()
  8780. // _iframe.contentWindow.document.location.reload()
  8781. // } catch (error) {
  8782. // }
  8783. // } else {
  8784. // _iframe.contentDocument.location.reload()
  8785. // }
  8786. } else {
  8787. _iframe.onload = () => {
  8788. _iframe.contentWindow.document.body.appendChild(script1);
  8789. _iframe.contentWindow.document.body.appendChild(script2);
  8790. // _iframe.contentWindow.document.body.appendChild(script3);
  8791. _iframe.contentWindow.document.body.appendChild(script4);
  8792. };
  8793. }
  8794. _jie.onclick = async () => {
  8795. let text = ''
  8796. if (aTool == 1) {
  8797. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8798. } else if (aTool == 6) {
  8799. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8800. } else if (aTool == 3) {
  8801. text = await U.MD.D.I.getEditorContent(_iframe);
  8802. }
  8803. _loading.style.display = 'flex'
  8804. console.log(_loading);
  8805. var _ajs = _iframe.contentWindow.document.createElement("script");
  8806. _ajs.type = "text/javascript";
  8807. _ajs.innerHTML =
  8808. // 'console.log(' + _loading + ');\n' +
  8809. 'var _js = document.createElement("script");\n' +
  8810. '_js.type="text/javascript";\n' +
  8811. '_js.charset="UTF-8";\n' +
  8812. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8813. "_js.onload = function(){\n" +
  8814. ' var a = document.getElementsByTagName("img")\n' +
  8815. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8816. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8817. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8818. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8819. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8820. "beforeUpload_shishi(file," +
  8821. "'" +
  8822. _userid +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. _cid +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. _stage +
  8831. "'" +
  8832. ", " +
  8833. "'" +
  8834. _task +
  8835. "'" +
  8836. ", " +
  8837. "'" +
  8838. _tool +
  8839. "'" +
  8840. ", " +
  8841. "'" +
  8842. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8843. "'" +
  8844. ", " +
  8845. "'" +
  8846. aTool +
  8847. "'" +
  8848. ", " +
  8849. "`" +
  8850. text +
  8851. "`" +
  8852. ")\n" +
  8853. " });\n" +
  8854. "}\n" +
  8855. "document.head.appendChild(_js);\n";
  8856. _iframe.contentWindow.document.head.appendChild(_ajs);
  8857. }
  8858. }
  8859. }
  8860. U.MD.D.I.getEditorContent = function (iframe) {
  8861. return new Promise((resolve, reject) => {
  8862. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8863. console.log(content);
  8864. resolve(content)
  8865. });
  8866. });
  8867. }
  8868. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8869. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8870. // if (res.value[0].length > 0) {
  8871. // // resolve(res.value[0][0].text);
  8872. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8873. // $(fileInput).val('');
  8874. // });
  8875. // }
  8876. // }, [], { "type": "GET", "withCredentials": true });
  8877. var xmlhttp;
  8878. var Mac, Sn, DeviceId
  8879. if (window.XMLHttpRequest) {
  8880. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8881. xmlhttp = new XMLHttpRequest();
  8882. } else {
  8883. // IE6, IE5 浏览器执行代码
  8884. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8885. }
  8886. xmlhttp.onreadystatechange = function () {
  8887. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8888. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8889. // resolve(res.value[0][0].text);
  8890. if (type == '2') {
  8891. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8892. } else if (type == '3') {
  8893. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8894. }
  8895. } else {
  8896. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8897. }
  8898. }
  8899. }
  8900. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8901. xmlhttp.send();
  8902. }
  8903. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8904. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8905. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8906. _userinfo = US.userInfo, //登录用户信息
  8907. _userid = US.userInfo.userid //登录用户id
  8908. let _iframe;
  8909. let _cid = cid,
  8910. _stage = stage,
  8911. _task = task,
  8912. _tool = tool;
  8913. var _jie = $$("div", {
  8914. "style": {
  8915. "position": "absolute",
  8916. "bottom": "50px",
  8917. "right": "50px",
  8918. "zIndex": "9999",
  8919. "backgroundColor": "#2268bc",
  8920. "color": "#fff",
  8921. "padding": "12px 20px",
  8922. "cursor": "pointer",
  8923. "borderRadius": "4px",
  8924. },
  8925. "innerHTML": "确认并提交"
  8926. })
  8927. let aTool = ''
  8928. let _loading = document.createElement('div')
  8929. _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;"
  8930. // _loading.id = "";
  8931. let _lchild = document.createElement('div')
  8932. let _limg = document.createElement('img')
  8933. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8934. _limg.style = "width: 26px;margin-right: 10px;"
  8935. _lchild.appendChild(_limg)
  8936. let _lspan = document.createElement('span')
  8937. _lspan.innerHTML = "上传中..."
  8938. _lchild.appendChild(_lspan)
  8939. _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%);"
  8940. _loading.appendChild(_lchild)
  8941. var _box = $$('div', {
  8942. "style": {
  8943. "position": "relative",
  8944. "width": "100%",
  8945. "height": "100%",
  8946. },
  8947. })
  8948. _box.appendChild(_loading)
  8949. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8950. switch (str) {
  8951. case "whiteboard":
  8952. aTool = 1;
  8953. _iframe = $$("iframe", {
  8954. "frameborder": "no",
  8955. "border": "0",
  8956. "scrolling ": "no",
  8957. "style": {
  8958. "cssText": "border:0;width:100%;height:100%"
  8959. },
  8960. "src": "https://beta.iwb.cocorobo.cn/"
  8961. })
  8962. _box.appendChild(_iframe);
  8963. _box.appendChild(_jie);
  8964. _formdiv = new U.UF.UI.form(
  8965. "电子白板",
  8966. _box, {
  8967. "id": "whiteboards" + cid + stage + task + tool,
  8968. "style": {
  8969. "width": "90%",
  8970. "height": "90%",
  8971. "overflow": 'hidden'
  8972. },
  8973. "onresize": function () { }
  8974. }, {
  8975. closecallback: function () { }
  8976. }, {
  8977. "style": {
  8978. "height": "36px"
  8979. }
  8980. }).form; //创建窗体
  8981. _taskbar = {
  8982. "id": str + _formdiv.id,
  8983. "style": {
  8984. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8985. },
  8986. "name": "电子白板",
  8987. "forms": _formdiv,
  8988. "click": function () {
  8989. U.MD.D.I.openApplication(str, obj, info);
  8990. }
  8991. }
  8992. break;
  8993. case "mind":
  8994. aTool = 3;
  8995. _iframe = $$("iframe", {
  8996. "frameborder": "no",
  8997. "border": "0",
  8998. "scrolling ": "no",
  8999. "style": {
  9000. "cssText": "border:0;width:100%;height:100%"
  9001. },
  9002. "src": "/kityminder-editor/dist/index.html"
  9003. });
  9004. _box.appendChild(_iframe);
  9005. _box.appendChild(_jie);
  9006. _formdiv = new U.UF.UI.form(
  9007. "思维导图",
  9008. _box, { //"/jsmind/example/demo.html"
  9009. "id": "minds" + cid + stage + task + tool,
  9010. "style": {
  9011. "width": "90%",
  9012. "height": "90%",
  9013. "overflow": 'hidden'
  9014. },
  9015. "onresize": function () { }
  9016. }, {
  9017. closecallback: function () { }
  9018. }, {
  9019. "style": {
  9020. "height": "36px"
  9021. }
  9022. }).form; //创建窗体
  9023. _taskbar = {
  9024. "id": str + _formdiv.id,
  9025. "style": {
  9026. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9027. },
  9028. "name": "思维导图",
  9029. "forms": _formdiv,
  9030. "click": function () {
  9031. U.MD.D.I.openApplication(str, obj, info);
  9032. }
  9033. }
  9034. break;
  9035. case "doc":
  9036. aTool = 6;
  9037. _iframe = $$("iframe", {
  9038. "frameborder": "no",
  9039. "border": "0",
  9040. "scrolling ": "no",
  9041. "style": {
  9042. "cssText": "border:0;width:100%;height:100%"
  9043. },
  9044. "src": "/Office/Word/WordEditArea.htm"
  9045. })
  9046. _box.appendChild(_iframe);
  9047. _box.appendChild(_jie);
  9048. _formdiv = new U.UF.UI.form(
  9049. "协同文档",
  9050. _box, {
  9051. "id": "docs" + cid + stage + task + tool,
  9052. "style": {
  9053. "width": "90%",
  9054. "height": "90%",
  9055. "overflow": 'hidden'
  9056. },
  9057. "onresize": function () { }
  9058. }, {
  9059. closecallback: function () { }
  9060. }, {
  9061. "style": {
  9062. "height": "36px"
  9063. }
  9064. }).form; //创建窗体
  9065. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9066. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9067. })
  9068. _taskbar = {
  9069. "id": str + _formdiv.id,
  9070. "style": {
  9071. "backgroundImage": "url(/img/icon/doc.png)"
  9072. },
  9073. "name": "协同文档",
  9074. "forms": _formdiv,
  9075. "click": function () {
  9076. U.MD.D.I.openApplication(str, obj, info);
  9077. }
  9078. }
  9079. break;
  9080. }
  9081. const script1 = document.createElement("script");
  9082. script1.type = "text/javascript";
  9083. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9084. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9085. const script2 = document.createElement("script");
  9086. script2.type = "text/javascript";
  9087. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9088. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9089. const script3 = document.createElement("script");
  9090. script3.type = "text/javascript";
  9091. script3.charset = "UTF-8";
  9092. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9093. const script4 = document.createElement("script");
  9094. script4.type = "text/javascript";
  9095. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9096. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9097. if (_iframe) {
  9098. if (str == 'doc') {
  9099. _iframe = _formdiv.querySelector('iframe')
  9100. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9101. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9102. _iframe.contentWindow.document.body.appendChild(script1);
  9103. _iframe.contentWindow.document.body.appendChild(script2);
  9104. // _iframe.contentWindow.document.body.appendChild(script3);
  9105. _iframe.contentWindow.document.body.appendChild(script4);
  9106. })
  9107. if (onloadListener) {
  9108. _iframe.contentDocument.location.reload()
  9109. } else {
  9110. _iframe.contentDocument.location.reload()
  9111. }
  9112. } else if (str == 'mind') {
  9113. _iframe = _formdiv.querySelector('iframe')
  9114. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9115. _iframe.contentWindow.document.body.appendChild(script1);
  9116. _iframe.contentWindow.document.body.appendChild(script2);
  9117. _iframe.contentWindow.document.body.appendChild(script4);
  9118. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9119. })
  9120. if (onloadListener) {
  9121. _iframe.contentDocument.location.reload()
  9122. } else {
  9123. _iframe.contentDocument.location.reload()
  9124. }
  9125. } else {
  9126. _iframe.onload = () => {
  9127. _iframe.contentWindow.document.body.appendChild(script1);
  9128. _iframe.contentWindow.document.body.appendChild(script2);
  9129. // _iframe.contentWindow.document.body.appendChild(script3);
  9130. _iframe.contentWindow.document.body.appendChild(script4);
  9131. };
  9132. }
  9133. _jie.onclick = async () => {
  9134. let text = ''
  9135. if (aTool == 6) {
  9136. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9137. } else if (aTool == 3) {
  9138. text = await U.MD.D.I.getEditorContent(_iframe);
  9139. }
  9140. _loading.style.display = 'flex'
  9141. console.log(_loading);
  9142. var _ajs = _iframe.contentWindow.document.createElement("script");
  9143. _ajs.type = "text/javascript";
  9144. _ajs.innerHTML =
  9145. // 'console.log(' + _loading + ');\n' +
  9146. 'var _js = document.createElement("script");\n' +
  9147. '_js.type="text/javascript";\n' +
  9148. '_js.charset="UTF-8";\n' +
  9149. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9150. "_js.onload = function(){\n" +
  9151. ' var a = document.getElementsByTagName("img")\n' +
  9152. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9153. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9154. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9155. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9156. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9157. "beforeUpload_shishi(file," +
  9158. "'" +
  9159. _userid +
  9160. "'" +
  9161. ", " +
  9162. "'" +
  9163. _cid +
  9164. "'" +
  9165. ", " +
  9166. "'" +
  9167. _stage +
  9168. "'" +
  9169. ", " +
  9170. "'" +
  9171. _task +
  9172. "'" +
  9173. ", " +
  9174. "'" +
  9175. _tool +
  9176. "'" +
  9177. ", " +
  9178. "'" +
  9179. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9180. "'" +
  9181. ", " +
  9182. "'" +
  9183. aTool +
  9184. "'" +
  9185. ", " +
  9186. "`" +
  9187. text +
  9188. "`" +
  9189. ")\n" +
  9190. " });\n" +
  9191. "}\n" +
  9192. "document.head.appendChild(_js);\n";
  9193. _iframe.contentWindow.document.head.appendChild(_ajs);
  9194. }
  9195. }
  9196. //U.MD.D.I.openClick(str);
  9197. //如果有任务栏信息
  9198. // if (_taskbar) {
  9199. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9200. // }
  9201. }
  9202. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9203. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9204. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9205. _userinfo = US.userInfo, //登录用户信息
  9206. _userid = US.userInfo.userid //登录用户id
  9207. let _iframe;
  9208. let _cid = cid,
  9209. _stage = stage,
  9210. _task = task,
  9211. _tool = tool;
  9212. var _jie = $$("div", {
  9213. "style": {
  9214. "position": "absolute",
  9215. "bottom": "50px",
  9216. "right": "50px",
  9217. "zIndex": "9999",
  9218. "backgroundColor": "#2268bc",
  9219. "color": "#fff",
  9220. "padding": "12px 20px",
  9221. "cursor": "pointer",
  9222. "borderRadius": "4px",
  9223. },
  9224. "innerHTML": "确认并提交"
  9225. })
  9226. let aTool = ''
  9227. let _loading = document.createElement('div')
  9228. _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;"
  9229. // _loading.id = "";
  9230. let _lchild = document.createElement('div')
  9231. let _limg = document.createElement('img')
  9232. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9233. _limg.style = "width: 26px;margin-right: 10px;"
  9234. _lchild.appendChild(_limg)
  9235. let _lspan = document.createElement('span')
  9236. _lspan.innerHTML = "上传中..."
  9237. _lchild.appendChild(_lspan)
  9238. _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%);"
  9239. _loading.appendChild(_lchild)
  9240. var _box = $$('div', {
  9241. "style": {
  9242. "position": "relative",
  9243. "width": "100%",
  9244. "height": "100%",
  9245. },
  9246. })
  9247. _box.appendChild(_loading)
  9248. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9249. switch (str) {
  9250. case "whiteboard":
  9251. aTool = 1;
  9252. _iframe = $$("iframe", {
  9253. "frameborder": "no",
  9254. "border": "0",
  9255. "scrolling ": "no",
  9256. "style": {
  9257. "cssText": "border:0;width:100%;height:100%"
  9258. },
  9259. "src": "https://beta.iwb.cocorobo.cn/"
  9260. })
  9261. _box.appendChild(_iframe);
  9262. _box.appendChild(_jie);
  9263. _formdiv = new U.UF.UI.form(
  9264. "电子白板",
  9265. _box, {
  9266. "id": "whiteboards" + cid + stage + task + tool,
  9267. "style": {
  9268. "width": "90%",
  9269. "height": "90%",
  9270. "overflow": 'hidden'
  9271. },
  9272. "onresize": function () { }
  9273. }, {
  9274. closecallback: function () { }
  9275. }, {
  9276. "style": {
  9277. "height": "36px"
  9278. }
  9279. }).form; //创建窗体
  9280. _taskbar = {
  9281. "id": str + _formdiv.id,
  9282. "style": {
  9283. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9284. },
  9285. "name": "电子白板",
  9286. "forms": _formdiv,
  9287. "click": function () {
  9288. U.MD.D.I.openApplication(str, obj, info);
  9289. }
  9290. }
  9291. break;
  9292. case "mind":
  9293. aTool = 3;
  9294. _iframe = $$("iframe", {
  9295. "frameborder": "no",
  9296. "border": "0",
  9297. "scrolling ": "no",
  9298. "style": {
  9299. "cssText": "border:0;width:100%;height:100%"
  9300. },
  9301. "src": "/kityminder-editor/dist/index.html"
  9302. });
  9303. _box.appendChild(_iframe);
  9304. _box.appendChild(_jie);
  9305. _formdiv = new U.UF.UI.form(
  9306. "思维导图",
  9307. _box, { //"/jsmind/example/demo.html"
  9308. "id": "minds" + cid + stage + task + tool,
  9309. "style": {
  9310. "width": "90%",
  9311. "height": "90%",
  9312. "overflow": 'hidden'
  9313. },
  9314. "onresize": function () { }
  9315. }, {
  9316. closecallback: function () { }
  9317. }, {
  9318. "style": {
  9319. "height": "36px"
  9320. }
  9321. }).form; //创建窗体
  9322. _taskbar = {
  9323. "id": str + _formdiv.id,
  9324. "style": {
  9325. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9326. },
  9327. "name": "思维导图",
  9328. "forms": _formdiv,
  9329. "click": function () {
  9330. U.MD.D.I.openApplication(str, obj, info);
  9331. }
  9332. }
  9333. break;
  9334. case "doc":
  9335. aTool = 6;
  9336. _iframe = $$("iframe", {
  9337. "frameborder": "no",
  9338. "border": "0",
  9339. "scrolling ": "no",
  9340. "style": {
  9341. "cssText": "border:0;width:100%;height:100%"
  9342. },
  9343. "src": "/Office/Word/WordEditArea.htm"
  9344. })
  9345. _box.appendChild(_iframe);
  9346. _box.appendChild(_jie);
  9347. _formdiv = new U.UF.UI.form(
  9348. "协同文档",
  9349. _box, {
  9350. "id": "docs" + cid + stage + task + tool,
  9351. "style": {
  9352. "width": "90%",
  9353. "height": "90%",
  9354. "overflow": 'hidden'
  9355. },
  9356. "onresize": function () { }
  9357. }, {
  9358. closecallback: function () { }
  9359. }, {
  9360. "style": {
  9361. "height": "36px"
  9362. }
  9363. }).form; //创建窗体
  9364. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9365. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9366. })
  9367. _taskbar = {
  9368. "id": str + _formdiv.id,
  9369. "style": {
  9370. "backgroundImage": "url(/img/icon/doc.png)"
  9371. },
  9372. "name": "协同文档",
  9373. "forms": _formdiv,
  9374. "click": function () {
  9375. U.MD.D.I.openApplication(str, obj, info);
  9376. }
  9377. }
  9378. break;
  9379. }
  9380. const script1 = document.createElement("script");
  9381. script1.type = "text/javascript";
  9382. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9383. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9384. const script2 = document.createElement("script");
  9385. script2.type = "text/javascript";
  9386. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9387. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9388. const script3 = document.createElement("script");
  9389. script3.type = "text/javascript";
  9390. script3.charset = "UTF-8";
  9391. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9392. const script4 = document.createElement("script");
  9393. script4.type = "text/javascript";
  9394. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9395. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9396. if (_iframe) {
  9397. if (str == 'doc') {
  9398. _iframe = _formdiv.querySelector('iframe')
  9399. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9400. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9401. _iframe.contentWindow.document.body.appendChild(script1);
  9402. _iframe.contentWindow.document.body.appendChild(script2);
  9403. // _iframe.contentWindow.document.body.appendChild(script3);
  9404. _iframe.contentWindow.document.body.appendChild(script4);
  9405. })
  9406. if (onloadListener) {
  9407. _iframe.contentDocument.location.reload()
  9408. } else {
  9409. _iframe.contentDocument.location.reload()
  9410. }
  9411. } else if (str == 'mind') {
  9412. _iframe = _formdiv.querySelector('iframe')
  9413. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9414. _iframe.contentWindow.document.body.appendChild(script1);
  9415. _iframe.contentWindow.document.body.appendChild(script2);
  9416. _iframe.contentWindow.document.body.appendChild(script4);
  9417. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9418. })
  9419. if (onloadListener) {
  9420. _iframe.contentDocument.location.reload()
  9421. } else {
  9422. _iframe.contentDocument.location.reload()
  9423. }
  9424. } else {
  9425. _iframe.onload = () => {
  9426. _iframe.contentWindow.document.body.appendChild(script1);
  9427. _iframe.contentWindow.document.body.appendChild(script2);
  9428. // _iframe.contentWindow.document.body.appendChild(script3);
  9429. _iframe.contentWindow.document.body.appendChild(script4);
  9430. };
  9431. }
  9432. _jie.onclick = async () => {
  9433. let text = ''
  9434. if (aTool == 6) {
  9435. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9436. } else if (aTool == 3) {
  9437. text = await U.MD.D.I.getEditorContent(_iframe);
  9438. }
  9439. _loading.style.display = 'flex'
  9440. console.log(_loading);
  9441. var _ajs = _iframe.contentWindow.document.createElement("script");
  9442. _ajs.type = "text/javascript";
  9443. _ajs.innerHTML =
  9444. // 'console.log(' + _loading + ');\n' +
  9445. 'var _js = document.createElement("script");\n' +
  9446. '_js.type="text/javascript";\n' +
  9447. '_js.charset="UTF-8";\n' +
  9448. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9449. "_js.onload = function(){\n" +
  9450. ' var a = document.getElementsByTagName("img")\n' +
  9451. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9452. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9453. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9454. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9455. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9456. "beforeUpload_shishi(file," +
  9457. "'" +
  9458. _userid +
  9459. "'" +
  9460. ", " +
  9461. "'" +
  9462. _cid +
  9463. "'" +
  9464. ", " +
  9465. "'" +
  9466. _stage +
  9467. "'" +
  9468. ", " +
  9469. "'" +
  9470. _task +
  9471. "'" +
  9472. ", " +
  9473. "'" +
  9474. _tool +
  9475. "'" +
  9476. ", " +
  9477. "'" +
  9478. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9479. "'" +
  9480. ", " +
  9481. "'" +
  9482. aTool +
  9483. "'" +
  9484. ", " +
  9485. "`" +
  9486. text +
  9487. "`" +
  9488. ")\n" +
  9489. " });\n" +
  9490. "}\n" +
  9491. "document.head.appendChild(_js);\n";
  9492. _iframe.contentWindow.document.head.appendChild(_ajs);
  9493. }
  9494. }
  9495. //U.MD.D.I.openClick(str);
  9496. //如果有任务栏信息
  9497. // if (_taskbar) {
  9498. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9499. // }
  9500. }
  9501. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9502. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9503. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9504. _userinfo = US.userInfo, //登录用户信息
  9505. _userid = US.userInfo.userid //登录用户id
  9506. let _iframe;
  9507. let _cid = cid,
  9508. _stage = stage,
  9509. _task = task,
  9510. _tool = tool;
  9511. var _jie = $$("div", {
  9512. "style": {
  9513. "position": "absolute",
  9514. "bottom": "50px",
  9515. "right": "50px",
  9516. "zIndex": "9999",
  9517. "backgroundColor": "#2268bc",
  9518. "color": "#fff",
  9519. "padding": "12px 20px",
  9520. "cursor": "pointer",
  9521. "borderRadius": "4px",
  9522. },
  9523. "innerHTML": "上传模板"
  9524. })
  9525. let aTool = ''
  9526. let _loading = document.createElement('div')
  9527. _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;"
  9528. // _loading.id = "";
  9529. let _lchild = document.createElement('div')
  9530. let _limg = document.createElement('img')
  9531. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9532. _limg.style = "width: 26px;margin-right: 10px;"
  9533. _lchild.appendChild(_limg)
  9534. let _lspan = document.createElement('span')
  9535. _lspan.innerHTML = "上传中..."
  9536. _lchild.appendChild(_lspan)
  9537. _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%);"
  9538. _loading.appendChild(_lchild)
  9539. var _box = $$('div', {
  9540. "style": {
  9541. "position": "relative",
  9542. "width": "100%",
  9543. "height": "100%",
  9544. },
  9545. })
  9546. _box.appendChild(_loading)
  9547. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9548. switch (str) {
  9549. case "whiteboard":
  9550. aTool = 1;
  9551. _iframe = $$("iframe", {
  9552. "frameborder": "no",
  9553. "border": "0",
  9554. "scrolling ": "no",
  9555. "style": {
  9556. "cssText": "border:0;width:100%;height:100%"
  9557. },
  9558. "src": "https://beta.iwb.cocorobo.cn/"
  9559. })
  9560. _box.appendChild(_iframe);
  9561. _box.appendChild(_jie);
  9562. _formdiv = new U.UF.UI.form(
  9563. "电子白板",
  9564. _box, {
  9565. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9566. "style": {
  9567. "width": "90%",
  9568. "height": "90%",
  9569. "overflow": 'hidden'
  9570. },
  9571. "onresize": function () { }
  9572. }, {
  9573. closecallback: function () { }
  9574. }, {
  9575. "style": {
  9576. "height": "36px"
  9577. }
  9578. }).form; //创建窗体
  9579. _taskbar = {
  9580. "id": str + _formdiv.id,
  9581. "style": {
  9582. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9583. },
  9584. "name": "电子白板",
  9585. "forms": _formdiv,
  9586. "click": function () {
  9587. U.MD.D.I.openApplication(str, obj, info);
  9588. }
  9589. }
  9590. break;
  9591. case "mind":
  9592. aTool = 3;
  9593. _iframe = $$("iframe", {
  9594. "frameborder": "no",
  9595. "border": "0",
  9596. "scrolling ": "no",
  9597. "style": {
  9598. "cssText": "border:0;width:100%;height:100%"
  9599. },
  9600. "src": "/kityminder-editor/dist/index.html"
  9601. });
  9602. _box.appendChild(_iframe);
  9603. _box.appendChild(_jie);
  9604. _formdiv = new U.UF.UI.form(
  9605. "思维导图",
  9606. _box, { //"/jsmind/example/demo.html"
  9607. "id": "minds_Yu" + cid + stage + task + tool,
  9608. "style": {
  9609. "width": "90%",
  9610. "height": "90%",
  9611. "overflow": 'hidden'
  9612. },
  9613. "onresize": function () { }
  9614. }, {
  9615. closecallback: function () { }
  9616. }, {
  9617. "style": {
  9618. "height": "36px"
  9619. }
  9620. }).form; //创建窗体
  9621. _taskbar = {
  9622. "id": str + _formdiv.id,
  9623. "style": {
  9624. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9625. },
  9626. "name": "思维导图",
  9627. "forms": _formdiv,
  9628. "click": function () {
  9629. U.MD.D.I.openApplication(str, obj, info);
  9630. }
  9631. }
  9632. break;
  9633. case "doc":
  9634. aTool = 6;
  9635. _iframe = $$("iframe", {
  9636. "frameborder": "no",
  9637. "border": "0",
  9638. "scrolling ": "no",
  9639. "style": {
  9640. "cssText": "border:0;width:100%;height:100%"
  9641. },
  9642. "src": "/Office/Word/WordEditArea.htm"
  9643. })
  9644. _box.appendChild(_iframe);
  9645. _box.appendChild(_jie);
  9646. _formdiv = new U.UF.UI.form(
  9647. "协同文档",
  9648. _box, {
  9649. "id": "docs_Yu" + cid + stage + task + tool,
  9650. "style": {
  9651. "width": "90%",
  9652. "height": "90%",
  9653. "overflow": 'hidden'
  9654. },
  9655. "onresize": function () { }
  9656. }, {
  9657. closecallback: function () { }
  9658. }, {
  9659. "style": {
  9660. "height": "36px"
  9661. }
  9662. }).form; //创建窗体
  9663. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9664. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9665. })
  9666. _taskbar = {
  9667. "id": str + _formdiv.id,
  9668. "style": {
  9669. "backgroundImage": "url(/img/icon/doc.png)"
  9670. },
  9671. "name": "协同文档",
  9672. "forms": _formdiv,
  9673. "click": function () {
  9674. U.MD.D.I.openApplication(str, obj, info);
  9675. }
  9676. }
  9677. break;
  9678. case "CocoPi":
  9679. aTool = 57;
  9680. _iframe = $$("iframe", {
  9681. "allowpaymentrequest": "allowpaymentrequest",
  9682. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9683. "webkitallowfullscreen": "",
  9684. "mozallowfullscreen": "",
  9685. "frameborder": "no",
  9686. "border": "0",
  9687. "scrolling ": "no",
  9688. "style": {
  9689. "cssText": "border:0;width:100%;height:100%"
  9690. },
  9691. "src": "https://pi.cocorobo.cn/"
  9692. })
  9693. _box.appendChild(_iframe);
  9694. _box.appendChild(_jie);
  9695. _formdiv = new U.UF.UI.form(
  9696. "CocoPi",
  9697. _box, {
  9698. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9699. "style": {
  9700. "width": "90%",
  9701. "height": "90%",
  9702. "overflow": 'hidden'
  9703. },
  9704. "onresize": function () { }
  9705. }, {
  9706. closecallback: function () { }
  9707. }, {
  9708. "style": {
  9709. "height": "36px"
  9710. }
  9711. }).form; //创建窗体
  9712. _taskbar = {
  9713. "id": str + _formdiv.id,
  9714. "style": {
  9715. "backgroundImage": "url(/img/icon/cocopi.png)"
  9716. },
  9717. "name": "CocoPi",
  9718. "forms": _formdiv,
  9719. "click": function () {
  9720. U.MD.D.I.openApplication(str, obj, info);
  9721. }
  9722. }
  9723. break;
  9724. }
  9725. if (_iframe) {
  9726. if (str == 'doc') {
  9727. _iframe = _formdiv.querySelector('iframe')
  9728. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9729. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9730. })
  9731. if (onloadListener) {
  9732. _iframe.contentDocument.location.reload()
  9733. } else {
  9734. _iframe.contentDocument.location.reload()
  9735. }
  9736. } else if (str == 'mind') {
  9737. _iframe = _formdiv.querySelector('iframe')
  9738. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9739. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9740. })
  9741. if (onloadListener) {
  9742. _iframe.contentDocument.location.reload()
  9743. } else {
  9744. _iframe.contentDocument.location.reload()
  9745. }
  9746. } else if (str == 'whiteboard') {
  9747. _iframe = _formdiv.querySelector('iframe')
  9748. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9749. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9750. })
  9751. // if (onloadListener) {
  9752. // try {
  9753. // _iframe.src += "?cocorobo="+new Date().getTime()
  9754. // _iframe.contentWindow.document.location.reload()
  9755. // } catch (error) {
  9756. // }
  9757. // } else {
  9758. // _iframe.contentDocument.location.reload()
  9759. // }
  9760. } else if (str == 'CocoPi') {
  9761. _iframe = _formdiv.querySelector('iframe')
  9762. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9763. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9764. })
  9765. if (onloadListener) {
  9766. _iframe.contentDocument.location.reload()
  9767. } else {
  9768. _iframe.contentDocument.location.reload()
  9769. }
  9770. } else {
  9771. _iframe.onload = () => { };
  9772. }
  9773. _jie.onclick = async () => {
  9774. let text = ''
  9775. let type = '2'
  9776. if (aTool == 1) {
  9777. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9778. type = '3'
  9779. } else if (aTool == 6) {
  9780. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9781. type = '1'
  9782. } else if (aTool == 3) {
  9783. text = await U.MD.D.I.getEditorContent(_iframe);
  9784. type = '2'
  9785. } else if (aTool == 57) {
  9786. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9787. type = '4'
  9788. }
  9789. _loading.style.display = 'flex'
  9790. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9791. }
  9792. }
  9793. //U.MD.D.I.openClick(str);
  9794. //如果有任务栏信息
  9795. // if (_taskbar) {
  9796. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9797. // }
  9798. }
  9799. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9800. var xmlhttp;
  9801. var Mac, Sn, DeviceId
  9802. if (window.XMLHttpRequest) {
  9803. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9804. xmlhttp = new XMLHttpRequest();
  9805. } else {
  9806. // IE6, IE5 浏览器执行代码
  9807. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9808. }
  9809. xmlhttp.onreadystatechange = function () {
  9810. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9811. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9812. // resolve(res.value[0][0].text);
  9813. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9814. }
  9815. }
  9816. }
  9817. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9818. xmlhttp.send();
  9819. }
  9820. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9821. var xmlhttp;
  9822. var Mac, Sn, DeviceId
  9823. if (window.XMLHttpRequest) {
  9824. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9825. xmlhttp = new XMLHttpRequest();
  9826. } else {
  9827. // IE6, IE5 浏览器执行代码
  9828. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9829. }
  9830. xmlhttp.onreadystatechange = function () {
  9831. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9832. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9833. // resolve(res.value[0][0].text);
  9834. if (type == '2') {
  9835. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9836. } else if (type == '3') {
  9837. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9838. } else if (type == '4') {
  9839. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9840. }
  9841. } else {
  9842. if (type == '2') {
  9843. iframe.contentWindow.editor.minder.importData('json', '')
  9844. } else if (type == '3') {
  9845. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9846. } else if (type == '4') {
  9847. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9848. }
  9849. }
  9850. }
  9851. }
  9852. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9853. xmlhttp.send();
  9854. }
  9855. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9856. var xmlhttp;
  9857. var Mac, Sn, DeviceId
  9858. if (window.XMLHttpRequest) {
  9859. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9860. xmlhttp = new XMLHttpRequest();
  9861. } else {
  9862. // IE6, IE5 浏览器执行代码
  9863. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9864. }
  9865. xmlhttp.onreadystatechange = function () {
  9866. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9867. if (xmlhttp.response) {
  9868. // resolve(res.value[0][0].text);
  9869. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9870. // $(fileInput).val('');
  9871. // });
  9872. span.innerHTML = '上传成功'
  9873. setTimeout(() => {
  9874. loading.style.display = 'none'
  9875. }, 1000);
  9876. }
  9877. }
  9878. }
  9879. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9880. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9881. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9882. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9883. // 设置请求头,表示请求体的编码格式
  9884. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9885. // 设置请求体,使用url-encoded格式的数据
  9886. }
  9887. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9888. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9889. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9890. _userinfo = US.userInfo, //登录用户信息
  9891. _userid = US.userInfo.userid //登录用户id
  9892. let _iframe;
  9893. let _cid = cid,
  9894. _stage = stage,
  9895. _task = task,
  9896. _tool = tool;
  9897. var _jie = $$("div", {
  9898. "style": {
  9899. "position": "absolute",
  9900. "bottom": "50px",
  9901. "right": "50px",
  9902. "zIndex": "9999",
  9903. "backgroundColor": "#2268bc",
  9904. "color": "#fff",
  9905. "padding": "12px 20px",
  9906. "cursor": "pointer",
  9907. "borderRadius": "4px",
  9908. },
  9909. "innerHTML": "提交作业"
  9910. })
  9911. let aTool = ''
  9912. let _loading = document.createElement('div')
  9913. _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;"
  9914. // _loading.id = "";
  9915. let _lchild = document.createElement('div')
  9916. let _limg = document.createElement('img')
  9917. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9918. _limg.style = "width: 26px;margin-right: 10px;"
  9919. _lchild.appendChild(_limg)
  9920. let _lspan = document.createElement('span')
  9921. _lspan.innerHTML = "上传中..."
  9922. _lchild.appendChild(_lspan)
  9923. _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%);"
  9924. _loading.appendChild(_lchild)
  9925. var _box = $$('div', {
  9926. "style": {
  9927. "position": "relative",
  9928. "width": "100%",
  9929. "height": "100%",
  9930. },
  9931. })
  9932. _box.appendChild(_loading)
  9933. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9934. switch (str) {
  9935. case "CocoPi":
  9936. aTool = 57;
  9937. _iframe = $$("iframe", {
  9938. "allowpaymentrequest": "allowpaymentrequest",
  9939. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9940. "webkitallowfullscreen": "",
  9941. "mozallowfullscreen": "",
  9942. "frameborder": "no",
  9943. "border": "0",
  9944. "scrolling ": "no",
  9945. "style": {
  9946. "cssText": "border:0;width:100%;height:100%"
  9947. },
  9948. "src": "https://pi.cocorobo.cn/"
  9949. })
  9950. _box.appendChild(_iframe);
  9951. _box.appendChild(_jie);
  9952. _formdiv = new U.UF.UI.form(
  9953. "CocoPi",
  9954. _box, {
  9955. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9956. "style": {
  9957. "width": "90%",
  9958. "height": "90%",
  9959. "overflow": 'hidden'
  9960. },
  9961. "onresize": function () { }
  9962. }, {
  9963. closecallback: function () { }
  9964. }, {
  9965. "style": {
  9966. "height": "36px"
  9967. }
  9968. }).form; //创建窗体
  9969. _taskbar = {
  9970. "id": str + _formdiv.id,
  9971. "style": {
  9972. "backgroundImage": "url(/img/icon/cocopi.png)"
  9973. },
  9974. "name": "CocoPi",
  9975. "forms": _formdiv,
  9976. "click": function () {
  9977. U.MD.D.I.openApplication(str, obj, info);
  9978. }
  9979. }
  9980. break;
  9981. }
  9982. if (_iframe) {
  9983. if (str == 'CocoPi') {
  9984. _iframe = _formdiv.querySelector('iframe')
  9985. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9986. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9987. })
  9988. if (onloadListener) {
  9989. _iframe.contentDocument.location.reload()
  9990. } else {
  9991. _iframe.contentDocument.location.reload()
  9992. }
  9993. }
  9994. _jie.onclick = async () => {
  9995. let text = ''
  9996. if (aTool == 57) {
  9997. text = _iframe.contentWindow.getLoadXmlStr()
  9998. }
  9999. _loading.style.display = 'flex'
  10000. console.log(_loading);
  10001. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10002. _loading.style.display = 'none'
  10003. let _div = document.createElement('div')
  10004. _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;"
  10005. let _inner = document.createElement('div')
  10006. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10007. _inner.innerHTML = "上传成功"
  10008. _div.appendChild(_inner)
  10009. _iframe.contentWindow.window.document.body.appendChild(_div)
  10010. _div.onclick = () => {
  10011. _iframe.contentWindow.window.document.body.removeChild(_div)
  10012. }
  10013. setTimeout(() => {
  10014. _iframe.contentWindow.window.document.body.removeChild(_div)
  10015. }, 1000);
  10016. }, [], { "type": "POST", "withCredentials": true });
  10017. }
  10018. }
  10019. }
  10020. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10021. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10022. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10023. _userid = student.userid, //登录用户id
  10024. _username = student.student //用户名字
  10025. let _iframe;
  10026. let _cid = cid,
  10027. _stage = stage,
  10028. _task = task,
  10029. _tool = tool;
  10030. var _jie = $$("div", {
  10031. "style": {
  10032. "position": "absolute",
  10033. "bottom": "50px",
  10034. "right": "50px",
  10035. "zIndex": "9999",
  10036. "backgroundColor": "#2268bc",
  10037. "color": "#fff",
  10038. "padding": "12px 20px",
  10039. "cursor": "pointer",
  10040. "borderRadius": "4px",
  10041. },
  10042. "innerHTML": "提交作业"
  10043. })
  10044. let aTool = ''
  10045. let _loading = document.createElement('div')
  10046. _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;"
  10047. // _loading.id = "";
  10048. let _lchild = document.createElement('div')
  10049. let _limg = document.createElement('img')
  10050. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10051. _limg.style = "width: 26px;margin-right: 10px;"
  10052. _lchild.appendChild(_limg)
  10053. let _lspan = document.createElement('span')
  10054. _lspan.innerHTML = "上传中..."
  10055. _lchild.appendChild(_lspan)
  10056. _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%);"
  10057. _loading.appendChild(_lchild)
  10058. var _box = $$('div', {
  10059. "style": {
  10060. "position": "relative",
  10061. "width": "100%",
  10062. "height": "100%",
  10063. },
  10064. })
  10065. _box.appendChild(_loading)
  10066. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10067. switch (str) {
  10068. case "CocoPi":
  10069. aTool = 57;
  10070. _iframe = $$("iframe", {
  10071. "allowpaymentrequest": "allowpaymentrequest",
  10072. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10073. "webkitallowfullscreen": "",
  10074. "mozallowfullscreen": "",
  10075. "frameborder": "no",
  10076. "border": "0",
  10077. "scrolling ": "no",
  10078. "style": {
  10079. "cssText": "border:0;width:100%;height:100%"
  10080. },
  10081. "src": "https://pi.cocorobo.cn/"
  10082. })
  10083. _box.appendChild(_iframe);
  10084. _box.appendChild(_jie);
  10085. _formdiv = new U.UF.UI.form(
  10086. "CocoPi-" + _username,
  10087. _box, {
  10088. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10089. "style": {
  10090. "width": "90%",
  10091. "height": "90%",
  10092. "overflow": 'hidden'
  10093. },
  10094. "onresize": function () { }
  10095. }, {
  10096. closecallback: function () { }
  10097. }, {
  10098. "style": {
  10099. "height": "36px"
  10100. }
  10101. }).form; //创建窗体
  10102. _taskbar = {
  10103. "id": str + _formdiv.id,
  10104. "style": {
  10105. "backgroundImage": "url(/img/icon/cocopi.png)"
  10106. },
  10107. "name": "CocoPi",
  10108. "forms": _formdiv,
  10109. "click": function () {
  10110. U.MD.D.I.openApplication(str, obj, info);
  10111. }
  10112. }
  10113. break;
  10114. }
  10115. if (_iframe) {
  10116. if (str == 'CocoPi') {
  10117. _iframe = _formdiv.querySelector('iframe')
  10118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10119. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10120. })
  10121. if (onloadListener) {
  10122. _iframe.contentDocument.location.reload()
  10123. } else {
  10124. _iframe.contentDocument.location.reload()
  10125. }
  10126. }
  10127. _jie.onclick = async () => {
  10128. let text = ''
  10129. if (aTool == 57) {
  10130. text = _iframe.contentWindow.getLoadXmlStr()
  10131. }
  10132. _loading.style.display = 'flex'
  10133. console.log(_loading);
  10134. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10135. _loading.style.display = 'none'
  10136. let _div = document.createElement('div')
  10137. _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;"
  10138. let _inner = document.createElement('div')
  10139. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10140. _inner.innerHTML = "上传成功"
  10141. _div.appendChild(_inner)
  10142. _iframe.contentWindow.window.document.body.appendChild(_div)
  10143. _div.onclick = () => {
  10144. _iframe.contentWindow.window.document.body.removeChild(_div)
  10145. }
  10146. setTimeout(() => {
  10147. _iframe.contentWindow.window.document.body.removeChild(_div)
  10148. }, 1000);
  10149. }, [], { "type": "POST", "withCredentials": true });
  10150. }
  10151. }
  10152. }
  10153. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10154. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10155. if (res.value[0].length > 0) {
  10156. if (atool == 57) {
  10157. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10158. }
  10159. } else {
  10160. if (atool == 57) {
  10161. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10162. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10163. }
  10164. }
  10165. }, [], { "type": "POST", "withCredentials": true });
  10166. }