DeskTop.js 663 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北师大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北师大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1520. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1522. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. ];
  1525. //010503
  1526. U.MD.D.I.x010503TeacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. ];
  1537. //010503
  1538. U.MD.D.I.x010503StudentDeskIcon = [
  1539. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //SPROUT Lab
  1545. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1553. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //SPROUT Lab
  1557. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1558. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //010204
  1564. U.MD.D.I.x010204TeacherDeskIcon = [
  1565. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204StudentDeskIcon = [
  1570. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. ];
  1575. //trail
  1576. U.MD.D.I.trailTeacherDeskIcon = [
  1577. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1578. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailStudentDeskIcon = [
  1582. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504TeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1592. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1593. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. ];
  1600. //010504
  1601. U.MD.D.I.x010504StudentDeskIcon = [
  1602. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //SCNUET
  1608. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1614. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1615. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1619. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1621. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1622. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1626. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1627. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1628. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1630. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1631. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1632. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1633. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1634. ];
  1635. //SCNUET
  1636. U.MD.D.I.SCNUETAdminDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1641. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1642. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1643. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1644. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1645. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1646. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1647. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1648. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1649. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1650. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1653. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1654. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1655. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1656. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1657. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1658. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1659. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1660. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1661. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1662. ];
  1663. //SCNUET
  1664. U.MD.D.I.SCNUETStudentDeskIcon = [
  1665. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //x020201
  1671. U.MD.D.I.x020201TeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1677. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1680. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1686. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1687. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1688. ];
  1689. //x020201
  1690. U.MD.D.I.x020201AdminDeskIcon = [
  1691. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1692. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1696. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1702. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1708. ];
  1709. //020201
  1710. U.MD.D.I.x020201StudentDeskIcon = [
  1711. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //010611
  1717. U.MD.D.I.x010611TeacherDeskIcon = [
  1718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. ];
  1728. //010611
  1729. U.MD.D.I.x010611StudentDeskIcon = [
  1730. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. ];
  1735. //tianyuan
  1736. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.tianyuanStudentDeskIcon = [
  1751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //#region 桌面初始化a
  1757. /**
  1758. * 初始化桌面的起始函数
  1759. *
  1760. */
  1761. U.MD.D.I.init = function () {
  1762. if ($("#U_MD_D_K")[0]) {
  1763. //初始化桌面图标
  1764. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1765. // var clickUrl = ':12588/requestIp.php';
  1766. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1767. // U.MD.D.I.Ip = data;
  1768. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1769. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1770. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1771. // })
  1772. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1773. // })
  1774. }
  1775. }
  1776. /**
  1777. * 模式切换
  1778. *
  1779. */
  1780. U.MD.D.I.ModeCheck = function (type) {
  1781. if (US.Config.type == type) {
  1782. return
  1783. }
  1784. US.Config.type = type
  1785. $('.U_PBL_Check .active')[0].className = ''
  1786. if (type == 1) {
  1787. $('.U_PBL_Check div')[0].className = 'active'
  1788. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1789. } else {
  1790. $('.U_PBL_Check div')[1].className = 'active'
  1791. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1792. }
  1793. //初始化桌面图标
  1794. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1795. if (type == 2) {
  1796. U.MD.D.I.openApplication("project")
  1797. }
  1798. }
  1799. /**
  1800. * 隐藏任务栏
  1801. *
  1802. * @param {element} 桌面元素
  1803. */
  1804. U.MD.D.I.hiddenTaskbar = function (el) {
  1805. //任务栏位置变小
  1806. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1807. //桌面的位置变大
  1808. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1809. }
  1810. /**
  1811. * 隐藏任务栏
  1812. *
  1813. * @param {element} 桌面元素
  1814. */
  1815. U.MD.D.I.hiddenTaskbarout = function (el) {
  1816. //任务栏位置变小
  1817. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1818. //任务栏位置变化
  1819. U.selectEl(el).css({ "bottom": "-60px" });
  1820. //桌面的位置变大
  1821. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1822. }
  1823. }
  1824. /**
  1825. * 初始化打印桌面图标
  1826. *
  1827. * @param {element} 桌面元素
  1828. */
  1829. U.MD.D.I.initDesktopIcons = function (el, type) {
  1830. var i, //用于循环
  1831. _content, //桌面图标元素
  1832. _iconcontent, //桌面图标元素
  1833. _frag = $$("frag"), //定义一个碎片元素
  1834. _type = US.userInfo.type,
  1835. _org = US.userInfo.org,
  1836. _oid = US.userInfo.organizeid,
  1837. _role = US.userInfo.role,
  1838. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1839. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1840. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1841. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1842. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1843. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1844. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1845. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1846. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1847. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1848. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1849. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1850. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1851. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1852. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1853. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1854. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1855. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1856. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1857. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1858. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1859. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1860. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1861. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1862. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1863. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1864. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1865. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1866. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1867. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1868. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1869. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1870. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1871. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1872. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1873. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1874. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1875. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1876. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1877. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1878. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1879. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1880. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1881. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1882. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1883. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1884. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1885. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1886. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1887. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1888. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1889. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1890. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1891. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1892. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1893. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1894. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1895. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1896. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1897. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1898. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1899. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1900. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1901. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1902. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1903. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1904. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1905. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1906. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1907. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1908. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1909. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1910. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1911. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1912. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1913. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1914. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1915. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1916. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1917. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1918. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1919. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1920. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1921. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1922. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1923. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1924. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1925. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1926. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1927. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1928. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1929. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1930. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1931. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1932. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1933. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1934. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1935. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1936. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1937. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1938. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1939. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1940. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1941. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1942. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1943. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1944. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1945. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1946. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1947. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1948. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1949. 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'];
  1950. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  1951. //清楚桌面图标
  1952. el.innerHTML = "";
  1953. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1954. _teacherDesktopIconInfo.push(
  1955. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1956. { "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)" } },
  1957. )
  1958. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1959. }
  1960. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1961. _teacherDesktopIconInfo.push(
  1962. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1963. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1964. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1965. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1966. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1967. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1968. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1969. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1970. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1971. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1972. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1974. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1975. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1976. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1977. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1979. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1980. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1981. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1982. )
  1983. }
  1984. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1985. _teacherDesktopIconInfo.push(
  1986. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1987. )
  1988. }
  1989. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1990. // _teacherDesktopIconInfo.push(
  1991. // )
  1992. // }
  1993. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1994. _teacherDesktopIconInfo.push(
  1995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1997. )
  1998. }
  1999. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2000. _teacherDesktopIconInfo.push(
  2001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2005. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2006. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2007. )
  2008. _studentDesktopIconInfo.push(
  2009. )
  2010. }
  2011. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2012. _teacherDesktopIconInfo.push(
  2013. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2014. )
  2015. _studentDesktopIconInfo.push(
  2016. )
  2017. }
  2018. //010606 组织
  2019. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2020. _teacherDesktopIconInfo.push(
  2021. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2022. )
  2023. _studentDesktopIconInfo.push(
  2024. )
  2025. }
  2026. //麒麟二中 和 民新小学
  2027. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2028. _teacherDesktopIconInfo.push(
  2029. )
  2030. }
  2031. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2032. _teacherDesktopIconInfo.push(
  2033. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2034. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2035. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. )
  2037. }
  2038. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2039. _hkTeacherDeskIconInfo.push(
  2040. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2041. )
  2042. }
  2043. //北师大附中(010601)
  2044. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2045. // _teacherDesktopIconInfo.push(
  2046. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. // )
  2048. // _studentDesktopIconInfo.push(
  2049. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2050. // )
  2051. // }
  2052. //樂善堂余近卿中學
  2053. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2054. _teacherDesktopIconInfo.push(
  2055. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2056. )
  2057. }
  2058. // Education Artificial Intelligence
  2059. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2060. _teacherDesktopIconInfo.push(
  2061. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2062. )
  2063. }
  2064. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2065. _teacherDesktopIconInfo.push(
  2066. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2067. )
  2068. }
  2069. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2070. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2071. _teacherDesktopIconInfo.push(
  2072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2074. )
  2075. }
  2076. //麒麟二中
  2077. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2078. _studentDesktopIconInfo.push(
  2079. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2080. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2081. )
  2082. }
  2083. //万科双语
  2084. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2085. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2086. if (el.Name == '项目管理') {
  2087. el.Name = 'PBL项目'
  2088. }
  2089. return el
  2090. })
  2091. _studentDesktopIconInfo3.push(
  2092. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2093. )
  2094. }
  2095. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2096. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2097. return el.Name != '魔盒识字' && el.Name != '24点'
  2098. })
  2099. }
  2100. 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) {
  2101. _studentDesktopIconInfo.push(
  2102. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2103. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2104. )
  2105. }
  2106. //循环创建桌面图标
  2107. if (type == 1) {
  2108. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2109. for (i = 0; i < _studentDesktopIconInfo.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. }, [_studentDesktopIconInfo[i]]),
  2116. "onclick": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_studentDesktopIconInfo[i]])
  2120. }, _frag); //
  2121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2124. }
  2125. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2126. for (i = 0; i < _hkZJLSStudentDeskIconInfo.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. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2133. "onclick": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_hkZJLSStudentDeskIconInfo[i]])
  2137. }, _frag); //
  2138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2141. } //
  2142. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2143. for (i = 0; i < _ytyStudentDeskIconInfo.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. }, [_ytyStudentDeskIconInfo[i]]),
  2150. "onclick": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_ytyStudentDeskIconInfo[i]])
  2154. }, _frag); //
  2155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2158. } //
  2159. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2160. for (i = 0; i < _jccssylStudentDeskIconInfo.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. }, [_jccssylStudentDeskIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_jccssylStudentDeskIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2177. for (i = 0; i < _scnuaiStudentDeskIconInfo.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. }, [_scnuaiStudentDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_scnuaiStudentDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2192. }
  2193. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2194. for (i = 0; i < _caleStudentDeskIconInfo.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. }, [_caleStudentDeskIconInfo[i]]),
  2201. "onclick": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_caleStudentDeskIconInfo[i]])
  2205. }, _frag); //
  2206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2209. }
  2210. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2211. for (i = 0; i < _thuioeStudentDeskIconInfo.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. }, [_thuioeStudentDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_thuioeStudentDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2226. }
  2227. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2228. for (i = 0; i < _tpcStudentDeskIconInfo.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. }, [_tpcStudentDeskIconInfo[i]]),
  2235. "onclick": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_tpcStudentDeskIconInfo[i]])
  2239. }, _frag); //
  2240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2243. } //
  2244. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2245. for (i = 0; i < _chjyjStudentDeskIconInfo.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. }, [_chjyjStudentDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_chjyjStudentDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2262. for (i = 0; i < _szjkyStudentDeskIconInfo.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. }, [_szjkyStudentDeskIconInfo[i]]),
  2269. "onclick": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_szjkyStudentDeskIconInfo[i]])
  2273. }, _frag); //
  2274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2277. }
  2278. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2279. for (i = 0; i < _x020201StudentDeskIconInfo.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. }, [_x020201StudentDeskIconInfo[i]]),
  2286. "onclick": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_x020201StudentDeskIconInfo[i]])
  2290. }, _frag); //
  2291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2294. }
  2295. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2296. for (i = 0; i < _SCNUETStudentDeskIconInfo.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. }, [_SCNUETStudentDeskIconInfo[i]]),
  2303. "onclick": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_SCNUETStudentDeskIconInfo[i]])
  2307. }, _frag); //
  2308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2311. }
  2312. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2313. for (i = 0; i < _dseiStudentDeskIconInfo.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. }, [_dseiStudentDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_dseiStudentDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2330. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.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. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2347. for (i = 0; i < _nsfxStudentDeskIconInfo.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. }, [_nsfxStudentDeskIconInfo[i]]),
  2354. "onclick": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_nsfxStudentDeskIconInfo[i]])
  2358. }, _frag); //
  2359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2362. }
  2363. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2364. for (i = 0; i < _stiaStudentDeskIconInfo.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. }, [_stiaStudentDeskIconInfo[i]]),
  2371. "onclick": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_stiaStudentDeskIconInfo[i]])
  2375. }, _frag); //
  2376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2379. }
  2380. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2381. for (i = 0; i < _szdjgStudentDeskIconInfo.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. }, [_szdjgStudentDeskIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_szdjgStudentDeskIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2398. for (i = 0; i < _x010607StudentDeskIconInfo.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. }, [_x010607StudentDeskIconInfo[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_x010607StudentDeskIconInfo[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2413. }
  2414. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2415. for (i = 0; i < _xhlyStudentDeskIconInfo.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. }, [_xhlyStudentDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_xhlyStudentDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2432. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.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. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2447. }
  2448. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2449. for (i = 0; i < _x010503StudentDeskIconInfo.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. }, [_x010503StudentDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010503StudentDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2466. for (i = 0; i < _x010504StudentDeskIconInfo.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. }, [_x010504StudentDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_x010504StudentDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2483. for (i = 0; i < _x010204StudentDeskIconInfo.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. }, [_x010204StudentDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_x010204StudentDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2500. for (i = 0; i < _trailStudentDeskIconInfo.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. }, [_trailStudentDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_trailStudentDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2517. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.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. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2534. for (i = 0; i < _x010608StudentDeskIconInfo.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. }, [_x010608StudentDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010608StudentDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2551. for (i = 0; i < _x010611StudentDeskIconInfo.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. }, [_x010611StudentDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x010611StudentDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2568. for (i = 0; i < _tianyuantudentDeskIconInfo.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. }, [_tianyuantudentDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_tianyuantudentDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2585. for (i = 0; i < _siesStudentDeskIconInfo.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. }, [_siesStudentDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_siesStudentDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2602. for (i = 0; i < _guzmsStudentDeskIconInfo.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. }, [_guzmsStudentDeskIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_guzmsStudentDeskIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2619. for (i = 0; i < _hkStudentDeskIconInfo.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. }, [_hkStudentDeskIconInfo[i]]),
  2626. "onclick": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_hkStudentDeskIconInfo[i]])
  2630. }, _frag); //
  2631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2634. }
  2635. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2636. for (i = 0; i < _hkaceStudentDeskIconInfo.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. }, [_hkaceStudentDeskIconInfo[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_hkaceStudentDeskIconInfo[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2651. }
  2652. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2653. for (i = 0; i < _BSDNSstudentDesktopIconInfo.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. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_BSDNSstudentDesktopIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2670. for (i = 0; i < _cocobizStudentDeskIconInfo.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. }, [_cocobizStudentDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_cocobizStudentDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2685. }
  2686. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2687. for (i = 0; i < _xxzjkyStudentDeskIconInfo.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. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_xxzjkyStudentDeskIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2704. for (i = 0; i < _studentDesktopIconInfo.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. }, [_studentDesktopIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_studentDesktopIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2721. for (i = 0; i < _tcStudentDeskIconInfo.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. }, [_tcStudentDeskIconInfo[i]]),
  2728. "onclick": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_tcStudentDeskIconInfo[i]])
  2732. }, _frag); //
  2733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2736. }
  2737. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2738. for (i = 0; i < _szscStudentDeskIconInfo.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. }, [_szscStudentDeskIconInfo[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_szscStudentDeskIconInfo[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2753. }
  2754. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2755. for (i = 0; i < _studentDesktopIconInfo3.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. }, [_studentDesktopIconInfo3[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_studentDesktopIconInfo3[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2770. }
  2771. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2772. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_studentDesktopIconInfo2[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_studentDesktopIconInfo2[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2787. }
  2788. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2789. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2790. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2791. continue
  2792. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_wanketeacherDesktopIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2809. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_wankeAdminDesktopIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_wankeAdminDesktopIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2826. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2827. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2828. continue
  2829. }
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_scnuaiTeacherDeskIconInfo[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2844. }
  2845. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2846. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2847. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2848. continue
  2849. }
  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. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_BSDNSteacherDesktopIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2866. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_scnuaiAdminDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_scnuaiAdminDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2883. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2884. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2885. continue
  2886. }
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_jccssylTeacherDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_jccssylTeacherDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2903. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2904. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2905. continue
  2906. }
  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. }, [_caleTeacherDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_caleTeacherDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2923. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_tpcOrganizerDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_tpcOrganizerDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2940. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2941. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2942. continue
  2943. }
  2944. _content = $$("div", {
  2945. className: "U_MD_D_KO",
  2946. "onmousedown": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_tpcTeacherDeskIconInfo[i]]),
  2950. "onclick": U.UF.C.closure(function (obj) {
  2951. //防止拖动图标即打开了桌面应用
  2952. U.MD.D.click(this, obj);
  2953. }, [_tpcTeacherDeskIconInfo[i]])
  2954. }, _frag); //
  2955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2958. }
  2959. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2960. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2961. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2962. continue
  2963. }
  2964. _content = $$("div", {
  2965. className: "U_MD_D_KO",
  2966. "onmousedown": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_teacherDesktopIconInfo2[i]]),
  2970. "onclick": U.UF.C.closure(function (obj) {
  2971. //防止拖动图标即打开了桌面应用
  2972. U.MD.D.click(this, obj);
  2973. }, [_teacherDesktopIconInfo2[i]])
  2974. }, _frag); //
  2975. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2976. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2977. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2978. }
  2979. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2980. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2981. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2982. continue
  2983. }
  2984. _content = $$("div", {
  2985. className: "U_MD_D_KO",
  2986. "onmousedown": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_thuioeTeacherDeskIconInfo[i]]),
  2990. "onclick": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_thuioeTeacherDeskIconInfo[i]])
  2994. }, _frag); //
  2995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2998. }
  2999. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3000. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3001. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3002. continue
  3003. }
  3004. _content = $$("div", {
  3005. className: "U_MD_D_KO",
  3006. "onmousedown": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_lotechTeacherDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_lotechTeacherDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3018. }//
  3019. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3020. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3021. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3022. continue
  3023. }
  3024. _content = $$("div", {
  3025. className: "U_MD_D_KO",
  3026. "onmousedown": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3030. "onclick": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3034. }, _frag); //
  3035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3038. }
  3039. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3040. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3041. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3042. continue
  3043. }
  3044. _content = $$("div", {
  3045. className: "U_MD_D_KO",
  3046. "onmousedown": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_siesTeacherDeskIconInfo[i]]),
  3050. "onclick": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_siesTeacherDeskIconInfo[i]])
  3054. }, _frag); //
  3055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3058. }
  3059. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3060. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3061. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3062. continue
  3063. }
  3064. _content = $$("div", {
  3065. className: "U_MD_D_KO",
  3066. "onmousedown": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_guzmsTeacherDeskIconInfo[i]]),
  3070. "onclick": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_guzmsTeacherDeskIconInfo[i]])
  3074. }, _frag); //
  3075. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3076. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3077. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3078. }
  3079. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3080. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3081. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3082. continue
  3083. }
  3084. _content = $$("div", {
  3085. className: "U_MD_D_KO",
  3086. "onmousedown": U.UF.C.closure(function (obj) {
  3087. //防止拖动图标即打开了桌面应用
  3088. U.MD.D.click(this, obj);
  3089. }, [_longhuaTeacherDeskIconInfo[i]]),
  3090. "onclick": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_longhuaTeacherDeskIconInfo[i]])
  3094. }, _frag); //
  3095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3098. }
  3099. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3100. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3101. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3102. continue
  3103. }
  3104. _content = $$("div", {
  3105. className: "U_MD_D_KO",
  3106. "onmousedown": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_ytyTeacherDeskIconInfo[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_ytyTeacherDeskIconInfo[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3118. }
  3119. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3120. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3121. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3122. continue
  3123. }
  3124. _content = $$("div", {
  3125. className: "U_MD_D_KO",
  3126. "onmousedown": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3130. "onclick": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_yunhaiTeacherDeskIconInfo[i]])
  3134. }, _frag); //
  3135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3138. } //_hkStudentDeskIconInfo
  3139. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3140. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3141. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3142. continue
  3143. }
  3144. _content = $$("div", {
  3145. className: "U_MD_D_KO",
  3146. "onmousedown": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3150. "onclick": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3154. }, _frag); //
  3155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3158. }
  3159. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3160. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3161. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3162. continue
  3163. }
  3164. _content = $$("div", {
  3165. className: "U_MD_D_KO",
  3166. "onmousedown": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_hkTeacherDeskIconInfo[i]]),
  3170. "onclick": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_hkTeacherDeskIconInfo[i]])
  3174. }, _frag); //
  3175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3178. }
  3179. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3180. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3181. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3182. continue
  3183. }
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_hkaceTeacherDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_hkaceTeacherDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3200. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3201. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3202. continue
  3203. }
  3204. _content = $$("div", {
  3205. className: "U_MD_D_KO",
  3206. "onmousedown": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_cocobizTeacherDeskIconInfo[i]]),
  3210. "onclick": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_cocobizTeacherDeskIconInfo[i]])
  3214. }, _frag); //
  3215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3218. }
  3219. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3220. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3221. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3222. continue
  3223. }
  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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3230. "onclick": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3234. }, _frag); //
  3235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3238. }
  3239. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3240. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3241. _content = $$("div", {
  3242. className: "U_MD_D_KO",
  3243. "onmousedown": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_gdjgAdminDeskIconInfo[i]]),
  3247. "onclick": U.UF.C.closure(function (obj) {
  3248. //防止拖动图标即打开了桌面应用
  3249. U.MD.D.click(this, obj);
  3250. }, [_gdjgAdminDeskIconInfo[i]])
  3251. }, _frag); //
  3252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3255. }
  3256. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3257. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3258. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3259. continue
  3260. }
  3261. _content = $$("div", {
  3262. className: "U_MD_D_KO",
  3263. "onmousedown": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_gdjgTeacherDeskIconInfo[i]]),
  3267. "onclick": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_gdjgTeacherDeskIconInfo[i]])
  3271. }, _frag); //
  3272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3275. }
  3276. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3277. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3278. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3279. continue
  3280. }
  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. }, [_szherTeacherDeskIconInfo[i]]),
  3287. "onclick": U.UF.C.closure(function (obj) {
  3288. //防止拖动图标即打开了桌面应用
  3289. U.MD.D.click(this, obj);
  3290. }, [_szherTeacherDeskIconInfo[i]])
  3291. }, _frag); //
  3292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3295. }
  3296. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3297. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_heyuannAdminDeskIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_heyuannAdminDeskIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3314. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3315. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3316. continue
  3317. }
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3324. "onclick": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_heyuanTeacherDeskIconInfo[i]])
  3328. }, _frag); //
  3329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3332. } //
  3333. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3334. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_dseiAdminDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_dseiAdminDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3351. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3352. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3353. continue
  3354. }
  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. }, [_dseiTeacherDeskIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_dseiTeacherDeskIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3369. } //
  3370. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3371. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_chjyjAdminDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_chjyjAdminDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3386. }//
  3387. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3388. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3390. continue
  3391. }
  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. }, [_chjyjTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_chjyjTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3408. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_szjkyAdminDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_szjkyAdminDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3423. }//
  3424. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3425. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  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. }, [_szjkyTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_szjkyTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3445. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_x020201AdminDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_x020201AdminDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3460. }//
  3461. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3462. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3463. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3464. continue
  3465. }
  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. }, [_x020201TeacherDeskIconInfo[i]]),
  3472. "onclick": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_x020201TeacherDeskIconInfo[i]])
  3476. }, _frag); //
  3477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3480. }
  3481. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3482. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_SCNUETAdminDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_SCNUETAdminDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3497. }//
  3498. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3499. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3500. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3501. continue
  3502. }
  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. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3509. "onclick": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_SCNUETTeacherDeskIconInfo[i]])
  3513. }, _frag); //
  3514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3517. }
  3518. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3519. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3520. _content = $$("div", {
  3521. className: "U_MD_D_KO",
  3522. "onmousedown": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_futianAdminDeskIconInfo[i]]),
  3526. "onclick": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_futianAdminDeskIconInfo[i]])
  3530. }, _frag); //
  3531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3534. }
  3535. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3536. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3537. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3538. continue
  3539. }
  3540. _content = $$("div", {
  3541. className: "U_MD_D_KO",
  3542. "onmousedown": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_futianTeacherDeskIconInfo[i]]),
  3546. "onclick": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_futianTeacherDeskIconInfo[i]])
  3550. }, _frag); //
  3551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3554. }
  3555. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3556. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3557. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3558. continue
  3559. }
  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. }, [_MingdeTeacherDeskIcon[i]]),
  3566. "onclick": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_MingdeTeacherDeskIcon[i]])
  3570. }, _frag); //
  3571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3574. }
  3575. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3576. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_lhsAdminDesktopIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_lhsAdminDesktopIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3593. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3594. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3595. continue
  3596. }
  3597. _content = $$("div", {
  3598. className: "U_MD_D_KO",
  3599. "onmousedown": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_lhsteacherDesktopIconInfo[i]]),
  3603. "onclick": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_lhsteacherDesktopIconInfo[i]])
  3607. }, _frag); //
  3608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3611. }
  3612. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3613. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3614. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3615. continue
  3616. }
  3617. _content = $$("div", {
  3618. className: "U_MD_D_KO",
  3619. "onmousedown": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3623. "onclick": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_zhoujiateacherDesktopIconInfo[i]])
  3627. }, _frag); //
  3628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3631. }
  3632. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3633. for (i = 0; i < _hanDeskIcon.length; i++) {
  3634. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3635. continue
  3636. }
  3637. _content = $$("div", {
  3638. className: "U_MD_D_KO",
  3639. "onmousedown": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_hanDeskIcon[i]]),
  3643. "onclick": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_hanDeskIcon[i]])
  3647. }, _frag); //
  3648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3651. }
  3652. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3653. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3654. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3655. continue
  3656. }
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_orgStemDeskIcon[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_orgStemDeskIcon[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3671. }
  3672. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3673. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3674. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_szulsDeskIcon[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_szulsDeskIcon[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3693. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3694. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3695. continue
  3696. }
  3697. _content = $$("div", {
  3698. className: "U_MD_D_KO",
  3699. "onmousedown": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_orgDesktopIconInfo[i]]),
  3703. "onclick": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_orgDesktopIconInfo[i]])
  3707. }, _frag); //
  3708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3711. }
  3712. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3713. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3714. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3715. continue
  3716. }
  3717. _content = $$("div", {
  3718. className: "U_MD_D_KO",
  3719. "onmousedown": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_schoolDesktopIconInfo[i]]),
  3723. "onclick": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_schoolDesktopIconInfo[i]])
  3727. }, _frag); //
  3728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3731. }
  3732. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3733. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3734. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3735. continue
  3736. }
  3737. _content = $$("div", {
  3738. className: "U_MD_D_KO",
  3739. "onmousedown": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_GMteacherDesktopIconInfo[i]]),
  3743. "onclick": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_GMteacherDesktopIconInfo[i]])
  3747. }, _frag); //
  3748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3751. }
  3752. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3753. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3754. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3755. continue
  3756. }
  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. }, [_SONGteacherDesktopIconInfo[i]]),
  3763. "onclick": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_SONGteacherDesktopIconInfo[i]])
  3767. }, _frag); //
  3768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3771. }
  3772. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3773. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3774. _content = $$("div", {
  3775. className: "U_MD_D_KO",
  3776. "onmousedown": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_GMstudentDesktopIconInfo[i]]),
  3780. "onclick": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_GMstudentDesktopIconInfo[i]])
  3784. }, _frag); //
  3785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3788. }
  3789. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3790. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3791. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3792. continue
  3793. }
  3794. _content = $$("div", {
  3795. className: "U_MD_D_KO",
  3796. "onmousedown": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_tcTeacherDeskIconInfo[i]]),
  3800. "onclick": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_tcTeacherDeskIconInfo[i]])
  3804. }, _frag); //
  3805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3808. }
  3809. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3810. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3811. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3812. continue
  3813. }
  3814. _content = $$("div", {
  3815. className: "U_MD_D_KO",
  3816. "onmousedown": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_tcOrganizerDeskIconInfo[i]]),
  3820. "onclick": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_tcOrganizerDeskIconInfo[i]])
  3824. }, _frag); //
  3825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3828. }
  3829. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3830. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3831. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3832. continue
  3833. }
  3834. _content = $$("div", {
  3835. className: "U_MD_D_KO",
  3836. "onmousedown": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_szscTeacherDeskIconInfo[i]]),
  3840. "onclick": U.UF.C.closure(function (obj) {
  3841. //防止拖动图标即打开了桌面应用
  3842. U.MD.D.click(this, obj);
  3843. }, [_szscTeacherDeskIconInfo[i]])
  3844. }, _frag); //
  3845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3848. }
  3849. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3850. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3851. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3852. continue
  3853. }
  3854. _content = $$("div", {
  3855. className: "U_MD_D_KO",
  3856. "onmousedown": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_szscOrganizerDeskIconInfo[i]]),
  3860. "onclick": U.UF.C.closure(function (obj) {
  3861. //防止拖动图标即打开了桌面应用
  3862. U.MD.D.click(this, obj);
  3863. }, [_szscOrganizerDeskIconInfo[i]])
  3864. }, _frag); //
  3865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3868. }
  3869. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3870. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3871. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3872. continue
  3873. }
  3874. _content = $$("div", {
  3875. className: "U_MD_D_KO",
  3876. "onmousedown": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_nsfxTeacherDeskIconInfo[i]]),
  3880. "onclick": U.UF.C.closure(function (obj) {
  3881. //防止拖动图标即打开了桌面应用
  3882. U.MD.D.click(this, obj);
  3883. }, [_nsfxTeacherDeskIconInfo[i]])
  3884. }, _frag); //
  3885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3888. }
  3889. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3890. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3891. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3892. continue
  3893. }
  3894. _content = $$("div", {
  3895. className: "U_MD_D_KO",
  3896. "onmousedown": U.UF.C.closure(function (obj) {
  3897. //防止拖动图标即打开了桌面应用
  3898. U.MD.D.click(this, obj);
  3899. }, [_stiaTeacherDeskIconInfo[i]]),
  3900. "onclick": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_stiaTeacherDeskIconInfo[i]])
  3904. }, _frag); //
  3905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3908. }
  3909. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3910. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3911. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3912. continue
  3913. }
  3914. _content = $$("div", {
  3915. className: "U_MD_D_KO",
  3916. "onmousedown": U.UF.C.closure(function (obj) {
  3917. //防止拖动图标即打开了桌面应用
  3918. U.MD.D.click(this, obj);
  3919. }, [_szdjgTeacherDeskIconInfo[i]]),
  3920. "onclick": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_szdjgTeacherDeskIconInfo[i]])
  3924. }, _frag); //
  3925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3928. }
  3929. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3930. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3931. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3932. continue
  3933. }
  3934. _content = $$("div", {
  3935. className: "U_MD_D_KO",
  3936. "onmousedown": U.UF.C.closure(function (obj) {
  3937. //防止拖动图标即打开了桌面应用
  3938. U.MD.D.click(this, obj);
  3939. }, [_x010607TeacherDeskIconInfo[i]]),
  3940. "onclick": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_x010607TeacherDeskIconInfo[i]])
  3944. }, _frag); //
  3945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3948. }
  3949. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3950. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3951. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3952. continue
  3953. }
  3954. _content = $$("div", {
  3955. className: "U_MD_D_KO",
  3956. "onmousedown": U.UF.C.closure(function (obj) {
  3957. //防止拖动图标即打开了桌面应用
  3958. U.MD.D.click(this, obj);
  3959. }, [_xhlyTeacherDeskIconInfo[i]]),
  3960. "onclick": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_xhlyTeacherDeskIconInfo[i]])
  3964. }, _frag); //
  3965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3968. }
  3969. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3970. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3971. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3972. continue
  3973. }
  3974. _content = $$("div", {
  3975. className: "U_MD_D_KO",
  3976. "onmousedown": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3980. "onclick": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3984. }, _frag); //
  3985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3988. }
  3989. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3990. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3991. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3992. continue
  3993. }
  3994. _content = $$("div", {
  3995. className: "U_MD_D_KO",
  3996. "onmousedown": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_x010503TeacherDeskIconInfo[i]]),
  4000. "onclick": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_x010503TeacherDeskIconInfo[i]])
  4004. }, _frag); //
  4005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4008. }
  4009. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4010. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4011. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4012. continue
  4013. }
  4014. _content = $$("div", {
  4015. className: "U_MD_D_KO",
  4016. "onmousedown": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_x010504TeacherDeskIconInfo[i]]),
  4020. "onclick": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_x010504TeacherDeskIconInfo[i]])
  4024. }, _frag); //
  4025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4028. }
  4029. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4030. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4031. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4032. continue
  4033. }
  4034. _content = $$("div", {
  4035. className: "U_MD_D_KO",
  4036. "onmousedown": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_x010204TeacherDeskIconInfo[i]]),
  4040. "onclick": U.UF.C.closure(function (obj) {
  4041. //防止拖动图标即打开了桌面应用
  4042. U.MD.D.click(this, obj);
  4043. }, [_x010204TeacherDeskIconInfo[i]])
  4044. }, _frag); //
  4045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4048. }
  4049. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4050. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4051. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4052. continue
  4053. }
  4054. _content = $$("div", {
  4055. className: "U_MD_D_KO",
  4056. "onmousedown": U.UF.C.closure(function (obj) {
  4057. //防止拖动图标即打开了桌面应用
  4058. U.MD.D.click(this, obj);
  4059. }, [_trailTeacherDeskIconInfo[i]]),
  4060. "onclick": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_trailTeacherDeskIconInfo[i]])
  4064. }, _frag); //
  4065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4068. }
  4069. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4070. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4071. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4072. continue
  4073. }
  4074. _content = $$("div", {
  4075. className: "U_MD_D_KO",
  4076. "onmousedown": U.UF.C.closure(function (obj) {
  4077. //防止拖动图标即打开了桌面应用
  4078. U.MD.D.click(this, obj);
  4079. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4080. "onclick": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4084. }, _frag); //
  4085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4088. }
  4089. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4090. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4091. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4092. continue
  4093. }
  4094. _content = $$("div", {
  4095. className: "U_MD_D_KO",
  4096. "onmousedown": U.UF.C.closure(function (obj) {
  4097. //防止拖动图标即打开了桌面应用
  4098. U.MD.D.click(this, obj);
  4099. }, [_x010608TeacherDeskIconInfo[i]]),
  4100. "onclick": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_x010608TeacherDeskIconInfo[i]])
  4104. }, _frag); //
  4105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4108. }
  4109. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4110. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4111. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4112. continue
  4113. }
  4114. _content = $$("div", {
  4115. className: "U_MD_D_KO",
  4116. "onmousedown": U.UF.C.closure(function (obj) {
  4117. //防止拖动图标即打开了桌面应用
  4118. U.MD.D.click(this, obj);
  4119. }, [_x010611TeacherDeskIconInfo[i]]),
  4120. "onclick": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_x010611TeacherDeskIconInfo[i]])
  4124. }, _frag); //
  4125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4128. }
  4129. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4130. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4131. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4132. continue
  4133. }
  4134. _content = $$("div", {
  4135. className: "U_MD_D_KO",
  4136. "onmousedown": U.UF.C.closure(function (obj) {
  4137. //防止拖动图标即打开了桌面应用
  4138. U.MD.D.click(this, obj);
  4139. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4140. "onclick": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_tianyuanTeacherDeskIconInfo[i]])
  4144. }, _frag); //
  4145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4148. }
  4149. } else {
  4150. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4151. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4152. continue
  4153. }
  4154. _content = $$("div", {
  4155. className: "U_MD_D_KO",
  4156. "onmousedown": U.UF.C.closure(function (obj) {
  4157. //防止拖动图标即打开了桌面应用
  4158. U.MD.D.click(this, obj);
  4159. }, [_teacherDesktopIconInfo[i]]),
  4160. "onclick": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_teacherDesktopIconInfo[i]])
  4164. }, _frag); //
  4165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4168. }
  4169. }
  4170. } else {
  4171. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4172. _content = $$("div", {
  4173. className: "U_MD_D_KO",
  4174. style: { 'width': '124px', 'height': '145px' },
  4175. "onmousedown": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_easyDesktopIconInfo[i]]),
  4179. "onclick": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_easyDesktopIconInfo[i]])
  4183. }, _frag); //
  4184. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4187. }
  4188. }
  4189. if (type == 1) {
  4190. //加载好后给图标定位
  4191. U.MD.D.iconPostion($(_frag).Child());
  4192. } else {
  4193. //加载好后给图标定位
  4194. U.MD.D.iconPostion2($(_frag).Child());
  4195. }
  4196. //把图标加载到页面
  4197. el.appendChild(_frag);
  4198. }
  4199. /**
  4200. * 显示任务栏
  4201. *
  4202. * @param {element} 桌面元素
  4203. */
  4204. U.MD.D.I.displayTaskbar = function (el) {
  4205. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4206. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4207. //任务栏位置变化
  4208. U.selectEl(el).css({ "bottom": "0px" });
  4209. //桌面位置变话
  4210. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4211. }
  4212. }
  4213. //#region 桌面图标拖动逻辑
  4214. /**
  4215. * 桌面排列图标
  4216. *
  4217. * @param {element} 桌面元素
  4218. * @param {object} 上下相距的距离
  4219. * @param {object} 左右相距的距离
  4220. * @return {object} 命名空间
  4221. */
  4222. U.MD.D.iconPostion = function (childs, top, left) {
  4223. var i; //用于循环处理
  4224. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4225. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4226. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4227. for (i = 0; i < childs.length; i++) {
  4228. //如果竖排top超过了范围处理
  4229. if (top + 95 > US.height - 10) {
  4230. //left超过了页面范围处理,则向上重叠打印处理
  4231. if ((left + 180) > US.width) {
  4232. top -= 110;
  4233. left -= 90;
  4234. }
  4235. //没有超过范围,那么left+90添加到下一个竖排打印
  4236. else {
  4237. left += 90;
  4238. top = 15;
  4239. };
  4240. }
  4241. //给图标的位置赋值
  4242. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4243. if (i < childs.length - 1) {
  4244. //页面图标每次向下加95
  4245. top += 95;
  4246. }
  4247. }
  4248. //返回最后调用的图标的位置
  4249. return [top, left];
  4250. }
  4251. /**
  4252. * 桌面排列图标
  4253. *
  4254. * @param {element} 桌面元素
  4255. * @param {object} 上下相距的距离
  4256. * @param {object} 左右相距的距离
  4257. * @return {object} 命名空间
  4258. */
  4259. U.MD.D.iconPostion2 = function (childs, top, left) {
  4260. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4261. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4262. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4263. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4264. for (i = 0; i < childs.length; i++) {
  4265. //如果竖排top超过了范围处理
  4266. if (left + 150 > US.width - 10) {
  4267. //left超过了页面范围处理,则向上重叠打印处理
  4268. if ((top + 180) > US.Height) {
  4269. top -= 150;
  4270. left -= 150;
  4271. }
  4272. //没有超过范围,那么left+90添加到下一个竖排打印
  4273. else {
  4274. top += 150;
  4275. left = ol;
  4276. };
  4277. }
  4278. //给图标的位置赋值
  4279. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4280. if (i < childs.length - 1) {
  4281. //页面图标每次向下加95
  4282. left += 150;
  4283. }
  4284. }
  4285. //返回最后调用的图标的位置
  4286. return [top, left];
  4287. }
  4288. /**
  4289. * 桌面点击事件逻辑
  4290. *
  4291. * @param {element} 桌面元素
  4292. * @param {object} 上下相距的距离
  4293. * @param {object} 左右相距的距离
  4294. * @return {object} 命名空间
  4295. */
  4296. U.MD.D.click = function (el, obj) {
  4297. var _buttonnumber = event.button; //点击的按钮的事件值
  4298. var _userinfo = US.userInfo;
  4299. U.UF.EV.stopBubble(); //阻止向上冒泡
  4300. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4301. if (_buttonnumber < 2) {
  4302. //如果是click事件的处理
  4303. if (event.type == "click") {
  4304. //如果元素在mousemove事件中没有移动则出发click事件
  4305. if (!U.MD.D.I.IsDrag) {
  4306. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4307. U.alert("请先登录您的账号!");
  4308. setTimeout(() => {
  4309. U.MD.U.L.login();
  4310. }, 2000);
  4311. } else {
  4312. //打开应用处理
  4313. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4314. }
  4315. }
  4316. }
  4317. //如果是mouse事件的处理
  4318. else {
  4319. if (US.Config.type == '1') {
  4320. //拖动处理,添加拖动和拖动结束事件
  4321. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4322. }
  4323. }
  4324. U.MD.D.I.IsDrag = false;
  4325. }
  4326. }
  4327. /**
  4328. * 拖动的处理
  4329. *
  4330. */
  4331. U.MD.D.iconMove = function () {
  4332. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4333. U.MD.D.I.IsDrag = true;
  4334. }
  4335. /**
  4336. * 拖动结束后,这里是定位处理,以网状的形式定位
  4337. *
  4338. * @param {element} 拖动的元素
  4339. * @return {object} 命名空间
  4340. */
  4341. U.MD.D.iconUp = function (el) {
  4342. var _top = 15,
  4343. _left = 20,
  4344. _margin,
  4345. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4346. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4347. if (_positioninfo["OT"] > 15) {
  4348. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4349. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4350. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4351. }
  4352. if (_positioninfo["OL"] > 20) {
  4353. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4354. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4355. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4356. }
  4357. //while循环判断么一个重叠的元素
  4358. do {
  4359. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4360. _top = _positioninfo[0] + 95; //得到定位后的top
  4361. _left = _positioninfo[1]; //得到定位后的left
  4362. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4363. }
  4364. /**
  4365. * 判断拖动后图标是否重叠
  4366. *
  4367. * @param {element} 拖动的元素
  4368. * @param {element} 桌面所有的元素
  4369. * @param {array} 拖动元素的位置
  4370. ----------[0] 上 top
  4371. ----------[1] 左 left
  4372. * @return {object} 命名空间
  4373. */
  4374. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4375. //循环所有的图标
  4376. for (var i = 0; i < childs.length; i++) {
  4377. //判断有没有和该图标诶子重叠的元素
  4378. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4379. return childs[i]; //如果有返回
  4380. }
  4381. }
  4382. }
  4383. //#endregion
  4384. //#endregion
  4385. //#region 桌面应用
  4386. /**
  4387. * 打开应用
  4388. *
  4389. * @param {string} 类型
  4390. -----------------Disk 网盘系统
  4391. -----------------PDisk 学习系统网盘
  4392. -----------------Poto 图片
  4393. -----------------Video 视频
  4394. -----------------Music 音乐
  4395. -----------------Word word
  4396. -----------------Excel excel
  4397. -----------------Txt 记事本
  4398. -----------------PB 学习系统
  4399. -----------------Blog 朋友圈系统
  4400. -----------------FTP ftp系统
  4401. -----------------Group 好友群
  4402. -----------------SY 首页系统
  4403. -----------------Set 个人设置
  4404. -----------------XSet 系统设置
  4405. -----------------App 我们所有的app
  4406. -----------------BC c.1473.cn 平台
  4407. -----------------CWeb d.1473.cn 变成平台
  4408. -----------------其他的外联系统 我们统一用iframe打开
  4409. * @param {array} 类型
  4410. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4411. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4412. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4413. 如果第一个参数为其他,则无第二个参数
  4414. * @returns {array}
  4415. */
  4416. window.addEventListener('message', function (e) { // 监听 message 事件
  4417. // alert(e.data.type);
  4418. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4420. //3是展示全部阶段 2学生 1老师 4专家
  4421. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4423. //3是展示全部阶段 2学生 1老师 4专家
  4424. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4426. //3是展示全部阶段 2学生 1老师 4专家
  4427. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4428. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4430. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4431. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4433. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4435. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4436. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4437. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4438. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4439. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4440. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4441. //3是展示全部阶段 2学生 1老师 4专家
  4442. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4443. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4444. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4445. U.MD.D.I.selectUser();
  4446. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4447. var _formel = document.getElementById("study");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4450. var _formel = document.getElementById("studyDetail");
  4451. U.UF.F.windowZooming(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4453. var _formel = document.getElementById("studyDetail");
  4454. U.UF.F.windowZooming(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4456. var _formel = document.getElementById("studentStudy");
  4457. U.UF.F.windowZooming(_formel);
  4458. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4459. // var _formel = document.getElementById("study");
  4460. //如果最大化了,那么就把他缩小
  4461. // if (_formel.ismaximize) {
  4462. // return;
  4463. // }
  4464. // U.UF.F.windowZooming(_formel);
  4465. // U.UF.F.topWindow(_formel);
  4466. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4467. // var _formel = document.getElementById("studyDetail");
  4468. //如果最大化了,那么就把他缩小
  4469. // if (_formel.ismaximize) {
  4470. // return;
  4471. // }
  4472. // U.UF.F.windowZooming(_formel);
  4473. // U.UF.F.topWindow(_formel);
  4474. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4475. // var _formel = document.getElementById("studentStudy");
  4476. // if (_formel.ismaximize) {
  4477. // return;
  4478. // }
  4479. // U.UF.F.windowZooming(_formel);
  4480. // U.UF.F.topWindow(_formel);
  4481. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4482. var _formel = document.getElementById("study");
  4483. // if (_formel.ismaximize) {
  4484. // return;
  4485. // }
  4486. // U.UF.F.windowZooming(_formel);
  4487. U.UF.F.topWindow(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4489. var _formel = document.getElementById("studentIndex");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4492. var _formel = document.getElementById("studyDetailS");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4495. var _formel = document.getElementById("studioIndex");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4498. var _formel = document.getElementById("studyDetailStudio");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4501. var _formel = document.getElementById("studyDetailStudio");
  4502. U.UF.F.windowZooming(_formel);
  4503. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4504. var _formel = document.getElementById("studyDetailNT");
  4505. U.UF.F.windowZooming(_formel);
  4506. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4507. var _formel = document.getElementById("studyDetailS");
  4508. U.UF.F.windowZooming(_formel);
  4509. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4510. var _formel = document.getElementById("studyDetailS");
  4511. U.UF.F.topWindow(_formel);
  4512. } else if (e.data.tools && e.data.tools == "1") {
  4513. // U.MD.D.I.openApplication("whiteboard")
  4514. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4515. } else if (e.data.tools && e.data.tools == "2") {
  4516. U.MD.D.I.openApplication("note")
  4517. } else if (e.data.tools && e.data.tools == "3") {
  4518. // U.MD.D.I.openApplication("mind")
  4519. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4520. } else if (e.data.tools && e.data.tools == "4") {
  4521. U.MD.D.I.openApplication("investigation")
  4522. } else if (e.data.tools && e.data.tools == "6") {
  4523. // U.MD.D.I.openApplication("doc")
  4524. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4525. } else if (e.data.tools && e.data.tools == "7") {
  4526. // U.MD.D.I.openApplication("mindNetwork")
  4527. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4528. } else if (e.data.tools && e.data.tools == "8") {
  4529. U.MD.D.I.openApplication("library")
  4530. } else if (e.data.tools && e.data.tools == "17") {
  4531. U.MD.D.I.openApplication("stuLibrary")
  4532. } else if (e.data.tools && e.data.tools == "18") {
  4533. U.MD.D.I.openApplication("train")
  4534. } else if (e.data.tools && e.data.tools == "21") {
  4535. U.MD.D.I.openApplication("program")
  4536. } else if (e.data.tools && e.data.tools == "22") {
  4537. U.MD.D.I.openApplication("AIprogram2")
  4538. } else if (e.data.tools && e.data.tools == "23") {
  4539. U.MD.D.I.openApplication("Pythonprogram")
  4540. } else if (e.data.tools && e.data.tools == "24") {
  4541. U.MD.D.I.openApplication("AIprogram")
  4542. } else if (e.data.tools && e.data.tools == "25") {
  4543. U.MD.D.I.openApplication("sys")
  4544. } else if (e.data.tools && e.data.tools == "26") {
  4545. // U.MD.D.I.openApplication("courseDesign")
  4546. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4547. } else if (e.data.tools && e.data.tools == "31") {
  4548. U.MD.D.I.openApplication("netWorkPanel")
  4549. } else if (e.data.tools && e.data.tools == "32") {
  4550. U.MD.D.I.openApplication("codeEdit")
  4551. } else if (e.data.tools && e.data.tools == "57") {
  4552. U.MD.D.I.openApplication("CocoPi")
  4553. } else if (e.data.tools && e.data.tools == "63") {
  4554. U.MD.D.I.openApplication("Wood")
  4555. } else if (e.data.tools && e.data.tools == "58") {
  4556. U.MD.D.I.openApplication("car")
  4557. } else if (e.data.tools && e.data.tools == "59") {
  4558. U.MD.D.I.openApplication("lineSearch")
  4559. } else if (e.data.tools && e.data.tools == "60") {
  4560. U.MD.D.I.openApplication("deepLearning")
  4561. } else if (e.data.tools && e.data.tools == "61") {
  4562. U.MD.D.I.openApplication("allHistory")
  4563. } else if (e.data.tools && e.data.tools == "28") {
  4564. U.MD.D.I.openApplication("translation")
  4565. } else if (e.data.tools && e.data.tools == "37") {
  4566. U.MD.D.I.openApplication("mohe")
  4567. } else if (e.data.tools && e.data.tools == "38") {
  4568. U.MD.D.I.openApplication("24game")
  4569. } else if (e.data.tools && e.data.tools == "39") {
  4570. U.MD.D.I.openApplication("GeoGebra")
  4571. } else if (e.data.tools && e.data.tools == "43") {
  4572. U.MD.D.I.openApplication("studentEvaluate")
  4573. } else if (e.data.tools && e.data.tools == "44") {
  4574. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4575. } else if (e.data.tools && e.data.tools == "46") {
  4576. U.MD.D.I.openApplication("project")
  4577. } else if (e.data.tools && e.data.tools == "71") {
  4578. U.MD.D.I.openApplication("aigptCourse")
  4579. } else if (e.data.tools && e.data.tools == "1s") {
  4580. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "3s") {
  4582. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "6s") {
  4584. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "1studio") {
  4586. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "3studio") {
  4588. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4589. } else if (e.data.tools && e.data.tools == "6studio") {
  4590. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4591. } else if (e.data.tools && e.data.tools == "3y") {
  4592. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4593. } else if (e.data.tools && e.data.tools == "1y") {
  4594. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4595. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4596. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4597. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4598. U.MD.D.I.openApplication("AIAnalyse")
  4599. } else if (e.data.tools && e.data.tools == "1teacher") {
  4600. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "3teacher") {
  4602. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4603. } else if (e.data.tools && e.data.tools == "7teacher") {
  4604. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4605. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4606. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4607. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4608. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4609. } else if (e.data.tools && e.data.tools == "1E") {
  4610. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4611. } else if (e.data.tools && e.data.tools == "3E") {
  4612. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "57y") {
  4614. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4615. } else if (e.data.tools && e.data.tools == "57u") {
  4616. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4617. } else if (e.data.tools && e.data.tools == "57teacher") {
  4618. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4619. } else if (e.data.tools && e.data.tools == "64") {
  4620. U.MD.D.I.openApplication("AIChat")
  4621. } else if (e.data.tools && e.data.tools == "66") {
  4622. U.MD.D.I.openApplication("formulaEdi")
  4623. } else if (e.data.tools && e.data.tools == "67") {
  4624. U.MD.D.I.openApplication("molStr")
  4625. } else if (e.data.tools && e.data.tools == "68") {
  4626. U.MD.D.I.openApplication("timeAxis")
  4627. } else if (e.data.tools && e.data.tools == "openCourse") {
  4628. let _data = {
  4629. typea: e.data.typea || '',
  4630. typeb: e.data.typeb || '',
  4631. typed: e.data.typed || '',
  4632. }
  4633. U.MD.D.I.openInApplication("index", _data)
  4634. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4635. let _data = {
  4636. classid: e.data.classid || '',
  4637. }
  4638. U.MD.D.I.openInApplication("dataClass", _data)
  4639. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4640. let _data = {
  4641. cid: e.data.cid || '',
  4642. gid: e.data.gid || '',
  4643. }
  4644. U.MD.D.I.openInApplication("opencCscl", _data)
  4645. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4646. U.MD.D.I.openApplication("dataBoardTest")
  4647. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4648. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4650. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4652. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4653. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4654. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4655. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4656. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4657. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4658. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4659. }else if (e.data.tools && e.data.tools == "loginSz") {
  4660. U.MD.D.I.openInApplication("loginSz")
  4661. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4662. if($('#classroom_observation_board')[0]){
  4663. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4664. }
  4665. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4666. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4667. if($('#classroom_observation_ob_comment')[0]){
  4668. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4669. }
  4670. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4671. }else if (e.data.tools && e.data.tools == "logout"){
  4672. U.MD.U.LO.logoutSystem()
  4673. }else if (e.data.tools && e.data.tools == "getLogin"){
  4674. let _iframe = $('#UI_Login')[0];
  4675. if (_iframe) {
  4676. var userInfo = US.userInfo;
  4677. var type = 2
  4678. if(userInfo && userInfo.userid){
  4679. type = 1
  4680. }
  4681. _contentWindow = _iframe.contentWindow;
  4682. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4683. }
  4684. }
  4685. });
  4686. U.MD.D.I.selectUser = function () {
  4687. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4688. if (res.value[0].length > 0) {
  4689. US.userInfo = res.value[0][0];
  4690. $(".userName")[0].innerHTML = US.userInfo.username;
  4691. }
  4692. }, [], { "type": "GET", "withCredentials": true });
  4693. }
  4694. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4695. var _userinfo = US.userInfo, //登录用户信息
  4696. _userid = US.userInfo.userid, //登录用户id
  4697. _oid = _userinfo.organizeid,
  4698. _type = US.userInfo.type,
  4699. _org = US.userInfo.org,
  4700. _role = US.userInfo.role,
  4701. _classId = US.userInfo.classid;
  4702. if (_type == 4) {
  4703. tType = 4
  4704. }
  4705. switch (str) {
  4706. case "studyDetailNT": //无终端模式
  4707. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4708. setTimeout(() => {
  4709. U.MD.U.L.login();
  4710. }, 2000);
  4711. } else {
  4712. _formdiv = new U.UF.UI.form(
  4713. "课程详情",
  4714. $$("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 }), {
  4715. "id": "studyDetailNT",
  4716. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4717. "onresize": function () { }
  4718. }, {
  4719. closecallback: function () { }
  4720. }, { "style": { "height": "36px" } }).form; //创建窗体
  4721. _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); } }
  4722. break;
  4723. }
  4724. case "studyDetail":
  4725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4726. setTimeout(() => {
  4727. U.MD.U.L.login();
  4728. }, 2000);
  4729. } else {
  4730. _formdiv = new U.UF.UI.form(
  4731. "课程详情",
  4732. $$("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 }), {
  4733. "id": "studyDetail",
  4734. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. }
  4742. case "studyDetailTrain":
  4743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4744. setTimeout(() => {
  4745. U.MD.U.L.login();
  4746. }, 2000);
  4747. } else {
  4748. _formdiv = new U.UF.UI.form(
  4749. "培训详情",
  4750. $$("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 }), {
  4751. "id": "studyDetailTrain",
  4752. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4753. "onresize": function () { }
  4754. }, {
  4755. closecallback: function () { }
  4756. }, { "style": { "height": "36px" } }).form; //创建窗体
  4757. _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); } }
  4758. break;
  4759. }
  4760. case "studyDetailS":
  4761. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4762. setTimeout(() => {
  4763. U.MD.U.L.login();
  4764. }, 2000);
  4765. } else {
  4766. _formdiv = new U.UF.UI.form(
  4767. "项目详情",
  4768. $$("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 }), {
  4769. "id": "studyDetailS",
  4770. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4771. "onresize": function () { }
  4772. }, {
  4773. closecallback: function () { }
  4774. }, { "style": { "height": "36px" } }).form; //创建窗体
  4775. _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); } }
  4776. break;
  4777. }
  4778. case "studyDetailStudio":
  4779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4780. setTimeout(() => {
  4781. U.MD.U.L.login();
  4782. }, 2000);
  4783. } else {
  4784. _formdiv = new U.UF.UI.form(
  4785. "工作详情",
  4786. $$("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 }), {
  4787. "id": "studyDetailStudio",
  4788. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4789. "onresize": function () { }
  4790. }, {
  4791. closecallback: function () { }
  4792. }, { "style": { "height": "36px" } }).form; //创建窗体
  4793. _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); } }
  4794. break;
  4795. }
  4796. case "studyDetailS5":
  4797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4798. setTimeout(() => {
  4799. U.MD.U.L.login();
  4800. }, 2000);
  4801. } else {
  4802. _formdiv = new U.UF.UI.form(
  4803. "项目详情",
  4804. $$("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 }), {
  4805. "id": "studyDetailS",
  4806. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _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); } }
  4812. break;
  4813. }
  4814. case "studyDetailGM":
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. _formdiv = new U.UF.UI.form(
  4821. "课程详情",
  4822. $$("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 }), {
  4823. "id": "studyDetail",
  4824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //创建窗体
  4829. _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); } }
  4830. break;
  4831. }
  4832. case "hanUrl":
  4833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4834. setTimeout(() => {
  4835. U.MD.U.L.login();
  4836. }, 2000);
  4837. } else {
  4838. _formdiv = new U.UF.UI.form(
  4839. "汉字宫",
  4840. $$("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" }), {
  4841. "id": "hanUrl",
  4842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4843. "onresize": function () { }
  4844. }, {
  4845. closecallback: function () { }
  4846. }, { "style": { "height": "36px" } }).form; //创建窗体
  4847. _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); } }
  4848. break;
  4849. }
  4850. case "index":
  4851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4852. setTimeout(() => {
  4853. U.MD.U.L.login();
  4854. }, 2000);
  4855. } else {
  4856. _formdiv = new U.UF.UI.form(
  4857. "课程中心",
  4858. $$("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 }), {
  4859. "id": "study",
  4860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4861. "onresize": function () { }
  4862. }, {
  4863. closecallback: function () { }
  4864. }, { "style": { "height": "36px" } }).form; //创建窗体
  4865. _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); } }
  4866. break;
  4867. }
  4868. case "dataClass":
  4869. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4870. setTimeout(() => {
  4871. U.MD.U.L.login();
  4872. }, 2000);
  4873. } else {
  4874. _formdiv = new U.UF.UI.form(
  4875. "数据报告",
  4876. $$("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 }), {
  4877. "id": "dataClass",
  4878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4879. "onresize": function () { }
  4880. }, {
  4881. closecallback: function () { }
  4882. }, { "style": { "height": "36px" } }).form; //创建窗体
  4883. _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); } }
  4884. break;
  4885. }
  4886. case "opencCscl":
  4887. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4888. setTimeout(() => {
  4889. U.MD.U.L.login();
  4890. }, 2000);
  4891. } else {
  4892. _formdiv = new U.UF.UI.form(
  4893. "协同建构",
  4894. $$("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.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4895. "id": "futureClass",
  4896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. _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); } }
  4902. break;
  4903. }
  4904. case "openCourseUpdate":
  4905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4906. setTimeout(() => {
  4907. U.MD.U.L.login();
  4908. }, 2000);
  4909. } else {
  4910. _formdiv = new U.UF.UI.form(
  4911. "课程管理",
  4912. $$("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 }), {
  4913. "id": "openCourseUpdate",
  4914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. break;
  4920. }
  4921. case "openNewCourseUpdate":
  4922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4923. setTimeout(() => {
  4924. U.MD.U.L.login();
  4925. }, 2000);
  4926. } else {
  4927. _formdiv = new U.UF.UI.form(
  4928. "课程管理",
  4929. $$("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 }), {
  4930. "id": "openCourseUpdate",
  4931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. break;
  4937. }
  4938. case "openCourseEUpdate":
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. _formdiv = new U.UF.UI.form(
  4945. "课程管理",
  4946. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4947. "id": "openCourseUpdate",
  4948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. break;
  4954. }
  4955. case "openCourseAiUpdate":
  4956. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4957. setTimeout(() => {
  4958. U.MD.U.L.login();
  4959. }, 2000);
  4960. } else {
  4961. _formdiv = new U.UF.UI.form(
  4962. "课程管理",
  4963. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4964. "id": "openCourseUpdate",
  4965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //创建窗体
  4970. break;
  4971. }
  4972. case "openCourseAiUpdate2":
  4973. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4974. setTimeout(() => {
  4975. U.MD.U.L.login();
  4976. }, 2000);
  4977. } else {
  4978. _formdiv = new U.UF.UI.form(
  4979. "课程管理",
  4980. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4981. "id": "openCourseUpdate",
  4982. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4983. "onresize": function () { }
  4984. }, {
  4985. closecallback: function () { }
  4986. }, { "style": { "height": "36px" } }).form; //创建窗体
  4987. break;
  4988. }
  4989. case "openCourseNewUpdate":
  4990. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4991. setTimeout(() => {
  4992. U.MD.U.L.login();
  4993. }, 2000);
  4994. } else {
  4995. _formdiv = new U.UF.UI.form(
  4996. "课程管理",
  4997. $$("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 }), {
  4998. "id": "openCourseUpdate",
  4999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. break;
  5005. }
  5006. case "inviteLoginSz":
  5007. _formdiv = new U.UF.UI.form(
  5008. "随机码登录",
  5009. $$("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 }), {
  5010. "id": "loginSz",
  5011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. break;
  5017. case "loginSz":
  5018. _formdiv = new U.UF.UI.form(
  5019. "教师登录",
  5020. $$("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" }), {
  5021. "id": "loginSz",
  5022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. break;
  5028. case "teacher":
  5029. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5030. setTimeout(() => {
  5031. U.MD.U.L.login();
  5032. }, 2000);
  5033. } else {
  5034. _formdiv = new U.UF.UI.form(
  5035. "教师管理",
  5036. $$("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 }), {
  5037. "id": "teacher",
  5038. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. break;
  5044. }
  5045. case "dataBoardSZArea":
  5046. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5047. setTimeout(() => {
  5048. U.MD.U.L.login();
  5049. }, 2000);
  5050. } else {
  5051. _formdiv = new U.UF.UI.form(
  5052. "综合数据看板",
  5053. $$("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 }), {
  5054. "id": "dataBoardSZArea",
  5055. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. break;
  5061. }
  5062. case "dataBoardSZCity":
  5063. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5064. setTimeout(() => {
  5065. U.MD.U.L.login();
  5066. }, 2000);
  5067. } else {
  5068. _formdiv = new U.UF.UI.form(
  5069. "综合数据看板",
  5070. $$("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 }), {
  5071. "id": "dataBoardSZCity",
  5072. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5073. "onresize": function () { }
  5074. }, {
  5075. closecallback: function () { }
  5076. }, { "style": { "height": "36px" } }).form; //创建窗体
  5077. break;
  5078. }
  5079. case "classroom_observation_board":
  5080. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5081. setTimeout(() => {
  5082. U.MD.U.L.login();
  5083. }, 2000);
  5084. } else {
  5085. _formdiv = new U.UF.UI.form(
  5086. "课堂观察",
  5087. $$("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 }), {
  5088. "id": "classroom_observation_board",
  5089. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. break;
  5095. }
  5096. case "classroom_observation_ob_comment":
  5097. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5098. setTimeout(() => {
  5099. U.MD.U.L.login();
  5100. }, 2000);
  5101. } else {
  5102. _formdiv = new U.UF.UI.form(
  5103. "课堂审核",
  5104. $$("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 }), {
  5105. "id": "classroom_observation_ob_comment",
  5106. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. break;
  5112. }
  5113. }
  5114. }
  5115. U.MD.D.I.openApplication = function (str, obj, info) {
  5116. obj = obj || {};
  5117. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5118. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5119. _userinfo = US.userInfo, //登录用户信息
  5120. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5121. _oid = obj.organizeid || _userinfo.organizeid,
  5122. _type = US.userInfo.type,
  5123. _org = US.userInfo.org,
  5124. _role = US.userInfo.role,
  5125. _classId = US.userInfo.classid,
  5126. _TscreenType = 1
  5127. _screenType = 2,
  5128. _SscreenType = 3;
  5129. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5130. return;
  5131. }
  5132. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5133. switch (str) {
  5134. case "studnetProject": //好友打开
  5135. _formdiv = new U.UF.UI.form(
  5136. "我的项目",
  5137. $$("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 }), {
  5138. "id": "studnetProject",
  5139. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "studentEvaluate": //好友打开
  5147. _formdiv = new U.UF.UI.form(
  5148. "我的评价",
  5149. $$("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 }), {
  5150. "id": "studentEvaluate",
  5151. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "my":
  5159. _formdiv = new U.UF.UI.form(
  5160. "我的资料",
  5161. $$("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 }), {
  5162. "id": "my",
  5163. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "program":
  5171. _formdiv = new U.UF.UI.form(
  5172. "编程平台",
  5173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5174. "id": "program",
  5175. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. case "library":
  5183. _formdiv = new U.UF.UI.form(
  5184. "素材库",
  5185. $$("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 }), {
  5186. "id": "library",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. break;
  5194. case "whiteboard":
  5195. _formdiv = new U.UF.UI.form(
  5196. "电子白板",
  5197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5198. "id": "whiteboard",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5210. "id": "investigation",
  5211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. case "note":
  5219. _formdiv = new U.UF.UI.form(
  5220. "便签分类",
  5221. $$("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 }), {
  5222. "id": "note",
  5223. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _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); } }
  5229. break;
  5230. // case "score":
  5231. // _formdiv = new U.UF.UI.form(
  5232. // "量规评分",
  5233. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5234. // "id": "score",
  5235. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5236. // "onresize": function() {}
  5237. // }, {
  5238. // closecallback: function() {}
  5239. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. // _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); } }
  5241. // break;
  5242. case "mind":
  5243. _formdiv = new U.UF.UI.form(
  5244. "思维导图",
  5245. $$("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"
  5246. "id": "mind",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. case "doc":
  5255. // U.MD.D.I.isRoom();
  5256. _formdiv = new U.UF.UI.form(
  5257. "协同文档",
  5258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5259. "id": "doc",
  5260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5261. "onresize": function () { }
  5262. }, {
  5263. closecallback: function () { }
  5264. }, { "style": { "height": "36px" } }).form; //创建窗体
  5265. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5266. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5267. // })
  5268. _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); } }
  5269. break;
  5270. case "studentStudy":
  5271. _formdiv = new U.UF.UI.form(
  5272. "课程中心",
  5273. $$("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
  5274. "id": "studentStudy",
  5275. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5281. break;
  5282. case "train": //好友打开
  5283. _formdiv = new U.UF.UI.form(
  5284. "训练平台",
  5285. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5286. "id": "train",
  5287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5288. "onresize": function () { }
  5289. }, {
  5290. closecallback: function () { }
  5291. }, { "style": { "height": "36px" } }).form; //创建窗体
  5292. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5293. break;
  5294. case "mindNetwork": //好友打开
  5295. _formdiv = new U.UF.UI.form(
  5296. "思维网格",
  5297. $$("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 }), {
  5298. "id": "mindNetwork",
  5299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5305. break;
  5306. case "studentClassRoom": //好友打开
  5307. _formdiv = new U.UF.UI.form(
  5308. "实时课堂",
  5309. $$("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 }), {
  5310. "id": "studentClassRoom",
  5311. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5312. "onresize": function () { }
  5313. }, {
  5314. closecallback: function () { }
  5315. }, { "style": { "height": "36px" } }).form; //创建窗体
  5316. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5317. setTimeout(() => {
  5318. U.UF.F.windowZooming(_formdiv)
  5319. }, 0);
  5320. break;
  5321. }
  5322. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5323. switch (str) {
  5324. case "studnetProject": //好友打开
  5325. _formdiv = new U.UF.UI.form(
  5326. "我的项目",
  5327. $$("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 }), {
  5328. "id": "studnetProject",
  5329. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "studentEvaluate": //好友打开
  5337. _formdiv = new U.UF.UI.form(
  5338. "我的评价",
  5339. $$("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 }), {
  5340. "id": "studentEvaluate",
  5341. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "my":
  5349. _formdiv = new U.UF.UI.form(
  5350. "我的资料",
  5351. $$("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 }), {
  5352. "id": "my",
  5353. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. case "program":
  5361. _formdiv = new U.UF.UI.form(
  5362. "编程平台",
  5363. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5364. "id": "program",
  5365. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "library":
  5373. _formdiv = new U.UF.UI.form(
  5374. "素材库",
  5375. $$("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 }), {
  5376. "id": "library",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. _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); } }
  5383. break;
  5384. case "whiteboard":
  5385. _formdiv = new U.UF.UI.form(
  5386. "电子白板",
  5387. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5388. "id": "whiteboard",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5400. "id": "investigation",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. _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); } }
  5407. break;
  5408. case "note":
  5409. _formdiv = new U.UF.UI.form(
  5410. "便签分类",
  5411. $$("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 }), {
  5412. "id": "note",
  5413. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5414. "onresize": function () { }
  5415. }, {
  5416. closecallback: function () { }
  5417. }, { "style": { "height": "36px" } }).form; //创建窗体
  5418. _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); } }
  5419. break;
  5420. // case "score":
  5421. // _formdiv = new U.UF.UI.form(
  5422. // "量规评分",
  5423. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5424. // "id": "score",
  5425. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. // "onresize": function() {}
  5427. // }, {
  5428. // closecallback: function() {}
  5429. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. // _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); } }
  5431. // break;
  5432. case "mind":
  5433. _formdiv = new U.UF.UI.form(
  5434. "思维导图",
  5435. $$("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"
  5436. "id": "mind",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _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); } }
  5443. break;
  5444. case "doc":
  5445. // U.MD.D.I.isRoom();
  5446. _formdiv = new U.UF.UI.form(
  5447. "协同文档",
  5448. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5449. "id": "doc",
  5450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5456. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5457. })
  5458. _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); } }
  5459. break;
  5460. case "train": //好友打开
  5461. _formdiv = new U.UF.UI.form(
  5462. "训练平台",
  5463. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5464. "id": "train",
  5465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5466. "onresize": function () { }
  5467. }, {
  5468. closecallback: function () { }
  5469. }, { "style": { "height": "36px" } }).form; //创建窗体
  5470. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5471. break;
  5472. case "studentStudy":
  5473. _formdiv = new U.UF.UI.form(
  5474. "课程中心",
  5475. $$("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
  5476. "id": "studentStudy",
  5477. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //创建窗体
  5482. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5483. break;
  5484. case "mindNetwork": //好友打开
  5485. _formdiv = new U.UF.UI.form(
  5486. "思维网格",
  5487. $$("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 }), {
  5488. "id": "mindNetwork",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5495. break;
  5496. case "studentClassRoom": //好友打开
  5497. _formdiv = new U.UF.UI.form(
  5498. "实时课堂",
  5499. $$("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 }), {
  5500. "id": "studentClassRoom",
  5501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5507. setTimeout(() => {
  5508. U.UF.F.windowZooming(_formdiv)
  5509. }, 0);
  5510. break;
  5511. }
  5512. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5513. //选择应用处理
  5514. switch (str) {
  5515. case "project": //好友打开
  5516. _formdiv = new U.UF.UI.form(
  5517. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5518. $$("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 }), {
  5519. "id": "project",
  5520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "student":
  5528. _formdiv = new U.UF.UI.form(
  5529. "学生管理",
  5530. $$("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 }), {
  5531. "id": "student",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "evaluate":
  5540. _formdiv = new U.UF.UI.form(
  5541. "学生评价",
  5542. $$("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 }), {
  5543. "id": "evaluate",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "sys":
  5552. _formdiv = new U.UF.UI.form(
  5553. "目标管理",
  5554. $$("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 }), {
  5555. "id": "sys",
  5556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "courseDesign":
  5564. _formdiv = new U.UF.UI.form(
  5565. "项目设计",
  5566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5567. "id": "courseDesign",
  5568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "program":
  5576. _formdiv = new U.UF.UI.form(
  5577. "编程平台",
  5578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5579. "id": "program",
  5580. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "class":
  5588. _formdiv = new U.UF.UI.form(
  5589. "班级管理",
  5590. $$("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 }), {
  5591. "id": "class",
  5592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "Grade":
  5600. _formdiv = new U.UF.UI.form(
  5601. "年级管理",
  5602. $$("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 }), {
  5603. "id": "Grade",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "teacherOffice":
  5612. _formdiv = new U.UF.UI.form(
  5613. "教研室",
  5614. $$("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 }), {
  5615. "id": "teacherOffice",
  5616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. case "my":
  5624. _formdiv = new U.UF.UI.form(
  5625. "我的资料",
  5626. $$("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 }), {
  5627. "id": "my",
  5628. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. case "notice":
  5636. _formdiv = new U.UF.UI.form(
  5637. "通知公告",
  5638. $$("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 }), {
  5639. "id": "notice",
  5640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _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); } }
  5646. break;
  5647. case "library":
  5648. _formdiv = new U.UF.UI.form(
  5649. "素材库",
  5650. $$("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 }), {
  5651. "id": "library",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "whiteboard":
  5660. _formdiv = new U.UF.UI.form(
  5661. "电子白板",
  5662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5663. "id": "whiteboard",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. break;
  5671. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5675. "id": "investigation",
  5676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. case "note":
  5684. _formdiv = new U.UF.UI.form(
  5685. "便签分类",
  5686. $$("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 }), {
  5687. "id": "note",
  5688. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. break;
  5695. // case "score":
  5696. // _formdiv = new U.UF.UI.form(
  5697. // "量规评分",
  5698. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5699. // "id": "score",
  5700. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. // "onresize": function() {}
  5702. // }, {
  5703. // closecallback: function() {}
  5704. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. // _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); } }
  5706. // break;
  5707. case "mind":
  5708. _formdiv = new U.UF.UI.form(
  5709. "思维导图",
  5710. $$("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"
  5711. "id": "mind",
  5712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _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); } }
  5718. break;
  5719. case "doc":
  5720. // U.MD.D.I.isRoom();
  5721. _formdiv = new U.UF.UI.form(
  5722. "协同文档",
  5723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5724. "id": "doc",
  5725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, { "style": { "height": "36px" } }).form; //创建窗体
  5730. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5731. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5732. })
  5733. _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); } }
  5734. break;
  5735. case "study":
  5736. _formdiv = new U.UF.UI.form(
  5737. "课程中心",
  5738. $$("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
  5739. "id": "study",
  5740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5746. break;
  5747. case "mindNetwork": //好友打开
  5748. _formdiv = new U.UF.UI.form(
  5749. "思维网格",
  5750. $$("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 }), {
  5751. "id": "mindNetwork",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. case "train": //好友打开
  5760. _formdiv = new U.UF.UI.form(
  5761. "训练平台",
  5762. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5763. "id": "mindNetwork",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5770. break;
  5771. case "teacherClassRoom": //好友打开
  5772. _formdiv = new U.UF.UI.form(
  5773. "实时课堂",
  5774. $$("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 }), {
  5775. "id": "teacherClassRoom",
  5776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //创建窗体
  5781. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5782. setTimeout(() => {
  5783. U.UF.F.windowZooming(_formdiv)
  5784. }, 0);
  5785. break;
  5786. }
  5787. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5788. switch (str) {
  5789. case "project": //好友打开
  5790. _formdiv = new U.UF.UI.form(
  5791. "课程管理",
  5792. $$("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 }), {
  5793. "id": "project",
  5794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. _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); } }
  5800. break;
  5801. case "evaluate":
  5802. _formdiv = new U.UF.UI.form(
  5803. "学生评价",
  5804. $$("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 }), {
  5805. "id": "evaluate",
  5806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5812. break;
  5813. case "notice":
  5814. _formdiv = new U.UF.UI.form(
  5815. "通知公告",
  5816. $$("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 }), {
  5817. "id": "notice",
  5818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //创建窗体
  5823. _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); } }
  5824. break;
  5825. case "stuLibrary":
  5826. _formdiv = new U.UF.UI.form(
  5827. "学习资料",
  5828. $$("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 }), {
  5829. "id": "stuLibrary",
  5830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5831. "onresize": function () { }
  5832. }, {
  5833. closecallback: function () { }
  5834. }, { "style": { "height": "36px" } }).form; //创建窗体
  5835. _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); } }
  5836. break;
  5837. case "program":
  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": "https://x.cocorobo.cn" }), {
  5841. "id": "program",
  5842. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. case "whiteboard":
  5850. _formdiv = new U.UF.UI.form(
  5851. "电子白板",
  5852. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5853. "id": "whiteboard",
  5854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. _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); } }
  5860. break;
  5861. case "investigation":
  5862. _formdiv = new U.UF.UI.form(
  5863. "问卷调查",
  5864. $$("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 }), {
  5865. "id": "investigation",
  5866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _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); } }
  5872. break;
  5873. case "mind":
  5874. _formdiv = new U.UF.UI.form(
  5875. "思维导图",
  5876. $$("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"
  5877. "id": "mind",
  5878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _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); } }
  5884. break;
  5885. case "doc":
  5886. // U.MD.D.I.isRoom();
  5887. _formdiv = new U.UF.UI.form(
  5888. "协同文档",
  5889. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5890. "id": "doc",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5897. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5898. })
  5899. _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); } }
  5900. break;
  5901. case "study":
  5902. _formdiv = new U.UF.UI.form(
  5903. "课程中心",
  5904. $$("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
  5905. "id": "study",
  5906. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5912. break;
  5913. case "mindNetwork": //好友打开
  5914. _formdiv = new U.UF.UI.form(
  5915. "思维网格",
  5916. $$("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 }), {
  5917. "id": "mindNetwork",
  5918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5924. break;
  5925. case "train": //好友打开
  5926. _formdiv = new U.UF.UI.form(
  5927. "训练平台",
  5928. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5929. "id": "train",
  5930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5931. "onresize": function () { }
  5932. }, {
  5933. closecallback: function () { }
  5934. }, { "style": { "height": "36px" } }).form; //创建窗体
  5935. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5936. break;
  5937. case "sys":
  5938. _formdiv = new U.UF.UI.form(
  5939. "目标管理",
  5940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5941. "id": "sys",
  5942. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5948. break;
  5949. case "courseDesign":
  5950. _formdiv = new U.UF.UI.form(
  5951. "项目设计",
  5952. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5953. "id": "courseDesign",
  5954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5960. break;
  5961. }
  5962. } else if (!_type) {
  5963. switch (str) {
  5964. case "my":
  5965. _formdiv = new U.UF.UI.form(
  5966. "我的资料",
  5967. $$("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 }), {
  5968. "id": "my",
  5969. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _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); } }
  5975. break;
  5976. }
  5977. }
  5978. switch (str) {
  5979. // AIprogram2 AI体验 aihub.cocorobo.cn
  5980. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5981. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5982. case "formulaEdi": //公式编辑
  5983. _formdiv = new U.UF.UI.form(
  5984. "公式编辑",
  5985. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5986. "id": "formulaEdi",
  5987. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. case "molStr": //分子结构
  5995. _formdiv = new U.UF.UI.form(
  5996. "分子结构",
  5997. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5998. "id": "molStr",
  5999. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _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); } }
  6005. break;
  6006. case "timeAxis": //时间轴
  6007. _formdiv = new U.UF.UI.form(
  6008. "时间轴",
  6009. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6010. "id": "timeAxis",
  6011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. break;
  6018. case "AIprogram2": //AI体验
  6019. _formdiv = new U.UF.UI.form(
  6020. "AI体验",
  6021. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6022. "id": "AIprogram2",
  6023. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _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); } }
  6029. break;
  6030. case "Pythonprogram": //python编程
  6031. _formdiv = new U.UF.UI.form(
  6032. "Python编程",
  6033. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6034. "id": "Pythonprogram",
  6035. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "AIprogram": //ai编程
  6043. _formdiv = new U.UF.UI.form(
  6044. "AI编程平台",
  6045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6046. "id": "AIprogram",
  6047. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. case "CocoPi": //CocoPi
  6055. _formdiv = new U.UF.UI.form(
  6056. "CocoPi",
  6057. $$("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" }), {
  6058. "id": "CocoPi",
  6059. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "Wood": //Wood
  6067. _formdiv = new U.UF.UI.form(
  6068. "海龟编程",
  6069. $$("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/" }), {
  6070. "id": "Wood",
  6071. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. break;
  6078. case "car": //模拟驾驶
  6079. _formdiv = new U.UF.UI.form(
  6080. "模拟驾驶",
  6081. $$("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/" }), {
  6082. "id": "car",
  6083. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _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); } }
  6089. break;
  6090. case "lineSearch": //路径搜索
  6091. _formdiv = new U.UF.UI.form(
  6092. "路径搜索",
  6093. $$("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/" }), {
  6094. "id": "lineSearch",
  6095. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. case "deepLearning": //深度学习
  6103. _formdiv = new U.UF.UI.form(
  6104. "深度学习",
  6105. $$("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/#" }), {
  6106. "id": "deepLearning",
  6107. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //创建窗体
  6112. _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); } }
  6113. break;
  6114. case "allHistory": //深度学习
  6115. _formdiv = new U.UF.UI.form(
  6116. "全历史",
  6117. $$("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/" }), {
  6118. "id": "allHistory",
  6119. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6120. "onresize": function () { }
  6121. }, {
  6122. closecallback: function () { }
  6123. }, { "style": { "height": "36px" } }).form; //创建窗体
  6124. _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); } }
  6125. break;
  6126. case "chatPDF": //ai编程
  6127. _formdiv = new U.UF.UI.form(
  6128. "chatPDF",
  6129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6130. "id": "chatPDF",
  6131. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6132. "onresize": function () { }
  6133. }, {
  6134. closecallback: function () { }
  6135. }, { "style": { "height": "36px" } }).form; //创建窗体
  6136. _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); } }
  6137. break;
  6138. case "resources": //国家教育
  6139. _formdiv = new U.UF.UI.form(
  6140. "国家教育",
  6141. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6142. "id": "resources",
  6143. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //创建窗体
  6148. _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); } }
  6149. break;
  6150. case "codeEdit": //源码编辑
  6151. _formdiv = new U.UF.UI.form(
  6152. "源码编辑",
  6153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6154. "id": "codeEdit",
  6155. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break; //
  6162. case "MindMap": //MindMap
  6163. _formdiv = new U.UF.UI.form(
  6164. "MindMap",
  6165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6166. "id": "MindMap",
  6167. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "netWorkPanel": //netWorkPanel
  6175. _formdiv = new U.UF.UI.form(
  6176. "netWorkPanel",
  6177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6178. "id": "netWorkPanel",
  6179. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "GeoGebra": //GeoGebra
  6187. _formdiv = new U.UF.UI.form(
  6188. "GeoGebra",
  6189. $$("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" }), {
  6190. "id": "GeoGebra",
  6191. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "translation": //翻译
  6199. _formdiv = new U.UF.UI.form(
  6200. "翻译",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6202. "id": "translation",
  6203. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "mohe": //魔盒
  6211. _formdiv = new U.UF.UI.form(
  6212. "魔盒识字",
  6213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6214. "id": "mohe",
  6215. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "24game": //24点
  6223. _formdiv = new U.UF.UI.form(
  6224. "24点",
  6225. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6226. "id": "24game",
  6227. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. case "case":
  6235. _formdiv = new U.UF.UI.form(
  6236. "课程进展",
  6237. $$("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 }), {
  6238. "id": "case",
  6239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. break;
  6246. case "snf":
  6247. _formdiv = new U.UF.UI.form(
  6248. "赛诺梵",
  6249. $$("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" }), {
  6250. "id": "snf",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "hanFamily":
  6259. _formdiv = new U.UF.UI.form(
  6260. "汉字家族",
  6261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6262. "id": "hanFamily",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. break;
  6270. case "hanClassics":
  6271. _formdiv = new U.UF.UI.form(
  6272. "国学经典",
  6273. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6274. "id": "hanClassics",
  6275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6276. "onresize": function () { }
  6277. }, {
  6278. closecallback: function () { }
  6279. }, { "style": { "height": "36px" } }).form; //创建窗体
  6280. _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); } }
  6281. break;
  6282. case "hanTraining":
  6283. _formdiv = new U.UF.UI.form(
  6284. "笔画训练",
  6285. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6286. "id": "hanTraining",
  6287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6288. "onresize": function () { }
  6289. }, {
  6290. closecallback: function () { }
  6291. }, { "style": { "height": "36px" } }).form; //创建窗体
  6292. _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); } }
  6293. break;
  6294. case "hanClass":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6298. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6305. break;
  6306. case "han":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6310. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6317. break;
  6318. case "projectGM": //课程管理
  6319. _formdiv = new U.UF.UI.form(
  6320. "课程管理",
  6321. $$("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 }), {
  6322. "id": "projectGM",
  6323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6324. "onresize": function () { }
  6325. }, {
  6326. closecallback: function () { }
  6327. }, { "style": { "height": "36px" } }).form; //创建窗体
  6328. _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); } }
  6329. break;
  6330. case "studyGM": //课程中心
  6331. _formdiv = new U.UF.UI.form(
  6332. "课程中心",
  6333. $$("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
  6334. "id": "study",
  6335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6336. "onresize": function () { }
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _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); } }
  6341. break;
  6342. // studentGM
  6343. case "studentGM": //学生管理
  6344. _formdiv = new U.UF.UI.form(
  6345. "学生管理",
  6346. $$("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 }), {
  6347. "id": "studentGM",
  6348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "evaluateGM": //学生评价
  6356. _formdiv = new U.UF.UI.form(
  6357. "学生评价",
  6358. $$("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 }), {
  6359. "id": "evaluateGM",
  6360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. // classGM
  6368. case "classGM": //班级管理
  6369. _formdiv = new U.UF.UI.form(
  6370. "班级管理",
  6371. $$("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 }), {
  6372. "id": "classGM",
  6373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6374. "onresize": function () { }
  6375. }, {
  6376. closecallback: function () { }
  6377. }, { "style": { "height": "36px" } }).form; //创建窗体
  6378. _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); } }
  6379. break;
  6380. // dataGM
  6381. case "dataGM":
  6382. _formdiv = new U.UF.UI.form(
  6383. "我的资料",
  6384. $$("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 }), {
  6385. "id": "dataGM",
  6386. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //创建窗体
  6391. _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); } }
  6392. break;
  6393. // caseGM
  6394. case "caseGM": //课程进展
  6395. _formdiv = new U.UF.UI.form(
  6396. "课程进展",
  6397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6398. "id": "caseGM",
  6399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, { "style": { "height": "36px" } }).form; //创建窗体
  6404. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6405. break;
  6406. // meterialGM
  6407. case "meterialGM": //素材库
  6408. _formdiv = new U.UF.UI.form(
  6409. "素材库",
  6410. $$("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 }), {
  6411. "id": "meterialGM",
  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/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6418. break;
  6419. // evaluateSGM
  6420. case "evaluateSGM": //我的评价
  6421. _formdiv = new U.UF.UI.form(
  6422. "我的评价",
  6423. $$("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 }), {
  6424. "id": "evaluateSGM",
  6425. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _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); } }
  6431. break;
  6432. case "jupyter": //jupyter
  6433. _formdiv = new U.UF.UI.form(
  6434. "jupyter",
  6435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6436. "id": "jupyter",
  6437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _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); } }
  6443. break;
  6444. case "number": //数字实验室
  6445. _formdiv = new U.UF.UI.form(
  6446. "数字实验室",
  6447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6448. "id": "number",
  6449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _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); } }
  6455. break;
  6456. case "studentCourse": //项目管理 学生
  6457. _formdiv = new U.UF.UI.form(
  6458. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6459. $$("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 }), {
  6460. "id": "studentCourse",
  6461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6467. break;
  6468. case "studentCourseS": //项目管理 老师
  6469. _formdiv = new U.UF.UI.form(
  6470. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6471. $$("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 }), {
  6472. "id": "studentCourseS",
  6473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. break;
  6480. case "studentIndex": //项目中心
  6481. _formdiv = new U.UF.UI.form(
  6482. "项目中心",
  6483. $$("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 }), {
  6484. "id": "studentIndex",
  6485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _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); } }
  6491. break;
  6492. case "CaseDesignS":
  6493. _formdiv = new U.UF.UI.form(
  6494. "项目进展",
  6495. $$("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 }), {
  6496. "id": "case",
  6497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. case "tcStudent": //腾讯学生管理
  6505. _formdiv = new U.UF.UI.form(
  6506. "学生管理",
  6507. $$("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 }), {
  6508. "id": "tcStudent",
  6509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. case "tcSchool": //腾讯学校管理
  6517. _formdiv = new U.UF.UI.form(
  6518. "学校管理",
  6519. $$("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 }), {
  6520. "id": "tcSchool",
  6521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _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); } }
  6527. break;
  6528. case "tcTeacher": //腾讯学校管理
  6529. _formdiv = new U.UF.UI.form(
  6530. "教师管理",
  6531. $$("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 }), {
  6532. "id": "tcTeacher",
  6533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _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); } }
  6539. break;
  6540. case "teacher":
  6541. _formdiv = new U.UF.UI.form(
  6542. "教师管理",
  6543. $$("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 }), {
  6544. "id": "teacher",
  6545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6551. break;
  6552. case "tcData": //腾讯我的资料
  6553. _formdiv = new U.UF.UI.form(
  6554. "我的资料",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6556. "id": "tcData",
  6557. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6563. break;
  6564. case "tcNotice": //腾讯消息通知
  6565. _formdiv = new U.UF.UI.form(
  6566. "消息通知",
  6567. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6568. "id": "tcNotice",
  6569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6575. break;
  6576. case "myReport": //好友打开
  6577. _formdiv = new U.UF.UI.form(
  6578. "我的评价",
  6579. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6580. "id": "myReport",
  6581. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6587. break;
  6588. case "learnAna": //好友打开
  6589. _formdiv = new U.UF.UI.form(
  6590. "学习分析",
  6591. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6592. "id": "learnAna",
  6593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6599. break;
  6600. case "AIChat": //AI共创
  6601. _formdiv = new U.UF.UI.form(
  6602. "AI共创",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6604. "id": "AIChat",
  6605. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. istop: true,
  6609. closecallback: function () { $("#aichat_icon").remove(); },
  6610. narrowcallback: function () {
  6611. if (!$("#aichat_icon")[0]) {
  6612. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6613. }
  6614. },
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "ainew": //AI共创
  6619. _formdiv = new U.UF.UI.form(
  6620. "AI协同",
  6621. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6622. "id": "ainew",
  6623. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "gpt4": //gpt4
  6631. _formdiv = new U.UF.UI.form(
  6632. "AI助手",
  6633. $$("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 }), {
  6634. "id": "gpt4",
  6635. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "aigpt": //gpt4
  6643. _formdiv = new U.UF.UI.form(
  6644. "AI助手+",
  6645. $$("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/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6646. "id": "aigpt",
  6647. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () {
  6651. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6652. }
  6653. }, { "style": { "height": "36px" } }).form; //创建窗体
  6654. _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); } }
  6655. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6656. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6657. })
  6658. break;
  6659. case "aiKnowledge": //aiKnowledge
  6660. _formdiv = new U.UF.UI.form(
  6661. "知识建构",
  6662. $$("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/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6663. "id": "aiKnowledge",
  6664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "futureClass": //AI共创
  6672. _formdiv = new U.UF.UI.form(
  6673. "协同建构",
  6674. $$("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://beta.cscl.cocorobo.cn
  6675. "id": "synergyCourse",
  6676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () {
  6680. $("iframe", _formdiv)[0].contentWindow.loginout();
  6681. }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _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); } }
  6684. break;
  6685. case "aiagent": //ai agent
  6686. _formdiv = new U.UF.UI.form(
  6687. "AI Agent",
  6688. $$("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" }), {
  6689. "id": "AIAgent",
  6690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _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); } }
  6696. break;
  6697. case "dataBoard": //数据看板
  6698. _formdiv = new U.UF.UI.form(
  6699. "数据看板",
  6700. $$("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 }), {
  6701. "id": "dataBoard",
  6702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "dataBoardSies": //数据融合
  6710. _formdiv = new U.UF.UI.form(
  6711. "数据融合",
  6712. $$("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 }), {
  6713. "id": "dataBoardSies",
  6714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. case "dataBoardNew": //数据看板
  6722. _formdiv = new U.UF.UI.form(
  6723. "综合看板",
  6724. $$("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 }), {
  6725. "id": "dataBoardNew",
  6726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. case "dataBoardTest": //数据看板
  6734. _formdiv = new U.UF.UI.form(
  6735. "评测看板",
  6736. $$("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 }), {
  6737. "id": "dataBoardTest",
  6738. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _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); } }
  6744. break;
  6745. case "AIAnalyse": //AI共创
  6746. _formdiv = new U.UF.UI.form(
  6747. "AI分析",
  6748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6749. "id": "AIAnalyse",
  6750. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _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); } }
  6756. break;
  6757. case "studioCourse": //AI共创
  6758. _formdiv = new U.UF.UI.form(
  6759. "工作管理",
  6760. $$("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 }), {
  6761. "id": "studioCourse",
  6762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. case "studioIndex": //AI共创
  6770. _formdiv = new U.UF.UI.form(
  6771. "工作中心",
  6772. $$("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 }), {
  6773. "id": "studioIndex",
  6774. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _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); } }
  6780. break;
  6781. case "source":
  6782. _formdiv = new U.UF.UI.form(
  6783. "教学资源",
  6784. $$("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 }), {
  6785. "id": "source",
  6786. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6787. "onresize": function () { }
  6788. }, {
  6789. closecallback: function () { }
  6790. }, { "style": { "height": "36px" } }).form; //创建窗体
  6791. _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); } }
  6792. break;
  6793. case "testTeacher":
  6794. _formdiv = new U.UF.UI.form(
  6795. "智能表单",
  6796. $$("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 }), {
  6797. "id": "testTeacher",
  6798. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6799. "onresize": function () { }
  6800. }, {
  6801. closecallback: function () { }
  6802. }, { "style": { "height": "36px" } }).form; //创建窗体
  6803. _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); } }
  6804. break;
  6805. case "testStudent":
  6806. _formdiv = new U.UF.UI.form(
  6807. "教师中心",
  6808. $$("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 }), {
  6809. "id": "testStudent",
  6810. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6811. "onresize": function () { }
  6812. }, {
  6813. closecallback: function () { }
  6814. }, { "style": { "height": "36px" } }).form; //创建窗体
  6815. _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); } }
  6816. break;
  6817. case "testTeacherSies":
  6818. _formdiv = new U.UF.UI.form(
  6819. "教师管理",
  6820. $$("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 }), {
  6821. "id": "testTeacherSies",
  6822. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6823. "onresize": function () { }
  6824. }, {
  6825. closecallback: function () { }
  6826. }, { "style": { "height": "36px" } }).form; //创建窗体
  6827. _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); } }
  6828. break;
  6829. case "testStudentSies":
  6830. _formdiv = new U.UF.UI.form(
  6831. "教师中心",
  6832. $$("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 }), {
  6833. "id": "testStudentSies",
  6834. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6835. "onresize": function () { }
  6836. }, {
  6837. closecallback: function () { }
  6838. }, { "style": { "height": "36px" } }).form; //创建窗体
  6839. _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); } }
  6840. break;
  6841. case "ytpbl": //消息通知
  6842. _formdiv = new U.UF.UI.form(
  6843. "案例征集",
  6844. $$("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 }), {
  6845. "id": "ytpbl",
  6846. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6847. "onresize": function () { }
  6848. }, {
  6849. closecallback: function () { }
  6850. }, { "style": { "height": "36px" } }).form; //创建窗体
  6851. _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); } }
  6852. // 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");
  6853. break;
  6854. case "aiCourseResource": //人工智能窗体
  6855. _formdiv = new U.UF.UI.form(
  6856. false,
  6857. $$("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 }), {
  6858. "id": "aiCourseResource",
  6859. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6860. "onresize": function () { },
  6861. "isdrag": false,
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _taskbar = ''
  6866. break;
  6867. case "szdjgCocooroboX": //图形化编程
  6868. _formdiv = new U.UF.UI.form(
  6869. "图形化编程",
  6870. $$("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" }), {
  6871. "id": "szdjgCocooroboX",
  6872. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _taskbar = ''
  6878. break;
  6879. case "szdjgPython": //python编程
  6880. _formdiv = new U.UF.UI.form(
  6881. "Python编程",
  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": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  6883. "id": "szdjgPython",
  6884. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _taskbar = ''
  6890. break;
  6891. case "Record":
  6892. _formdiv = new U.UF.UI.form(
  6893. "观察记录",
  6894. $$("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 }), {
  6895. "id": "Record",
  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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6902. break;
  6903. case "aigptCourse":
  6904. _formdiv = new U.UF.UI.form(
  6905. "AI智能体",
  6906. $$("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' }), {
  6907. "id": "aigptCourse",
  6908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //创建窗体
  6913. _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); } }
  6914. break;
  6915. case "classroomObservation":
  6916. _formdiv = new U.UF.UI.form(
  6917. "课堂观察",
  6918. $$("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 }), {
  6919. "id": "classroomObservation",
  6920. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //创建窗体
  6925. _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); } }
  6926. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6927. break;
  6928. case "pblCourse":
  6929. _formdiv = new U.UF.UI.form(
  6930. "学生PBL",
  6931. $$("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 }), {
  6932. "id": "pblCourse",
  6933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _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); } }
  6939. break;
  6940. case "appStore":
  6941. _formdiv = new U.UF.UI.form(
  6942. "CocoFlow",
  6943. $$("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": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6944. "id": "appStore",
  6945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6951. break;
  6952. case "EDU":
  6953. _formdiv = new U.UF.UI.form(
  6954. "EDU",
  6955. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  6956. "id": "EDU",
  6957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6963. break;
  6964. case "knowledge":
  6965. _formdiv = new U.UF.UI.form(
  6966. "知识库",
  6967. $$("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/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6968. "id": "knowledge",
  6969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6975. break;
  6976. case "userExamine":
  6977. _formdiv = new U.UF.UI.form(
  6978. "账号申请",
  6979. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6980. "id": "userExamine",
  6981. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. break;
  6987. }
  6988. //U.MD.D.I.openClick(str);
  6989. //如果有任务栏信息
  6990. if (_taskbar) {
  6991. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6992. }
  6993. }
  6994. // U.MD.D.I.openClick = function(str){
  6995. // var click = '';
  6996. // switch(str){
  6997. // case 'friend':
  6998. // click = '我的好友';
  6999. // break;
  7000. // case 'domain':
  7001. // click = '域名管理';
  7002. // break;
  7003. // case 'disk':
  7004. // click = '我的云盘';
  7005. // break;
  7006. // case 'word':
  7007. // click = 'Word';
  7008. // break;
  7009. // case 'excel':
  7010. // click = 'Execl';
  7011. // break;
  7012. // case 'txt':
  7013. // click = '文本文件';
  7014. // break;
  7015. // case 'lookupFriend':
  7016. // click = '查找好友';
  7017. // break;
  7018. // case 'ftp':
  7019. // click = 'FTP';
  7020. // break;
  7021. // case 'group':
  7022. // click = '群组';
  7023. // break;
  7024. // case 'set':
  7025. // click = '我的设置';
  7026. // break;
  7027. // case 'systemSet':
  7028. // click = '系统设置';
  7029. // break;
  7030. // case 'boomYun':
  7031. // click = '互联办公';
  7032. // break;
  7033. // case 'xz':
  7034. // click = '云端下载';
  7035. // break;
  7036. // case 'client':
  7037. // click = '有思浏览器';
  7038. // break;
  7039. // case 'backEndProgramming':
  7040. // click = '在线后台编程';
  7041. // break;
  7042. // case 'frontEndProgramming':
  7043. // click = '在线前端编程';
  7044. // break;
  7045. // default: break;
  7046. // }
  7047. // if(U.MD.D.I.Ip && click){
  7048. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7049. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7050. // })
  7051. // }
  7052. // }
  7053. /**
  7054. *函数作用:ajax简易函数,使用post格式
  7055. *@param url {data} 后台地址
  7056. *@param data {data} 参数json
  7057. *@param fn {data} 回调函数
  7058. *
  7059. */
  7060. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7061. // var xhr = new XMLHttpRequest();
  7062. // xhr.open("GET",url,true);
  7063. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7064. // xhr.onreadystatechange = function(){
  7065. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7066. // fn.call(this,xhr.responseText);
  7067. // }
  7068. // };
  7069. // xhr.send();
  7070. // }
  7071. /*判断是否是内网IP*/
  7072. // U.MD.D.I.isInnerIPFn = function(str){
  7073. // var curPageUrl = str;
  7074. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7075. // curPageUrl =curPageUrl.replace(reg1,'');
  7076. // // console.log('curPageUrl-1 '+curPageUrl);
  7077. // var reg2 = /\:+/g;//替换冒号为一点
  7078. // curPageUrl =curPageUrl.replace(reg2,'.');
  7079. // // console.log('curPageUrl-2 '+curPageUrl);
  7080. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7081. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7082. // if(curPageUrl[2] != '16'){
  7083. // return ipAddress;
  7084. // }else{
  7085. // return false;
  7086. // }
  7087. // }
  7088. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7089. // //compatibility for firefox and chrome
  7090. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7091. // var pc = new myPeerConnection({
  7092. // iceServers: []
  7093. // }),
  7094. // noop = function() {},
  7095. // localIPs = {},
  7096. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7097. // key;
  7098. // function iterateIP(ip) {
  7099. // if (!localIPs[ip]) onNewIP(ip);
  7100. // localIPs[ip] = true;
  7101. // }
  7102. // //create a bogus data channel
  7103. // pc.createDataChannel("");
  7104. // // create offer and set local description
  7105. // pc.createOffer().then(function(sdp) {
  7106. // sdp.sdp.split('\n').forEach(function(line) {
  7107. // if (line.indexOf('candidate') < 0) return;
  7108. // line.match(ipRegex).forEach(iterateIP);
  7109. // });
  7110. // pc.setLocalDescription(sdp, noop, noop);
  7111. // }).catch(function(reason) {
  7112. // // An error occurred, so handle the failure to connect
  7113. // });
  7114. // //sten for candidate events
  7115. // pc.onicecandidate = function(ice) {
  7116. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7117. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7118. // };
  7119. // }
  7120. // U.MD.D.I.getUserIpBool = function(callback){
  7121. // U.MD.D.I.getUserIP(function(ip){
  7122. // alert("Got IP! :" + ip);
  7123. // });
  7124. //}
  7125. //#endregion
  7126. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7127. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7128. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7129. _userinfo = US.userInfo, //登录用户信息
  7130. _userid = US.userInfo.userid //登录用户id
  7131. let _iframe;
  7132. let _cid = cid,
  7133. _stage = stage,
  7134. _task = task,
  7135. _tool = tool;
  7136. var _jie = $$("div", {
  7137. "style": {
  7138. "position": "absolute",
  7139. "bottom": "50px",
  7140. "right": "50px",
  7141. "zIndex": "9999",
  7142. "backgroundColor": "#2268bc",
  7143. "color": "#fff",
  7144. "padding": "12px 20px",
  7145. "cursor": "pointer",
  7146. "borderRadius": "4px",
  7147. },
  7148. "innerHTML": "提交作业"
  7149. })
  7150. let aTool = ''
  7151. let _loading = document.createElement('div')
  7152. _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;"
  7153. // _loading.id = "";
  7154. let _lchild = document.createElement('div')
  7155. let _limg = document.createElement('img')
  7156. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7157. _limg.style = "width: 26px;margin-right: 10px;"
  7158. _lchild.appendChild(_limg)
  7159. let _lspan = document.createElement('span')
  7160. _lspan.innerHTML = "上传中..."
  7161. _lchild.appendChild(_lspan)
  7162. _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%);"
  7163. _loading.appendChild(_lchild)
  7164. var _box = $$('div', {
  7165. "style": {
  7166. "position": "relative",
  7167. "width": "100%",
  7168. "height": "100%",
  7169. },
  7170. })
  7171. _box.appendChild(_loading)
  7172. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7173. switch (str) {
  7174. case "whiteboard":
  7175. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  7184. })
  7185. _box.appendChild(_iframe);
  7186. _box.appendChild(_jie);
  7187. _formdiv = new U.UF.UI.form(
  7188. "电子白板",
  7189. _box, {
  7190. "id": "whiteboard" + 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/whiteBoard.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 "mind":
  7217. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  7226. })
  7227. _box.appendChild(_iframe);
  7228. _box.appendChild(_jie);
  7229. _formdiv = new U.UF.UI.form(
  7230. "思维导图",
  7231. _box, { //"/jsmind/example/demo.html"
  7232. "id": "mind" + 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. _taskbar = {
  7247. "id": str + _formdiv.id,
  7248. "style": {
  7249. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7250. },
  7251. "name": "思维导图",
  7252. "forms": _formdiv,
  7253. "click": function () {
  7254. U.MD.D.I.openApplication(str, obj, info);
  7255. }
  7256. }
  7257. break;
  7258. case "MindMap":
  7259. aTool = 3;
  7260. _iframe = $$("iframe", {
  7261. "frameborder": "no",
  7262. "border": "0",
  7263. "scrolling ": "no",
  7264. "style": {
  7265. "cssText": "border:0;width:100%;height:100%"
  7266. },
  7267. "src": "//cloud.cocorobo.cn/mind/"
  7268. })
  7269. _box.appendChild(_iframe);
  7270. _box.appendChild(_jie);
  7271. _formdiv = new U.UF.UI.form(
  7272. "思维导图",
  7273. _box, { //"/jsmind/example/demo.html"
  7274. "id": "mind" + cid + stage + task + tool,
  7275. "style": {
  7276. "width": "90%",
  7277. "height": "90%",
  7278. "overflow": 'hidden'
  7279. },
  7280. "onresize": function () { }
  7281. }, {
  7282. closecallback: function () { }
  7283. }, {
  7284. "style": {
  7285. "height": "36px"
  7286. }
  7287. }).form; //创建窗体
  7288. _taskbar = {
  7289. "id": str + _formdiv.id,
  7290. "style": {
  7291. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7292. },
  7293. "name": "思维导图",
  7294. "forms": _formdiv,
  7295. "click": function () {
  7296. U.MD.D.I.openApplication(str, obj, info);
  7297. }
  7298. }
  7299. break;
  7300. case "doc":
  7301. aTool = 6;
  7302. _iframe = $$("iframe", {
  7303. "frameborder": "no",
  7304. "border": "0",
  7305. "scrolling ": "no",
  7306. "style": {
  7307. "cssText": "border:0;width:100%;height:100%"
  7308. },
  7309. "src": "/Office/Word/WordEditArea.htm"
  7310. })
  7311. _box.appendChild(_iframe);
  7312. _box.appendChild(_jie);
  7313. _formdiv = new U.UF.UI.form(
  7314. "协同文档",
  7315. _box, {
  7316. "id": "doc" + cid + stage + task + tool,
  7317. "style": {
  7318. "width": "90%",
  7319. "height": "90%",
  7320. "overflow": 'hidden'
  7321. },
  7322. "onresize": function () { }
  7323. }, {
  7324. closecallback: function () { }
  7325. }, {
  7326. "style": {
  7327. "height": "36px"
  7328. }
  7329. }).form; //创建窗体
  7330. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7331. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7332. })
  7333. _taskbar = {
  7334. "id": str + _formdiv.id,
  7335. "style": {
  7336. "backgroundImage": "url(/img/icon/doc.png)"
  7337. },
  7338. "name": "协同文档",
  7339. "forms": _formdiv,
  7340. "click": function () {
  7341. U.MD.D.I.openApplication(str, obj, info);
  7342. }
  7343. }
  7344. break;
  7345. case "mindNetwork": //好友打开
  7346. aTool = 7;
  7347. _iframe = $$("iframe", {
  7348. "webkitallowfullscreen": "",
  7349. "mozallowfullscreen": "",
  7350. "allowfullscreen": "",
  7351. "frameborder": "no",
  7352. "border": "0",
  7353. "scrolling ": "no",
  7354. "style": {
  7355. "cssText": "border:0; width:100%; height:100%;"
  7356. },
  7357. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7358. })
  7359. _box.appendChild(_iframe);
  7360. _box.appendChild(_jie);
  7361. _formdiv = new U.UF.UI.form(
  7362. "思维网格",
  7363. _box, {
  7364. "id": "mindNetwork" + cid + stage + task + tool,
  7365. "style": {
  7366. "width": "90%",
  7367. "height": "90%",
  7368. "overflow": 'hidden'
  7369. },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, {
  7374. "style": {
  7375. "height": "36px"
  7376. }
  7377. }).form; //创建窗体
  7378. _taskbar = {
  7379. "id": str + _formdiv.id,
  7380. "style": {
  7381. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7382. },
  7383. "name": "思维网格",
  7384. "forms": _formdiv,
  7385. "click": function () {
  7386. U.MD.D.I.openApplication(str, obj, info);
  7387. }
  7388. }
  7389. break;
  7390. case "courseDesign":
  7391. _iframe = $$("iframe", {
  7392. "webkitallowfullscreen": "",
  7393. "mozallowfullscreen": "",
  7394. "allowfullscreen": "",
  7395. "frameborder": "no",
  7396. "border": "0",
  7397. "scrolling ": "no",
  7398. "style": {
  7399. "cssText": "border:0; width:100%; height:100%;"
  7400. },
  7401. "src": "/course-design-vue"
  7402. })
  7403. _box.appendChild(_iframe);
  7404. _box.appendChild(_jie);
  7405. _formdiv = new U.UF.UI.form(
  7406. "项目设计",
  7407. _box, {
  7408. "id": "courseDesign" + cid + stage + task + tool,
  7409. "style": {
  7410. "width": "90%",
  7411. "height": "90%",
  7412. "overflow": 'hidden'
  7413. },
  7414. "onresize": function () { }
  7415. }, {
  7416. closecallback: function () { }
  7417. }, {
  7418. "style": {
  7419. "height": "36px"
  7420. }
  7421. }).form; //创建窗体
  7422. _taskbar = {
  7423. "id": str + _formdiv.id,
  7424. "style": {
  7425. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7426. },
  7427. "name": "项目设计",
  7428. "forms": _formdiv,
  7429. "click": function () {
  7430. U.MD.D.I.openApplication(str, obj, info);
  7431. }
  7432. }
  7433. break;
  7434. }
  7435. const script1 = document.createElement("script");
  7436. script1.type = "text/javascript";
  7437. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7438. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7439. const script2 = document.createElement("script");
  7440. script2.type = "text/javascript";
  7441. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7442. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7443. const script3 = document.createElement("script");
  7444. script3.type = "text/javascript";
  7445. script3.charset = "UTF-8";
  7446. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7447. const script4 = document.createElement("script");
  7448. script4.type = "text/javascript";
  7449. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7450. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7451. if (_iframe) {
  7452. if (str == 'doc') {
  7453. _iframe = _formdiv.querySelector('iframe')
  7454. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7455. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7456. _iframe.contentWindow.document.body.appendChild(script1);
  7457. _iframe.contentWindow.document.body.appendChild(script2);
  7458. // _iframe.contentWindow.document.body.appendChild(script3);
  7459. _iframe.contentWindow.document.body.appendChild(script4);
  7460. })
  7461. if (onloadListener) {
  7462. _iframe.contentDocument.location.reload()
  7463. } else {
  7464. _iframe.contentDocument.location.reload()
  7465. }
  7466. } else if (str == 'courseDesign') {
  7467. U.UF.DL.iframeLoad(_iframe, function () {
  7468. // _iframe.contentWindow.U.MD.O.W.load();
  7469. // _iframe.contentWindow.document.body.appendChild(script1);
  7470. _iframe.contentWindow.document.body.appendChild(script2);
  7471. _iframe.contentWindow.document.body.appendChild(script4);
  7472. })
  7473. } else if (str == 'mind') {
  7474. _iframe = _formdiv.querySelector('iframe')
  7475. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7476. //
  7477. _iframe.contentWindow.document.body.appendChild(script1);
  7478. _iframe.contentWindow.document.body.appendChild(script2);
  7479. _iframe.contentWindow.document.body.appendChild(script4);
  7480. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7481. })
  7482. if (onloadListener) {
  7483. _iframe.contentDocument.location.reload()
  7484. } else {
  7485. _iframe.contentDocument.location.reload()
  7486. }
  7487. } else if (str == 'whiteboard') {
  7488. _iframe = _formdiv.querySelector('iframe')
  7489. let onloadListener = _iframe.onload = () => {
  7490. _iframe.contentWindow.document.body.appendChild(script1);
  7491. _iframe.contentWindow.document.body.appendChild(script2);
  7492. _iframe.contentWindow.document.body.appendChild(script4);
  7493. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7494. };
  7495. // if (onloadListener) {
  7496. // try {
  7497. // _iframe.src += "?cocorobo="+new Date().getTime()
  7498. // _iframe.contentWindow.document.location.reload()
  7499. // } catch (error) {
  7500. // }
  7501. // } else {
  7502. // _iframe.contentDocument.location.reload()
  7503. // }
  7504. } else {
  7505. _iframe.onload = () => {
  7506. _iframe.contentWindow.document.body.appendChild(script1);
  7507. _iframe.contentWindow.document.body.appendChild(script2);
  7508. // _iframe.contentWindow.document.body.appendChild(script3);
  7509. _iframe.contentWindow.document.body.appendChild(script4);
  7510. };
  7511. }
  7512. _jie.onclick = async () => {
  7513. let text = ''
  7514. if (aTool == 1) {
  7515. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7516. } else if (aTool == 6) {
  7517. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7518. } else if (aTool == 3) {
  7519. text = await U.MD.D.I.getEditorContent(_iframe);
  7520. }
  7521. _loading.style.display = 'flex'
  7522. console.log(_loading);
  7523. var _ajs = _iframe.contentWindow.document.createElement("script");
  7524. _ajs.type = "text/javascript";
  7525. _ajs.innerHTML =
  7526. // 'console.log(' + _loading + ');\n' +
  7527. 'var _js = document.createElement("script");\n' +
  7528. '_js.type="text/javascript";\n' +
  7529. '_js.charset="UTF-8";\n' +
  7530. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7531. "_js.onload = function(){\n" +
  7532. ' var a = document.getElementsByTagName("img")\n' +
  7533. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7534. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7535. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7536. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7537. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7538. "beforeUpload_shishi(file," +
  7539. "'" +
  7540. _userid +
  7541. "'" +
  7542. ", " +
  7543. "'" +
  7544. _cid +
  7545. "'" +
  7546. ", " +
  7547. "'" +
  7548. _stage +
  7549. "'" +
  7550. ", " +
  7551. "'" +
  7552. _task +
  7553. "'" +
  7554. ", " +
  7555. "'" +
  7556. _tool +
  7557. "'" +
  7558. ", " +
  7559. "'" +
  7560. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7561. "'" +
  7562. ", " +
  7563. "'" +
  7564. aTool +
  7565. "'" +
  7566. ", " +
  7567. "`" +
  7568. text +
  7569. "`" +
  7570. ")\n" +
  7571. " });\n" +
  7572. "}\n" +
  7573. "document.head.appendChild(_js);\n";
  7574. _iframe.contentWindow.document.head.appendChild(_ajs);
  7575. }
  7576. }
  7577. //U.MD.D.I.openClick(str);
  7578. //如果有任务栏信息
  7579. // if (_taskbar) {
  7580. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7581. // }
  7582. }
  7583. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7584. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7585. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7586. _userinfo = US.userInfo, //登录用户信息
  7587. _userid = US.userInfo.userid //登录用户id
  7588. let _iframe;
  7589. let _cid = cid,
  7590. _stage = stage,
  7591. _task = task,
  7592. _tool = tool;
  7593. var _jie = $$("div", {
  7594. "style": {
  7595. "position": "absolute",
  7596. "bottom": "50px",
  7597. "right": "50px",
  7598. "zIndex": "9999",
  7599. "backgroundColor": "#2268bc",
  7600. "color": "#fff",
  7601. "padding": "12px 20px",
  7602. "cursor": "pointer",
  7603. "borderRadius": "4px",
  7604. },
  7605. "innerHTML": "提交作业"
  7606. })
  7607. let aTool = ''
  7608. let _loading = document.createElement('div')
  7609. _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;"
  7610. // _loading.id = "";
  7611. let _lchild = document.createElement('div')
  7612. let _limg = document.createElement('img')
  7613. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7614. _limg.style = "width: 26px;margin-right: 10px;"
  7615. _lchild.appendChild(_limg)
  7616. let _lspan = document.createElement('span')
  7617. _lspan.innerHTML = "上传中..."
  7618. _lchild.appendChild(_lspan)
  7619. _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%);"
  7620. _loading.appendChild(_lchild)
  7621. let _box = $$('div', {
  7622. "style": {
  7623. "position": "relative",
  7624. "width": "100%",
  7625. "height": "100%",
  7626. },
  7627. })
  7628. _box.appendChild(_loading)
  7629. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7630. switch (str) {
  7631. case "whiteboard":
  7632. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  7641. })
  7642. _box.appendChild(_iframe);
  7643. _box.appendChild(_jie);
  7644. _formdiv = new U.UF.UI.form(
  7645. "电子白板",
  7646. _box, {
  7647. "id": "whiteboard" + 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/whiteBoard.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 "mind":
  7674. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  7683. })
  7684. _box.appendChild(_iframe);
  7685. _box.appendChild(_jie);
  7686. _formdiv = new U.UF.UI.form(
  7687. "思维导图",
  7688. _box, { //"/jsmind/example/demo.html"
  7689. "id": "mind" + 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. _taskbar = {
  7704. "id": str + _formdiv.id,
  7705. "style": {
  7706. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7707. },
  7708. "name": "思维导图",
  7709. "forms": _formdiv,
  7710. "click": function () {
  7711. U.MD.D.I.openApplication(str, obj, info);
  7712. }
  7713. }
  7714. break;
  7715. case "MindMap":
  7716. aTool = 3;
  7717. _iframe = $$("iframe", {
  7718. "frameborder": "no",
  7719. "border": "0",
  7720. "scrolling ": "no",
  7721. "style": {
  7722. "cssText": "border:0;width:100%;height:100%"
  7723. },
  7724. "src": "//cloud.cocorobo.cn/mind/"
  7725. })
  7726. _box.appendChild(_iframe);
  7727. _box.appendChild(_jie);
  7728. _formdiv = new U.UF.UI.form(
  7729. "思维导图",
  7730. _box, { //"/jsmind/example/demo.html"
  7731. "id": "mind" + cid + stage + task + tool,
  7732. "style": {
  7733. "width": "90%",
  7734. "height": "90%",
  7735. "overflow": 'hidden'
  7736. },
  7737. "onresize": function () { }
  7738. }, {
  7739. closecallback: function () { }
  7740. }, {
  7741. "style": {
  7742. "height": "36px"
  7743. }
  7744. }).form; //创建窗体
  7745. _taskbar = {
  7746. "id": str + _formdiv.id,
  7747. "style": {
  7748. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7749. },
  7750. "name": "思维导图",
  7751. "forms": _formdiv,
  7752. "click": function () {
  7753. U.MD.D.I.openApplication(str, obj, info);
  7754. }
  7755. }
  7756. break;
  7757. case "doc":
  7758. aTool = 6;
  7759. _iframe = $$("iframe", {
  7760. "frameborder": "no",
  7761. "border": "0",
  7762. "scrolling ": "no",
  7763. "style": {
  7764. "cssText": "border:0;width:100%;height:100%"
  7765. },
  7766. "src": "/Office/Word/WordEditArea.htm"
  7767. })
  7768. _box.appendChild(_iframe);
  7769. _box.appendChild(_jie);
  7770. _formdiv = new U.UF.UI.form(
  7771. "协同文档",
  7772. _box, {
  7773. "id": "doc" + cid + stage + task + tool,
  7774. "style": {
  7775. "width": "90%",
  7776. "height": "90%",
  7777. "overflow": 'hidden'
  7778. },
  7779. "onresize": function () { }
  7780. }, {
  7781. closecallback: function () { }
  7782. }, {
  7783. "style": {
  7784. "height": "36px"
  7785. }
  7786. }).form; //创建窗体
  7787. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7788. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7789. })
  7790. _taskbar = {
  7791. "id": str + _formdiv.id,
  7792. "style": {
  7793. "backgroundImage": "url(/img/icon/doc.png)"
  7794. },
  7795. "name": "协同文档",
  7796. "forms": _formdiv,
  7797. "click": function () {
  7798. U.MD.D.I.openApplication(str, obj, info);
  7799. }
  7800. }
  7801. break;
  7802. case "mindNetwork": //好友打开
  7803. aTool = 7;
  7804. _iframe = $$("iframe", {
  7805. "webkitallowfullscreen": "",
  7806. "mozallowfullscreen": "",
  7807. "allowfullscreen": "",
  7808. "frameborder": "no",
  7809. "border": "0",
  7810. "scrolling ": "no",
  7811. "style": {
  7812. "cssText": "border:0; width:100%; height:100%;"
  7813. },
  7814. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7815. })
  7816. _box.appendChild(_iframe);
  7817. _box.appendChild(_jie);
  7818. _formdiv = new U.UF.UI.form(
  7819. "思维网格",
  7820. _box, {
  7821. "id": "mindNetwork" + cid + stage + task + tool,
  7822. "style": {
  7823. "width": "90%",
  7824. "height": "90%",
  7825. "overflow": 'hidden'
  7826. },
  7827. "onresize": function () { }
  7828. }, {
  7829. closecallback: function () { }
  7830. }, {
  7831. "style": {
  7832. "height": "36px"
  7833. }
  7834. }).form; //创建窗体
  7835. _taskbar = {
  7836. "id": str + _formdiv.id,
  7837. "style": {
  7838. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7839. },
  7840. "name": "思维网格",
  7841. "forms": _formdiv,
  7842. "click": function () {
  7843. U.MD.D.I.openApplication(str, obj, info);
  7844. }
  7845. }
  7846. break;
  7847. case "courseDesign":
  7848. _iframe = $$("iframe", {
  7849. "webkitallowfullscreen": "",
  7850. "mozallowfullscreen": "",
  7851. "allowfullscreen": "",
  7852. "frameborder": "no",
  7853. "border": "0",
  7854. "scrolling ": "no",
  7855. "style": {
  7856. "cssText": "border:0; width:100%; height:100%;"
  7857. },
  7858. "src": "/course-design-vue"
  7859. })
  7860. _box.appendChild(_iframe);
  7861. _box.appendChild(_jie);
  7862. _formdiv = new U.UF.UI.form(
  7863. "项目设计",
  7864. _box, {
  7865. "id": "courseDesign" + cid + stage + task + tool,
  7866. "style": {
  7867. "width": "90%",
  7868. "height": "90%",
  7869. "overflow": 'hidden'
  7870. },
  7871. "onresize": function () { }
  7872. }, {
  7873. closecallback: function () { }
  7874. }, {
  7875. "style": {
  7876. "height": "36px"
  7877. }
  7878. }).form; //创建窗体
  7879. _taskbar = {
  7880. "id": str + _formdiv.id,
  7881. "style": {
  7882. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7883. },
  7884. "name": "项目设计",
  7885. "forms": _formdiv,
  7886. "click": function () {
  7887. U.MD.D.I.openApplication(str, obj, info);
  7888. }
  7889. }
  7890. break;
  7891. }
  7892. const script1 = document.createElement("script");
  7893. script1.type = "text/javascript";
  7894. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7895. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7896. const script2 = document.createElement("script");
  7897. script2.type = "text/javascript";
  7898. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7899. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7900. const script3 = document.createElement("script");
  7901. script3.type = "text/javascript";
  7902. script3.charset = "UTF-8";
  7903. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7904. const script4 = document.createElement("script");
  7905. script4.type = "text/javascript";
  7906. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7907. script4.src = window.origin + "/js/Common/jietu2E.js";
  7908. if (_iframe) {
  7909. if (str == 'doc') {
  7910. _iframe = _formdiv.querySelector('iframe')
  7911. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7912. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7913. _iframe.contentWindow.document.body.appendChild(script1);
  7914. _iframe.contentWindow.document.body.appendChild(script2);
  7915. // _iframe.contentWindow.document.body.appendChild(script3);
  7916. _iframe.contentWindow.document.body.appendChild(script4);
  7917. })
  7918. if (onloadListener) {
  7919. _iframe.contentDocument.location.reload()
  7920. } else {
  7921. _iframe.contentDocument.location.reload()
  7922. }
  7923. } else if (str == 'courseDesign') {
  7924. U.UF.DL.iframeLoad(_iframe, function () {
  7925. // _iframe.contentWindow.U.MD.O.W.load();
  7926. // _iframe.contentWindow.document.body.appendChild(script1);
  7927. _iframe.contentWindow.document.body.appendChild(script2);
  7928. _iframe.contentWindow.document.body.appendChild(script4);
  7929. })
  7930. } else if (str == 'mind') {
  7931. _iframe = _formdiv.querySelector('iframe')
  7932. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7933. //
  7934. _iframe.contentWindow.document.body.appendChild(script1);
  7935. _iframe.contentWindow.document.body.appendChild(script2);
  7936. _iframe.contentWindow.document.body.appendChild(script4);
  7937. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7938. })
  7939. if (onloadListener) {
  7940. _iframe.contentDocument.location.reload()
  7941. } else {
  7942. _iframe.contentDocument.location.reload()
  7943. }
  7944. } else if (str == 'whiteboard') {
  7945. _iframe = _formdiv.querySelector('iframe')
  7946. let onloadListener = _iframe.onload = () => {
  7947. _iframe.contentWindow.document.body.appendChild(script1);
  7948. _iframe.contentWindow.document.body.appendChild(script2);
  7949. _iframe.contentWindow.document.body.appendChild(script4);
  7950. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7951. };
  7952. // if (onloadListener) {
  7953. // try {
  7954. // _iframe.src += "?cocorobo="+new Date().getTime()
  7955. // _iframe.contentWindow.document.location.reload()
  7956. // } catch (error) {
  7957. // }
  7958. // } else {
  7959. // _iframe.contentDocument.location.reload()
  7960. // }
  7961. } else {
  7962. _iframe.onload = () => {
  7963. _iframe.contentWindow.document.body.appendChild(script1);
  7964. _iframe.contentWindow.document.body.appendChild(script2);
  7965. // _iframe.contentWindow.document.body.appendChild(script3);
  7966. _iframe.contentWindow.document.body.appendChild(script4);
  7967. };
  7968. }
  7969. _jie.onclick = async () => {
  7970. let text = ''
  7971. if (aTool == 1) {
  7972. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7973. } else if (aTool == 6) {
  7974. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7975. } else if (aTool == 3) {
  7976. text = await U.MD.D.I.getEditorContent(_iframe);
  7977. }
  7978. _loading.style.display = 'flex'
  7979. console.log(_loading);
  7980. var _ajs = _iframe.contentWindow.document.createElement("script");
  7981. _ajs.type = "text/javascript";
  7982. _ajs.innerHTML =
  7983. // 'console.log(' + _loading + ');\n' +
  7984. 'var _js = document.createElement("script");\n' +
  7985. '_js.type="text/javascript";\n' +
  7986. '_js.charset="UTF-8";\n' +
  7987. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7988. "_js.onload = function(){\n" +
  7989. ' var a = document.getElementsByTagName("img")\n' +
  7990. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7991. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7992. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7993. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7994. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7995. "beforeUpload_shishi(file," +
  7996. "'" +
  7997. _userid +
  7998. "'" +
  7999. ", " +
  8000. "'" +
  8001. _cid +
  8002. "'" +
  8003. ", " +
  8004. "'" +
  8005. _stage +
  8006. "'" +
  8007. ", " +
  8008. "'" +
  8009. _task +
  8010. "'" +
  8011. ", " +
  8012. "'" +
  8013. _tool +
  8014. "'" +
  8015. ", " +
  8016. "'" +
  8017. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8018. "'" +
  8019. ", " +
  8020. "'" +
  8021. aTool +
  8022. "'" +
  8023. ", " +
  8024. "`" +
  8025. text +
  8026. "`" +
  8027. ")\n" +
  8028. " });\n" +
  8029. "}\n" +
  8030. "document.head.appendChild(_js);\n";
  8031. _iframe.contentWindow.document.head.appendChild(_ajs);
  8032. }
  8033. }
  8034. //U.MD.D.I.openClick(str);
  8035. //如果有任务栏信息
  8036. // if (_taskbar) {
  8037. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8038. // }
  8039. }
  8040. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8041. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8042. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8043. _userid = student.userid, //登录用户id
  8044. _username = student.student //用户名字
  8045. let _iframe;
  8046. let _cid = cid,
  8047. _stage = stage,
  8048. _task = task,
  8049. _tool = tool;
  8050. var _jie = $$("div", {
  8051. "style": {
  8052. "position": "absolute",
  8053. "bottom": "50px",
  8054. "right": "50px",
  8055. "zIndex": "9999",
  8056. "backgroundColor": "#2268bc",
  8057. "color": "#fff",
  8058. "padding": "12px 20px",
  8059. "cursor": "pointer",
  8060. "borderRadius": "4px",
  8061. },
  8062. "innerHTML": "提交作业"
  8063. })
  8064. let aTool = ''
  8065. let _loading = document.createElement('div')
  8066. _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;"
  8067. // _loading.id = "";
  8068. let _lchild = document.createElement('div')
  8069. let _limg = document.createElement('img')
  8070. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8071. _limg.style = "width: 26px;margin-right: 10px;"
  8072. _lchild.appendChild(_limg)
  8073. let _lspan = document.createElement('span')
  8074. _lspan.innerHTML = "上传中..."
  8075. _lchild.appendChild(_lspan)
  8076. _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%);"
  8077. _loading.appendChild(_lchild)
  8078. var _box = $$('div', {
  8079. "style": {
  8080. "position": "relative",
  8081. "width": "100%",
  8082. "height": "100%",
  8083. },
  8084. })
  8085. _box.appendChild(_loading)
  8086. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8087. switch (str) {
  8088. case "whiteboard":
  8089. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  8098. })
  8099. _box.appendChild(_iframe);
  8100. _box.appendChild(_jie);
  8101. _formdiv = new U.UF.UI.form(
  8102. "电子白板-" + _username,
  8103. _box, {
  8104. "id": "whiteboard" + 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/whiteBoard.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 "mind":
  8131. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  8140. })
  8141. _box.appendChild(_iframe);
  8142. _box.appendChild(_jie);
  8143. _formdiv = new U.UF.UI.form(
  8144. "思维导图-" + _username,
  8145. _box, { //"/jsmind/example/demo.html"
  8146. "id": "mind" + 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. _taskbar = {
  8161. "id": str + _formdiv.id,
  8162. "style": {
  8163. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8164. },
  8165. "name": "思维导图",
  8166. "forms": _formdiv,
  8167. "click": function () {
  8168. U.MD.D.I.openApplication(str, obj, info);
  8169. }
  8170. }
  8171. break;
  8172. case "MindMap":
  8173. aTool = 3;
  8174. _iframe = $$("iframe", {
  8175. "frameborder": "no",
  8176. "border": "0",
  8177. "scrolling ": "no",
  8178. "style": {
  8179. "cssText": "border:0;width:100%;height:100%"
  8180. },
  8181. "src": "//cloud.cocorobo.cn/mind/"
  8182. })
  8183. _box.appendChild(_iframe);
  8184. _box.appendChild(_jie);
  8185. _formdiv = new U.UF.UI.form(
  8186. "思维导图-" + _username,
  8187. _box, { //"/jsmind/example/demo.html"
  8188. "id": "mind" + cid + stage + task + tool + _userid,
  8189. "style": {
  8190. "width": "90%",
  8191. "height": "90%",
  8192. "overflow": 'hidden'
  8193. },
  8194. "onresize": function () { }
  8195. }, {
  8196. closecallback: function () { }
  8197. }, {
  8198. "style": {
  8199. "height": "36px"
  8200. }
  8201. }).form; //创建窗体
  8202. _taskbar = {
  8203. "id": str + _formdiv.id,
  8204. "style": {
  8205. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8206. },
  8207. "name": "思维导图",
  8208. "forms": _formdiv,
  8209. "click": function () {
  8210. U.MD.D.I.openApplication(str, obj, info);
  8211. }
  8212. }
  8213. break;
  8214. case "doc":
  8215. aTool = 6;
  8216. _iframe = $$("iframe", {
  8217. "frameborder": "no",
  8218. "border": "0",
  8219. "scrolling ": "no",
  8220. "style": {
  8221. "cssText": "border:0;width:100%;height:100%"
  8222. },
  8223. "src": "/Office/Word/WordEditArea.htm"
  8224. })
  8225. _box.appendChild(_iframe);
  8226. _box.appendChild(_jie);
  8227. _formdiv = new U.UF.UI.form(
  8228. "协同文档-" + _username,
  8229. _box, {
  8230. "id": "doc" + cid + stage + task + tool + _userid,
  8231. "style": {
  8232. "width": "90%",
  8233. "height": "90%",
  8234. "overflow": 'hidden'
  8235. },
  8236. "onresize": function () { }
  8237. }, {
  8238. closecallback: function () { }
  8239. }, {
  8240. "style": {
  8241. "height": "36px"
  8242. }
  8243. }).form; //创建窗体
  8244. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8245. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8246. })
  8247. _taskbar = {
  8248. "id": str + _formdiv.id,
  8249. "style": {
  8250. "backgroundImage": "url(/img/icon/doc.png)"
  8251. },
  8252. "name": "协同文档",
  8253. "forms": _formdiv,
  8254. "click": function () {
  8255. U.MD.D.I.openApplication(str, obj, info);
  8256. }
  8257. }
  8258. break;
  8259. case "mindNetwork": //好友打开
  8260. aTool = 7;
  8261. _iframe = $$("iframe", {
  8262. "webkitallowfullscreen": "",
  8263. "mozallowfullscreen": "",
  8264. "allowfullscreen": "",
  8265. "frameborder": "no",
  8266. "border": "0",
  8267. "scrolling ": "no",
  8268. "style": {
  8269. "cssText": "border:0; width:100%; height:100%;"
  8270. },
  8271. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8272. })
  8273. _box.appendChild(_iframe);
  8274. _box.appendChild(_jie);
  8275. _formdiv = new U.UF.UI.form(
  8276. "思维网格-" + _username,
  8277. _box, {
  8278. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8279. "style": {
  8280. "width": "90%",
  8281. "height": "90%",
  8282. "overflow": 'hidden'
  8283. },
  8284. "onresize": function () { }
  8285. }, {
  8286. closecallback: function () { }
  8287. }, {
  8288. "style": {
  8289. "height": "36px"
  8290. }
  8291. }).form; //创建窗体
  8292. _taskbar = {
  8293. "id": str + _formdiv.id,
  8294. "style": {
  8295. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8296. },
  8297. "name": "思维网格",
  8298. "forms": _formdiv,
  8299. "click": function () {
  8300. U.MD.D.I.openApplication(str, obj, info);
  8301. }
  8302. }
  8303. break;
  8304. case "courseDesign":
  8305. _iframe = $$("iframe", {
  8306. "webkitallowfullscreen": "",
  8307. "mozallowfullscreen": "",
  8308. "allowfullscreen": "",
  8309. "frameborder": "no",
  8310. "border": "0",
  8311. "scrolling ": "no",
  8312. "style": {
  8313. "cssText": "border:0; width:100%; height:100%;"
  8314. },
  8315. "src": "/course-design-vue"
  8316. })
  8317. _box.appendChild(_iframe);
  8318. _box.appendChild(_jie);
  8319. _formdiv = new U.UF.UI.form(
  8320. "项目设计-" + _username,
  8321. _box, {
  8322. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8323. "style": {
  8324. "width": "90%",
  8325. "height": "90%",
  8326. "overflow": 'hidden'
  8327. },
  8328. "onresize": function () { }
  8329. }, {
  8330. closecallback: function () { }
  8331. }, {
  8332. "style": {
  8333. "height": "36px"
  8334. }
  8335. }).form; //创建窗体
  8336. _taskbar = {
  8337. "id": str + _formdiv.id,
  8338. "style": {
  8339. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8340. },
  8341. "name": "项目设计",
  8342. "forms": _formdiv,
  8343. "click": function () {
  8344. U.MD.D.I.openApplication(str, obj, info);
  8345. }
  8346. }
  8347. break;
  8348. }
  8349. const script1 = document.createElement("script");
  8350. script1.type = "text/javascript";
  8351. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8352. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8353. const script2 = document.createElement("script");
  8354. script2.type = "text/javascript";
  8355. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8356. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8357. const script3 = document.createElement("script");
  8358. script3.type = "text/javascript";
  8359. script3.charset = "UTF-8";
  8360. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8361. const script4 = document.createElement("script");
  8362. script4.type = "text/javascript";
  8363. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8364. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8365. if (_iframe) {
  8366. if (str == 'doc') {
  8367. _iframe = _formdiv.querySelector('iframe')
  8368. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8369. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8370. _iframe.contentWindow.document.body.appendChild(script1);
  8371. _iframe.contentWindow.document.body.appendChild(script2);
  8372. // _iframe.contentWindow.document.body.appendChild(script3);
  8373. _iframe.contentWindow.document.body.appendChild(script4);
  8374. })
  8375. if (onloadListener) {
  8376. _iframe.contentDocument.location.reload()
  8377. } else {
  8378. _iframe.contentDocument.location.reload()
  8379. }
  8380. } else if (str == 'courseDesign') {
  8381. U.UF.DL.iframeLoad(_iframe, function () {
  8382. // _iframe.contentWindow.U.MD.O.W.load();
  8383. // _iframe.contentWindow.document.body.appendChild(script1);
  8384. _iframe.contentWindow.document.body.appendChild(script2);
  8385. _iframe.contentWindow.document.body.appendChild(script4);
  8386. })
  8387. } else if (str == 'mind') {
  8388. _iframe = _formdiv.querySelector('iframe')
  8389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8390. //
  8391. _iframe.contentWindow.document.body.appendChild(script1);
  8392. _iframe.contentWindow.document.body.appendChild(script2);
  8393. _iframe.contentWindow.document.body.appendChild(script4);
  8394. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8395. })
  8396. if (onloadListener) {
  8397. _iframe.contentDocument.location.reload()
  8398. } else {
  8399. _iframe.contentDocument.location.reload()
  8400. }
  8401. } else if (str == 'whiteboard') {
  8402. _iframe = _formdiv.querySelector('iframe')
  8403. let onloadListener = _iframe.onload = () => {
  8404. _iframe.contentWindow.document.body.appendChild(script1);
  8405. _iframe.contentWindow.document.body.appendChild(script2);
  8406. _iframe.contentWindow.document.body.appendChild(script4);
  8407. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8408. };
  8409. // if (onloadListener) {
  8410. // try {
  8411. // _iframe.src += "?cocorobo="+new Date().getTime()
  8412. // _iframe.contentWindow.document.location.reload()
  8413. // } catch (error) {
  8414. // }
  8415. // } else {
  8416. // _iframe.contentDocument.location.reload()
  8417. // }
  8418. } else {
  8419. _iframe.onload = () => {
  8420. _iframe.contentWindow.document.body.appendChild(script1);
  8421. _iframe.contentWindow.document.body.appendChild(script2);
  8422. // _iframe.contentWindow.document.body.appendChild(script3);
  8423. _iframe.contentWindow.document.body.appendChild(script4);
  8424. };
  8425. }
  8426. _jie.onclick = async () => {
  8427. let text = ''
  8428. if (aTool == 1) {
  8429. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8430. } else if (aTool == 6) {
  8431. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8432. } else if (aTool == 3) {
  8433. text = await U.MD.D.I.getEditorContent(_iframe);
  8434. }
  8435. _loading.style.display = 'flex'
  8436. console.log(_loading);
  8437. var _ajs = _iframe.contentWindow.document.createElement("script");
  8438. _ajs.type = "text/javascript";
  8439. _ajs.innerHTML =
  8440. // 'console.log(' + _loading + ');\n' +
  8441. 'var _js = document.createElement("script");\n' +
  8442. '_js.type="text/javascript";\n' +
  8443. '_js.charset="UTF-8";\n' +
  8444. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8445. "_js.onload = function(){\n" +
  8446. ' var a = document.getElementsByTagName("img")\n' +
  8447. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8448. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8449. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8450. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8451. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8452. "beforeUpload_shishi(file," +
  8453. "'" +
  8454. _userid +
  8455. "'" +
  8456. ", " +
  8457. "'" +
  8458. _cid +
  8459. "'" +
  8460. ", " +
  8461. "'" +
  8462. _stage +
  8463. "'" +
  8464. ", " +
  8465. "'" +
  8466. _task +
  8467. "'" +
  8468. ", " +
  8469. "'" +
  8470. _tool +
  8471. "'" +
  8472. ", " +
  8473. "'" +
  8474. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8475. "'" +
  8476. ", " +
  8477. "'" +
  8478. aTool +
  8479. "'" +
  8480. ", " +
  8481. "`" +
  8482. text +
  8483. "`" +
  8484. ")\n" +
  8485. " });\n" +
  8486. "}\n" +
  8487. "document.head.appendChild(_js);\n";
  8488. _iframe.contentWindow.document.head.appendChild(_ajs);
  8489. }
  8490. }
  8491. }
  8492. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8493. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8494. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8495. _userid = student.userid, //登录用户id
  8496. _username = student.student //用户名字
  8497. let _iframe;
  8498. let _cid = cid,
  8499. _stage = stage,
  8500. _task = task,
  8501. _tool = tool;
  8502. var _jie = $$("div", {
  8503. "style": {
  8504. "position": "absolute",
  8505. "bottom": "50px",
  8506. "right": "50px",
  8507. "zIndex": "9999",
  8508. "backgroundColor": "#2268bc",
  8509. "color": "#fff",
  8510. "padding": "12px 20px",
  8511. "cursor": "pointer",
  8512. "borderRadius": "4px",
  8513. },
  8514. "innerHTML": "提交作业"
  8515. })
  8516. let aTool = ''
  8517. let _loading = document.createElement('div')
  8518. _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;"
  8519. // _loading.id = "";
  8520. let _lchild = document.createElement('div')
  8521. let _limg = document.createElement('img')
  8522. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8523. _limg.style = "width: 26px;margin-right: 10px;"
  8524. _lchild.appendChild(_limg)
  8525. let _lspan = document.createElement('span')
  8526. _lspan.innerHTML = "上传中..."
  8527. _lchild.appendChild(_lspan)
  8528. _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%);"
  8529. _loading.appendChild(_lchild)
  8530. var _box = $$('div', {
  8531. "style": {
  8532. "position": "relative",
  8533. "width": "100%",
  8534. "height": "100%",
  8535. },
  8536. })
  8537. _box.appendChild(_loading)
  8538. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8539. switch (str) {
  8540. case "whiteboard":
  8541. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  8550. })
  8551. _box.appendChild(_iframe);
  8552. _box.appendChild(_jie);
  8553. _formdiv = new U.UF.UI.form(
  8554. "电子白板-" + _username,
  8555. _box, {
  8556. "id": "whiteboard" + 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/whiteBoard.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 "mind":
  8583. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  8592. })
  8593. _box.appendChild(_iframe);
  8594. _box.appendChild(_jie);
  8595. _formdiv = new U.UF.UI.form(
  8596. "思维导图-" + _username,
  8597. _box, { //"/jsmind/example/demo.html"
  8598. "id": "mind" + 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. _taskbar = {
  8613. "id": str + _formdiv.id,
  8614. "style": {
  8615. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8616. },
  8617. "name": "思维导图",
  8618. "forms": _formdiv,
  8619. "click": function () {
  8620. U.MD.D.I.openApplication(str, obj, info);
  8621. }
  8622. }
  8623. break;
  8624. case "MindMap":
  8625. aTool = 3;
  8626. _iframe = $$("iframe", {
  8627. "frameborder": "no",
  8628. "border": "0",
  8629. "scrolling ": "no",
  8630. "style": {
  8631. "cssText": "border:0;width:100%;height:100%"
  8632. },
  8633. "src": "//cloud.cocorobo.cn/mind/"
  8634. })
  8635. _box.appendChild(_iframe);
  8636. _box.appendChild(_jie);
  8637. _formdiv = new U.UF.UI.form(
  8638. "思维导图-" + _username,
  8639. _box, { //"/jsmind/example/demo.html"
  8640. "id": "mind" + cid + stage + task + tool + _userid,
  8641. "style": {
  8642. "width": "90%",
  8643. "height": "90%",
  8644. "overflow": 'hidden'
  8645. },
  8646. "onresize": function () { }
  8647. }, {
  8648. closecallback: function () { }
  8649. }, {
  8650. "style": {
  8651. "height": "36px"
  8652. }
  8653. }).form; //创建窗体
  8654. _taskbar = {
  8655. "id": str + _formdiv.id,
  8656. "style": {
  8657. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8658. },
  8659. "name": "思维导图",
  8660. "forms": _formdiv,
  8661. "click": function () {
  8662. U.MD.D.I.openApplication(str, obj, info);
  8663. }
  8664. }
  8665. break;
  8666. case "doc":
  8667. aTool = 6;
  8668. _iframe = $$("iframe", {
  8669. "frameborder": "no",
  8670. "border": "0",
  8671. "scrolling ": "no",
  8672. "style": {
  8673. "cssText": "border:0;width:100%;height:100%"
  8674. },
  8675. "src": "/Office/Word/WordEditArea.htm"
  8676. })
  8677. _box.appendChild(_iframe);
  8678. _box.appendChild(_jie);
  8679. _formdiv = new U.UF.UI.form(
  8680. "协同文档-" + _username,
  8681. _box, {
  8682. "id": "doc" + cid + stage + task + tool + _userid,
  8683. "style": {
  8684. "width": "90%",
  8685. "height": "90%",
  8686. "overflow": 'hidden'
  8687. },
  8688. "onresize": function () { }
  8689. }, {
  8690. closecallback: function () { }
  8691. }, {
  8692. "style": {
  8693. "height": "36px"
  8694. }
  8695. }).form; //创建窗体
  8696. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8697. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8698. })
  8699. _taskbar = {
  8700. "id": str + _formdiv.id,
  8701. "style": {
  8702. "backgroundImage": "url(/img/icon/doc.png)"
  8703. },
  8704. "name": "协同文档",
  8705. "forms": _formdiv,
  8706. "click": function () {
  8707. U.MD.D.I.openApplication(str, obj, info);
  8708. }
  8709. }
  8710. break;
  8711. case "mindNetwork": //好友打开
  8712. aTool = 7;
  8713. _iframe = $$("iframe", {
  8714. "webkitallowfullscreen": "",
  8715. "mozallowfullscreen": "",
  8716. "allowfullscreen": "",
  8717. "frameborder": "no",
  8718. "border": "0",
  8719. "scrolling ": "no",
  8720. "style": {
  8721. "cssText": "border:0; width:100%; height:100%;"
  8722. },
  8723. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8724. })
  8725. _box.appendChild(_iframe);
  8726. _box.appendChild(_jie);
  8727. _formdiv = new U.UF.UI.form(
  8728. "思维网格-" + _username,
  8729. _box, {
  8730. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8731. "style": {
  8732. "width": "90%",
  8733. "height": "90%",
  8734. "overflow": 'hidden'
  8735. },
  8736. "onresize": function () { }
  8737. }, {
  8738. closecallback: function () { }
  8739. }, {
  8740. "style": {
  8741. "height": "36px"
  8742. }
  8743. }).form; //创建窗体
  8744. _taskbar = {
  8745. "id": str + _formdiv.id,
  8746. "style": {
  8747. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8748. },
  8749. "name": "思维网格",
  8750. "forms": _formdiv,
  8751. "click": function () {
  8752. U.MD.D.I.openApplication(str, obj, info);
  8753. }
  8754. }
  8755. break;
  8756. case "courseDesign":
  8757. _iframe = $$("iframe", {
  8758. "webkitallowfullscreen": "",
  8759. "mozallowfullscreen": "",
  8760. "allowfullscreen": "",
  8761. "frameborder": "no",
  8762. "border": "0",
  8763. "scrolling ": "no",
  8764. "style": {
  8765. "cssText": "border:0; width:100%; height:100%;"
  8766. },
  8767. "src": "/course-design-vue"
  8768. })
  8769. _box.appendChild(_iframe);
  8770. _box.appendChild(_jie);
  8771. _formdiv = new U.UF.UI.form(
  8772. "项目设计-" + _username,
  8773. _box, {
  8774. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8775. "style": {
  8776. "width": "90%",
  8777. "height": "90%",
  8778. "overflow": 'hidden'
  8779. },
  8780. "onresize": function () { }
  8781. }, {
  8782. closecallback: function () { }
  8783. }, {
  8784. "style": {
  8785. "height": "36px"
  8786. }
  8787. }).form; //创建窗体
  8788. _taskbar = {
  8789. "id": str + _formdiv.id,
  8790. "style": {
  8791. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8792. },
  8793. "name": "项目设计",
  8794. "forms": _formdiv,
  8795. "click": function () {
  8796. U.MD.D.I.openApplication(str, obj, info);
  8797. }
  8798. }
  8799. break;
  8800. }
  8801. const script1 = document.createElement("script");
  8802. script1.type = "text/javascript";
  8803. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8804. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8805. const script2 = document.createElement("script");
  8806. script2.type = "text/javascript";
  8807. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8808. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8809. const script3 = document.createElement("script");
  8810. script3.type = "text/javascript";
  8811. script3.charset = "UTF-8";
  8812. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8813. const script4 = document.createElement("script");
  8814. script4.type = "text/javascript";
  8815. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8816. script4.src = window.origin + "/js/Common/jietu2E.js";
  8817. if (_iframe) {
  8818. if (str == 'doc') {
  8819. _iframe = _formdiv.querySelector('iframe')
  8820. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8821. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8822. _iframe.contentWindow.document.body.appendChild(script1);
  8823. _iframe.contentWindow.document.body.appendChild(script2);
  8824. // _iframe.contentWindow.document.body.appendChild(script3);
  8825. _iframe.contentWindow.document.body.appendChild(script4);
  8826. })
  8827. if (onloadListener) {
  8828. _iframe.contentDocument.location.reload()
  8829. } else {
  8830. _iframe.contentDocument.location.reload()
  8831. }
  8832. } else if (str == 'courseDesign') {
  8833. U.UF.DL.iframeLoad(_iframe, function () {
  8834. // _iframe.contentWindow.U.MD.O.W.load();
  8835. // _iframe.contentWindow.document.body.appendChild(script1);
  8836. _iframe.contentWindow.document.body.appendChild(script2);
  8837. _iframe.contentWindow.document.body.appendChild(script4);
  8838. })
  8839. } else if (str == 'mind') {
  8840. _iframe = _formdiv.querySelector('iframe')
  8841. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8842. //
  8843. _iframe.contentWindow.document.body.appendChild(script1);
  8844. _iframe.contentWindow.document.body.appendChild(script2);
  8845. _iframe.contentWindow.document.body.appendChild(script4);
  8846. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8847. })
  8848. if (onloadListener) {
  8849. _iframe.contentDocument.location.reload()
  8850. } else {
  8851. _iframe.contentDocument.location.reload()
  8852. }
  8853. } else if (str == 'whiteboard') {
  8854. _iframe = _formdiv.querySelector('iframe')
  8855. let onloadListener = _iframe.onload = () => {
  8856. _iframe.contentWindow.document.body.appendChild(script1);
  8857. _iframe.contentWindow.document.body.appendChild(script2);
  8858. _iframe.contentWindow.document.body.appendChild(script4);
  8859. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8860. };
  8861. // if (onloadListener) {
  8862. // try {
  8863. // _iframe.src += "?cocorobo="+new Date().getTime()
  8864. // _iframe.contentWindow.document.location.reload()
  8865. // } catch (error) {
  8866. // }
  8867. // } else {
  8868. // _iframe.contentDocument.location.reload()
  8869. // }
  8870. } else {
  8871. _iframe.onload = () => {
  8872. _iframe.contentWindow.document.body.appendChild(script1);
  8873. _iframe.contentWindow.document.body.appendChild(script2);
  8874. // _iframe.contentWindow.document.body.appendChild(script3);
  8875. _iframe.contentWindow.document.body.appendChild(script4);
  8876. };
  8877. }
  8878. _jie.onclick = async () => {
  8879. let text = ''
  8880. if (aTool == 1) {
  8881. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8882. } else if (aTool == 6) {
  8883. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8884. } else if (aTool == 3) {
  8885. text = await U.MD.D.I.getEditorContent(_iframe);
  8886. }
  8887. _loading.style.display = 'flex'
  8888. console.log(_loading);
  8889. var _ajs = _iframe.contentWindow.document.createElement("script");
  8890. _ajs.type = "text/javascript";
  8891. _ajs.innerHTML =
  8892. // 'console.log(' + _loading + ');\n' +
  8893. 'var _js = document.createElement("script");\n' +
  8894. '_js.type="text/javascript";\n' +
  8895. '_js.charset="UTF-8";\n' +
  8896. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8897. "_js.onload = function(){\n" +
  8898. ' var a = document.getElementsByTagName("img")\n' +
  8899. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8900. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8901. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8902. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8903. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8904. "beforeUpload_shishi(file," +
  8905. "'" +
  8906. _userid +
  8907. "'" +
  8908. ", " +
  8909. "'" +
  8910. _cid +
  8911. "'" +
  8912. ", " +
  8913. "'" +
  8914. _stage +
  8915. "'" +
  8916. ", " +
  8917. "'" +
  8918. _task +
  8919. "'" +
  8920. ", " +
  8921. "'" +
  8922. _tool +
  8923. "'" +
  8924. ", " +
  8925. "'" +
  8926. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8927. "'" +
  8928. ", " +
  8929. "'" +
  8930. aTool +
  8931. "'" +
  8932. ", " +
  8933. "`" +
  8934. text +
  8935. "`" +
  8936. ")\n" +
  8937. " });\n" +
  8938. "}\n" +
  8939. "document.head.appendChild(_js);\n";
  8940. _iframe.contentWindow.document.head.appendChild(_ajs);
  8941. }
  8942. }
  8943. }
  8944. U.MD.D.I.getEditorContent = function (iframe) {
  8945. return new Promise((resolve, reject) => {
  8946. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8947. console.log(content);
  8948. resolve(content)
  8949. });
  8950. });
  8951. }
  8952. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8953. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8954. // if (res.value[0].length > 0) {
  8955. // // resolve(res.value[0][0].text);
  8956. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8957. // $(fileInput).val('');
  8958. // });
  8959. // }
  8960. // }, [], { "type": "GET", "withCredentials": true });
  8961. var xmlhttp;
  8962. var Mac, Sn, DeviceId
  8963. if (window.XMLHttpRequest) {
  8964. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8965. xmlhttp = new XMLHttpRequest();
  8966. } else {
  8967. // IE6, IE5 浏览器执行代码
  8968. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8969. }
  8970. xmlhttp.onreadystatechange = function () {
  8971. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8972. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8973. // resolve(res.value[0][0].text);
  8974. if (type == '2') {
  8975. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8976. } else if (type == '3') {
  8977. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8978. }
  8979. } else {
  8980. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8981. }
  8982. }
  8983. }
  8984. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8985. xmlhttp.send();
  8986. }
  8987. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8988. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8989. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8990. _userinfo = US.userInfo, //登录用户信息
  8991. _userid = US.userInfo.userid //登录用户id
  8992. let _iframe;
  8993. let _cid = cid,
  8994. _stage = stage,
  8995. _task = task,
  8996. _tool = tool;
  8997. var _jie = $$("div", {
  8998. "style": {
  8999. "position": "absolute",
  9000. "bottom": "50px",
  9001. "right": "50px",
  9002. "zIndex": "9999",
  9003. "backgroundColor": "#2268bc",
  9004. "color": "#fff",
  9005. "padding": "12px 20px",
  9006. "cursor": "pointer",
  9007. "borderRadius": "4px",
  9008. },
  9009. "innerHTML": "确认并提交"
  9010. })
  9011. let aTool = ''
  9012. let _loading = document.createElement('div')
  9013. _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;"
  9014. // _loading.id = "";
  9015. let _lchild = document.createElement('div')
  9016. let _limg = document.createElement('img')
  9017. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9018. _limg.style = "width: 26px;margin-right: 10px;"
  9019. _lchild.appendChild(_limg)
  9020. let _lspan = document.createElement('span')
  9021. _lspan.innerHTML = "上传中..."
  9022. _lchild.appendChild(_lspan)
  9023. _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%);"
  9024. _loading.appendChild(_lchild)
  9025. var _box = $$('div', {
  9026. "style": {
  9027. "position": "relative",
  9028. "width": "100%",
  9029. "height": "100%",
  9030. },
  9031. })
  9032. _box.appendChild(_loading)
  9033. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9034. switch (str) {
  9035. case "whiteboard":
  9036. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  9045. })
  9046. _box.appendChild(_iframe);
  9047. _box.appendChild(_jie);
  9048. _formdiv = new U.UF.UI.form(
  9049. "电子白板",
  9050. _box, {
  9051. "id": "whiteboards" + 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. _taskbar = {
  9066. "id": str + _formdiv.id,
  9067. "style": {
  9068. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9069. },
  9070. "name": "电子白板",
  9071. "forms": _formdiv,
  9072. "click": function () {
  9073. U.MD.D.I.openApplication(str, obj, info);
  9074. }
  9075. }
  9076. break;
  9077. case "mind":
  9078. aTool = 3;
  9079. _iframe = $$("iframe", {
  9080. "frameborder": "no",
  9081. "border": "0",
  9082. "scrolling ": "no",
  9083. "style": {
  9084. "cssText": "border:0;width:100%;height:100%"
  9085. },
  9086. "src": "/kityminder-editor/dist/index.html"
  9087. });
  9088. _box.appendChild(_iframe);
  9089. _box.appendChild(_jie);
  9090. _formdiv = new U.UF.UI.form(
  9091. "思维导图",
  9092. _box, { //"/jsmind/example/demo.html"
  9093. "id": "minds" + cid + stage + task + tool,
  9094. "style": {
  9095. "width": "90%",
  9096. "height": "90%",
  9097. "overflow": 'hidden'
  9098. },
  9099. "onresize": function () { }
  9100. }, {
  9101. closecallback: function () { }
  9102. }, {
  9103. "style": {
  9104. "height": "36px"
  9105. }
  9106. }).form; //创建窗体
  9107. _taskbar = {
  9108. "id": str + _formdiv.id,
  9109. "style": {
  9110. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9111. },
  9112. "name": "思维导图",
  9113. "forms": _formdiv,
  9114. "click": function () {
  9115. U.MD.D.I.openApplication(str, obj, info);
  9116. }
  9117. }
  9118. break;
  9119. case "doc":
  9120. aTool = 6;
  9121. _iframe = $$("iframe", {
  9122. "frameborder": "no",
  9123. "border": "0",
  9124. "scrolling ": "no",
  9125. "style": {
  9126. "cssText": "border:0;width:100%;height:100%"
  9127. },
  9128. "src": "/Office/Word/WordEditArea.htm"
  9129. })
  9130. _box.appendChild(_iframe);
  9131. _box.appendChild(_jie);
  9132. _formdiv = new U.UF.UI.form(
  9133. "协同文档",
  9134. _box, {
  9135. "id": "docs" + cid + stage + task + tool,
  9136. "style": {
  9137. "width": "90%",
  9138. "height": "90%",
  9139. "overflow": 'hidden'
  9140. },
  9141. "onresize": function () { }
  9142. }, {
  9143. closecallback: function () { }
  9144. }, {
  9145. "style": {
  9146. "height": "36px"
  9147. }
  9148. }).form; //创建窗体
  9149. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9150. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9151. })
  9152. _taskbar = {
  9153. "id": str + _formdiv.id,
  9154. "style": {
  9155. "backgroundImage": "url(/img/icon/doc.png)"
  9156. },
  9157. "name": "协同文档",
  9158. "forms": _formdiv,
  9159. "click": function () {
  9160. U.MD.D.I.openApplication(str, obj, info);
  9161. }
  9162. }
  9163. break;
  9164. }
  9165. const script1 = document.createElement("script");
  9166. script1.type = "text/javascript";
  9167. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9168. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9169. const script2 = document.createElement("script");
  9170. script2.type = "text/javascript";
  9171. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9172. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9173. const script3 = document.createElement("script");
  9174. script3.type = "text/javascript";
  9175. script3.charset = "UTF-8";
  9176. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9177. const script4 = document.createElement("script");
  9178. script4.type = "text/javascript";
  9179. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9180. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9181. if (_iframe) {
  9182. if (str == 'doc') {
  9183. _iframe = _formdiv.querySelector('iframe')
  9184. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9185. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9186. _iframe.contentWindow.document.body.appendChild(script1);
  9187. _iframe.contentWindow.document.body.appendChild(script2);
  9188. // _iframe.contentWindow.document.body.appendChild(script3);
  9189. _iframe.contentWindow.document.body.appendChild(script4);
  9190. })
  9191. if (onloadListener) {
  9192. _iframe.contentDocument.location.reload()
  9193. } else {
  9194. _iframe.contentDocument.location.reload()
  9195. }
  9196. } else if (str == 'mind') {
  9197. _iframe = _formdiv.querySelector('iframe')
  9198. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9199. _iframe.contentWindow.document.body.appendChild(script1);
  9200. _iframe.contentWindow.document.body.appendChild(script2);
  9201. _iframe.contentWindow.document.body.appendChild(script4);
  9202. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9203. })
  9204. if (onloadListener) {
  9205. _iframe.contentDocument.location.reload()
  9206. } else {
  9207. _iframe.contentDocument.location.reload()
  9208. }
  9209. } else {
  9210. _iframe.onload = () => {
  9211. _iframe.contentWindow.document.body.appendChild(script1);
  9212. _iframe.contentWindow.document.body.appendChild(script2);
  9213. // _iframe.contentWindow.document.body.appendChild(script3);
  9214. _iframe.contentWindow.document.body.appendChild(script4);
  9215. };
  9216. }
  9217. _jie.onclick = async () => {
  9218. let text = ''
  9219. if (aTool == 6) {
  9220. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9221. } else if (aTool == 3) {
  9222. text = await U.MD.D.I.getEditorContent(_iframe);
  9223. }
  9224. _loading.style.display = 'flex'
  9225. console.log(_loading);
  9226. var _ajs = _iframe.contentWindow.document.createElement("script");
  9227. _ajs.type = "text/javascript";
  9228. _ajs.innerHTML =
  9229. // 'console.log(' + _loading + ');\n' +
  9230. 'var _js = document.createElement("script");\n' +
  9231. '_js.type="text/javascript";\n' +
  9232. '_js.charset="UTF-8";\n' +
  9233. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9234. "_js.onload = function(){\n" +
  9235. ' var a = document.getElementsByTagName("img")\n' +
  9236. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9237. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9238. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9239. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9240. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9241. "beforeUpload_shishi(file," +
  9242. "'" +
  9243. _userid +
  9244. "'" +
  9245. ", " +
  9246. "'" +
  9247. _cid +
  9248. "'" +
  9249. ", " +
  9250. "'" +
  9251. _stage +
  9252. "'" +
  9253. ", " +
  9254. "'" +
  9255. _task +
  9256. "'" +
  9257. ", " +
  9258. "'" +
  9259. _tool +
  9260. "'" +
  9261. ", " +
  9262. "'" +
  9263. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9264. "'" +
  9265. ", " +
  9266. "'" +
  9267. aTool +
  9268. "'" +
  9269. ", " +
  9270. "`" +
  9271. text +
  9272. "`" +
  9273. ")\n" +
  9274. " });\n" +
  9275. "}\n" +
  9276. "document.head.appendChild(_js);\n";
  9277. _iframe.contentWindow.document.head.appendChild(_ajs);
  9278. }
  9279. }
  9280. //U.MD.D.I.openClick(str);
  9281. //如果有任务栏信息
  9282. // if (_taskbar) {
  9283. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9284. // }
  9285. }
  9286. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9287. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9288. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9289. _userinfo = US.userInfo, //登录用户信息
  9290. _userid = US.userInfo.userid //登录用户id
  9291. let _iframe;
  9292. let _cid = cid,
  9293. _stage = stage,
  9294. _task = task,
  9295. _tool = tool;
  9296. var _jie = $$("div", {
  9297. "style": {
  9298. "position": "absolute",
  9299. "bottom": "50px",
  9300. "right": "50px",
  9301. "zIndex": "9999",
  9302. "backgroundColor": "#2268bc",
  9303. "color": "#fff",
  9304. "padding": "12px 20px",
  9305. "cursor": "pointer",
  9306. "borderRadius": "4px",
  9307. },
  9308. "innerHTML": "确认并提交"
  9309. })
  9310. let aTool = ''
  9311. let _loading = document.createElement('div')
  9312. _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;"
  9313. // _loading.id = "";
  9314. let _lchild = document.createElement('div')
  9315. let _limg = document.createElement('img')
  9316. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9317. _limg.style = "width: 26px;margin-right: 10px;"
  9318. _lchild.appendChild(_limg)
  9319. let _lspan = document.createElement('span')
  9320. _lspan.innerHTML = "上传中..."
  9321. _lchild.appendChild(_lspan)
  9322. _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%);"
  9323. _loading.appendChild(_lchild)
  9324. var _box = $$('div', {
  9325. "style": {
  9326. "position": "relative",
  9327. "width": "100%",
  9328. "height": "100%",
  9329. },
  9330. })
  9331. _box.appendChild(_loading)
  9332. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9333. switch (str) {
  9334. case "whiteboard":
  9335. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  9344. })
  9345. _box.appendChild(_iframe);
  9346. _box.appendChild(_jie);
  9347. _formdiv = new U.UF.UI.form(
  9348. "电子白板",
  9349. _box, {
  9350. "id": "whiteboards" + 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. _taskbar = {
  9365. "id": str + _formdiv.id,
  9366. "style": {
  9367. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9368. },
  9369. "name": "电子白板",
  9370. "forms": _formdiv,
  9371. "click": function () {
  9372. U.MD.D.I.openApplication(str, obj, info);
  9373. }
  9374. }
  9375. break;
  9376. case "mind":
  9377. aTool = 3;
  9378. _iframe = $$("iframe", {
  9379. "frameborder": "no",
  9380. "border": "0",
  9381. "scrolling ": "no",
  9382. "style": {
  9383. "cssText": "border:0;width:100%;height:100%"
  9384. },
  9385. "src": "/kityminder-editor/dist/index.html"
  9386. });
  9387. _box.appendChild(_iframe);
  9388. _box.appendChild(_jie);
  9389. _formdiv = new U.UF.UI.form(
  9390. "思维导图",
  9391. _box, { //"/jsmind/example/demo.html"
  9392. "id": "minds" + cid + stage + task + tool,
  9393. "style": {
  9394. "width": "90%",
  9395. "height": "90%",
  9396. "overflow": 'hidden'
  9397. },
  9398. "onresize": function () { }
  9399. }, {
  9400. closecallback: function () { }
  9401. }, {
  9402. "style": {
  9403. "height": "36px"
  9404. }
  9405. }).form; //创建窗体
  9406. _taskbar = {
  9407. "id": str + _formdiv.id,
  9408. "style": {
  9409. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9410. },
  9411. "name": "思维导图",
  9412. "forms": _formdiv,
  9413. "click": function () {
  9414. U.MD.D.I.openApplication(str, obj, info);
  9415. }
  9416. }
  9417. break;
  9418. case "doc":
  9419. aTool = 6;
  9420. _iframe = $$("iframe", {
  9421. "frameborder": "no",
  9422. "border": "0",
  9423. "scrolling ": "no",
  9424. "style": {
  9425. "cssText": "border:0;width:100%;height:100%"
  9426. },
  9427. "src": "/Office/Word/WordEditArea.htm"
  9428. })
  9429. _box.appendChild(_iframe);
  9430. _box.appendChild(_jie);
  9431. _formdiv = new U.UF.UI.form(
  9432. "协同文档",
  9433. _box, {
  9434. "id": "docs" + cid + stage + task + tool,
  9435. "style": {
  9436. "width": "90%",
  9437. "height": "90%",
  9438. "overflow": 'hidden'
  9439. },
  9440. "onresize": function () { }
  9441. }, {
  9442. closecallback: function () { }
  9443. }, {
  9444. "style": {
  9445. "height": "36px"
  9446. }
  9447. }).form; //创建窗体
  9448. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9449. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9450. })
  9451. _taskbar = {
  9452. "id": str + _formdiv.id,
  9453. "style": {
  9454. "backgroundImage": "url(/img/icon/doc.png)"
  9455. },
  9456. "name": "协同文档",
  9457. "forms": _formdiv,
  9458. "click": function () {
  9459. U.MD.D.I.openApplication(str, obj, info);
  9460. }
  9461. }
  9462. break;
  9463. }
  9464. const script1 = document.createElement("script");
  9465. script1.type = "text/javascript";
  9466. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9467. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9468. const script2 = document.createElement("script");
  9469. script2.type = "text/javascript";
  9470. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9471. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9472. const script3 = document.createElement("script");
  9473. script3.type = "text/javascript";
  9474. script3.charset = "UTF-8";
  9475. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9476. const script4 = document.createElement("script");
  9477. script4.type = "text/javascript";
  9478. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9479. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9480. if (_iframe) {
  9481. if (str == 'doc') {
  9482. _iframe = _formdiv.querySelector('iframe')
  9483. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9484. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9485. _iframe.contentWindow.document.body.appendChild(script1);
  9486. _iframe.contentWindow.document.body.appendChild(script2);
  9487. // _iframe.contentWindow.document.body.appendChild(script3);
  9488. _iframe.contentWindow.document.body.appendChild(script4);
  9489. })
  9490. if (onloadListener) {
  9491. _iframe.contentDocument.location.reload()
  9492. } else {
  9493. _iframe.contentDocument.location.reload()
  9494. }
  9495. } else if (str == 'mind') {
  9496. _iframe = _formdiv.querySelector('iframe')
  9497. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9498. _iframe.contentWindow.document.body.appendChild(script1);
  9499. _iframe.contentWindow.document.body.appendChild(script2);
  9500. _iframe.contentWindow.document.body.appendChild(script4);
  9501. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9502. })
  9503. if (onloadListener) {
  9504. _iframe.contentDocument.location.reload()
  9505. } else {
  9506. _iframe.contentDocument.location.reload()
  9507. }
  9508. } else {
  9509. _iframe.onload = () => {
  9510. _iframe.contentWindow.document.body.appendChild(script1);
  9511. _iframe.contentWindow.document.body.appendChild(script2);
  9512. // _iframe.contentWindow.document.body.appendChild(script3);
  9513. _iframe.contentWindow.document.body.appendChild(script4);
  9514. };
  9515. }
  9516. _jie.onclick = async () => {
  9517. let text = ''
  9518. if (aTool == 6) {
  9519. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9520. } else if (aTool == 3) {
  9521. text = await U.MD.D.I.getEditorContent(_iframe);
  9522. }
  9523. _loading.style.display = 'flex'
  9524. console.log(_loading);
  9525. var _ajs = _iframe.contentWindow.document.createElement("script");
  9526. _ajs.type = "text/javascript";
  9527. _ajs.innerHTML =
  9528. // 'console.log(' + _loading + ');\n' +
  9529. 'var _js = document.createElement("script");\n' +
  9530. '_js.type="text/javascript";\n' +
  9531. '_js.charset="UTF-8";\n' +
  9532. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9533. "_js.onload = function(){\n" +
  9534. ' var a = document.getElementsByTagName("img")\n' +
  9535. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9536. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9537. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9538. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9539. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9540. "beforeUpload_shishi(file," +
  9541. "'" +
  9542. _userid +
  9543. "'" +
  9544. ", " +
  9545. "'" +
  9546. _cid +
  9547. "'" +
  9548. ", " +
  9549. "'" +
  9550. _stage +
  9551. "'" +
  9552. ", " +
  9553. "'" +
  9554. _task +
  9555. "'" +
  9556. ", " +
  9557. "'" +
  9558. _tool +
  9559. "'" +
  9560. ", " +
  9561. "'" +
  9562. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9563. "'" +
  9564. ", " +
  9565. "'" +
  9566. aTool +
  9567. "'" +
  9568. ", " +
  9569. "`" +
  9570. text +
  9571. "`" +
  9572. ")\n" +
  9573. " });\n" +
  9574. "}\n" +
  9575. "document.head.appendChild(_js);\n";
  9576. _iframe.contentWindow.document.head.appendChild(_ajs);
  9577. }
  9578. }
  9579. //U.MD.D.I.openClick(str);
  9580. //如果有任务栏信息
  9581. // if (_taskbar) {
  9582. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9583. // }
  9584. }
  9585. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9586. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9587. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9588. _userinfo = US.userInfo, //登录用户信息
  9589. _userid = US.userInfo.userid //登录用户id
  9590. let _iframe;
  9591. let _cid = cid,
  9592. _stage = stage,
  9593. _task = task,
  9594. _tool = tool;
  9595. var _jie = $$("div", {
  9596. "style": {
  9597. "position": "absolute",
  9598. "bottom": "50px",
  9599. "right": "50px",
  9600. "zIndex": "9999",
  9601. "backgroundColor": "#2268bc",
  9602. "color": "#fff",
  9603. "padding": "12px 20px",
  9604. "cursor": "pointer",
  9605. "borderRadius": "4px",
  9606. },
  9607. "innerHTML": "上传模板"
  9608. })
  9609. let aTool = ''
  9610. let _loading = document.createElement('div')
  9611. _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;"
  9612. // _loading.id = "";
  9613. let _lchild = document.createElement('div')
  9614. let _limg = document.createElement('img')
  9615. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9616. _limg.style = "width: 26px;margin-right: 10px;"
  9617. _lchild.appendChild(_limg)
  9618. let _lspan = document.createElement('span')
  9619. _lspan.innerHTML = "上传中..."
  9620. _lchild.appendChild(_lspan)
  9621. _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%);"
  9622. _loading.appendChild(_lchild)
  9623. var _box = $$('div', {
  9624. "style": {
  9625. "position": "relative",
  9626. "width": "100%",
  9627. "height": "100%",
  9628. },
  9629. })
  9630. _box.appendChild(_loading)
  9631. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9632. switch (str) {
  9633. case "whiteboard":
  9634. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  9643. })
  9644. _box.appendChild(_iframe);
  9645. _box.appendChild(_jie);
  9646. _formdiv = new U.UF.UI.form(
  9647. "电子白板",
  9648. _box, {
  9649. "id": "whiteboards_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. _taskbar = {
  9664. "id": str + _formdiv.id,
  9665. "style": {
  9666. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9667. },
  9668. "name": "电子白板",
  9669. "forms": _formdiv,
  9670. "click": function () {
  9671. U.MD.D.I.openApplication(str, obj, info);
  9672. }
  9673. }
  9674. break;
  9675. case "mind":
  9676. aTool = 3;
  9677. _iframe = $$("iframe", {
  9678. "frameborder": "no",
  9679. "border": "0",
  9680. "scrolling ": "no",
  9681. "style": {
  9682. "cssText": "border:0;width:100%;height:100%"
  9683. },
  9684. "src": "/kityminder-editor/dist/index.html"
  9685. });
  9686. _box.appendChild(_iframe);
  9687. _box.appendChild(_jie);
  9688. _formdiv = new U.UF.UI.form(
  9689. "思维导图",
  9690. _box, { //"/jsmind/example/demo.html"
  9691. "id": "minds_Yu" + cid + stage + task + tool,
  9692. "style": {
  9693. "width": "90%",
  9694. "height": "90%",
  9695. "overflow": 'hidden'
  9696. },
  9697. "onresize": function () { }
  9698. }, {
  9699. closecallback: function () { }
  9700. }, {
  9701. "style": {
  9702. "height": "36px"
  9703. }
  9704. }).form; //创建窗体
  9705. _taskbar = {
  9706. "id": str + _formdiv.id,
  9707. "style": {
  9708. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9709. },
  9710. "name": "思维导图",
  9711. "forms": _formdiv,
  9712. "click": function () {
  9713. U.MD.D.I.openApplication(str, obj, info);
  9714. }
  9715. }
  9716. break;
  9717. case "doc":
  9718. aTool = 6;
  9719. _iframe = $$("iframe", {
  9720. "frameborder": "no",
  9721. "border": "0",
  9722. "scrolling ": "no",
  9723. "style": {
  9724. "cssText": "border:0;width:100%;height:100%"
  9725. },
  9726. "src": "/Office/Word/WordEditArea.htm"
  9727. })
  9728. _box.appendChild(_iframe);
  9729. _box.appendChild(_jie);
  9730. _formdiv = new U.UF.UI.form(
  9731. "协同文档",
  9732. _box, {
  9733. "id": "docs_Yu" + cid + stage + task + tool,
  9734. "style": {
  9735. "width": "90%",
  9736. "height": "90%",
  9737. "overflow": 'hidden'
  9738. },
  9739. "onresize": function () { }
  9740. }, {
  9741. closecallback: function () { }
  9742. }, {
  9743. "style": {
  9744. "height": "36px"
  9745. }
  9746. }).form; //创建窗体
  9747. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9748. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9749. })
  9750. _taskbar = {
  9751. "id": str + _formdiv.id,
  9752. "style": {
  9753. "backgroundImage": "url(/img/icon/doc.png)"
  9754. },
  9755. "name": "协同文档",
  9756. "forms": _formdiv,
  9757. "click": function () {
  9758. U.MD.D.I.openApplication(str, obj, info);
  9759. }
  9760. }
  9761. break;
  9762. case "CocoPi":
  9763. aTool = 57;
  9764. _iframe = $$("iframe", {
  9765. "allowpaymentrequest": "allowpaymentrequest",
  9766. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9767. "webkitallowfullscreen": "",
  9768. "mozallowfullscreen": "",
  9769. "frameborder": "no",
  9770. "border": "0",
  9771. "scrolling ": "no",
  9772. "style": {
  9773. "cssText": "border:0;width:100%;height:100%"
  9774. },
  9775. "src": "https://pi.cocorobo.cn/"
  9776. })
  9777. _box.appendChild(_iframe);
  9778. _box.appendChild(_jie);
  9779. _formdiv = new U.UF.UI.form(
  9780. "CocoPi",
  9781. _box, {
  9782. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9783. "style": {
  9784. "width": "90%",
  9785. "height": "90%",
  9786. "overflow": 'hidden'
  9787. },
  9788. "onresize": function () { }
  9789. }, {
  9790. closecallback: function () { }
  9791. }, {
  9792. "style": {
  9793. "height": "36px"
  9794. }
  9795. }).form; //创建窗体
  9796. _taskbar = {
  9797. "id": str + _formdiv.id,
  9798. "style": {
  9799. "backgroundImage": "url(/img/icon/cocopi.png)"
  9800. },
  9801. "name": "CocoPi",
  9802. "forms": _formdiv,
  9803. "click": function () {
  9804. U.MD.D.I.openApplication(str, obj, info);
  9805. }
  9806. }
  9807. break;
  9808. }
  9809. if (_iframe) {
  9810. if (str == 'doc') {
  9811. _iframe = _formdiv.querySelector('iframe')
  9812. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9813. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9814. })
  9815. if (onloadListener) {
  9816. _iframe.contentDocument.location.reload()
  9817. } else {
  9818. _iframe.contentDocument.location.reload()
  9819. }
  9820. } else if (str == 'mind') {
  9821. _iframe = _formdiv.querySelector('iframe')
  9822. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9823. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9824. })
  9825. if (onloadListener) {
  9826. _iframe.contentDocument.location.reload()
  9827. } else {
  9828. _iframe.contentDocument.location.reload()
  9829. }
  9830. } else if (str == 'whiteboard') {
  9831. _iframe = _formdiv.querySelector('iframe')
  9832. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9833. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9834. })
  9835. // if (onloadListener) {
  9836. // try {
  9837. // _iframe.src += "?cocorobo="+new Date().getTime()
  9838. // _iframe.contentWindow.document.location.reload()
  9839. // } catch (error) {
  9840. // }
  9841. // } else {
  9842. // _iframe.contentDocument.location.reload()
  9843. // }
  9844. } else if (str == 'CocoPi') {
  9845. _iframe = _formdiv.querySelector('iframe')
  9846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9847. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9848. })
  9849. if (onloadListener) {
  9850. _iframe.contentDocument.location.reload()
  9851. } else {
  9852. _iframe.contentDocument.location.reload()
  9853. }
  9854. } else {
  9855. _iframe.onload = () => { };
  9856. }
  9857. _jie.onclick = async () => {
  9858. let text = ''
  9859. let type = '2'
  9860. if (aTool == 1) {
  9861. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9862. type = '3'
  9863. } else if (aTool == 6) {
  9864. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9865. type = '1'
  9866. } else if (aTool == 3) {
  9867. text = await U.MD.D.I.getEditorContent(_iframe);
  9868. type = '2'
  9869. } else if (aTool == 57) {
  9870. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9871. type = '4'
  9872. }
  9873. _loading.style.display = 'flex'
  9874. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9875. }
  9876. }
  9877. //U.MD.D.I.openClick(str);
  9878. //如果有任务栏信息
  9879. // if (_taskbar) {
  9880. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9881. // }
  9882. }
  9883. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9884. var xmlhttp;
  9885. var Mac, Sn, DeviceId
  9886. if (window.XMLHttpRequest) {
  9887. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9888. xmlhttp = new XMLHttpRequest();
  9889. } else {
  9890. // IE6, IE5 浏览器执行代码
  9891. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9892. }
  9893. xmlhttp.onreadystatechange = function () {
  9894. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9895. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9896. // resolve(res.value[0][0].text);
  9897. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9898. }
  9899. }
  9900. }
  9901. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9902. xmlhttp.send();
  9903. }
  9904. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9905. var xmlhttp;
  9906. var Mac, Sn, DeviceId
  9907. if (window.XMLHttpRequest) {
  9908. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9909. xmlhttp = new XMLHttpRequest();
  9910. } else {
  9911. // IE6, IE5 浏览器执行代码
  9912. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9913. }
  9914. xmlhttp.onreadystatechange = function () {
  9915. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9916. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9917. // resolve(res.value[0][0].text);
  9918. if (type == '2') {
  9919. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9920. } else if (type == '3') {
  9921. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9922. } else if (type == '4') {
  9923. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9924. }
  9925. } else {
  9926. if (type == '2') {
  9927. iframe.contentWindow.editor.minder.importData('json', '')
  9928. } else if (type == '3') {
  9929. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9930. } else if (type == '4') {
  9931. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9932. }
  9933. }
  9934. }
  9935. }
  9936. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9937. xmlhttp.send();
  9938. }
  9939. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9940. var xmlhttp;
  9941. var Mac, Sn, DeviceId
  9942. if (window.XMLHttpRequest) {
  9943. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9944. xmlhttp = new XMLHttpRequest();
  9945. } else {
  9946. // IE6, IE5 浏览器执行代码
  9947. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9948. }
  9949. xmlhttp.onreadystatechange = function () {
  9950. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9951. if (xmlhttp.response) {
  9952. // resolve(res.value[0][0].text);
  9953. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9954. // $(fileInput).val('');
  9955. // });
  9956. span.innerHTML = '上传成功'
  9957. setTimeout(() => {
  9958. loading.style.display = 'none'
  9959. }, 1000);
  9960. }
  9961. }
  9962. }
  9963. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9964. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9965. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9966. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9967. // 设置请求头,表示请求体的编码格式
  9968. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9969. // 设置请求体,使用url-encoded格式的数据
  9970. }
  9971. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9972. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9973. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9974. _userinfo = US.userInfo, //登录用户信息
  9975. _userid = US.userInfo.userid //登录用户id
  9976. let _iframe;
  9977. let _cid = cid,
  9978. _stage = stage,
  9979. _task = task,
  9980. _tool = tool;
  9981. var _jie = $$("div", {
  9982. "style": {
  9983. "position": "absolute",
  9984. "bottom": "50px",
  9985. "right": "50px",
  9986. "zIndex": "9999",
  9987. "backgroundColor": "#2268bc",
  9988. "color": "#fff",
  9989. "padding": "12px 20px",
  9990. "cursor": "pointer",
  9991. "borderRadius": "4px",
  9992. },
  9993. "innerHTML": "提交作业"
  9994. })
  9995. let aTool = ''
  9996. let _loading = document.createElement('div')
  9997. _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;"
  9998. // _loading.id = "";
  9999. let _lchild = document.createElement('div')
  10000. let _limg = document.createElement('img')
  10001. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10002. _limg.style = "width: 26px;margin-right: 10px;"
  10003. _lchild.appendChild(_limg)
  10004. let _lspan = document.createElement('span')
  10005. _lspan.innerHTML = "上传中..."
  10006. _lchild.appendChild(_lspan)
  10007. _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%);"
  10008. _loading.appendChild(_lchild)
  10009. var _box = $$('div', {
  10010. "style": {
  10011. "position": "relative",
  10012. "width": "100%",
  10013. "height": "100%",
  10014. },
  10015. })
  10016. _box.appendChild(_loading)
  10017. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10018. switch (str) {
  10019. case "CocoPi":
  10020. aTool = 57;
  10021. _iframe = $$("iframe", {
  10022. "allowpaymentrequest": "allowpaymentrequest",
  10023. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10024. "webkitallowfullscreen": "",
  10025. "mozallowfullscreen": "",
  10026. "frameborder": "no",
  10027. "border": "0",
  10028. "scrolling ": "no",
  10029. "style": {
  10030. "cssText": "border:0;width:100%;height:100%"
  10031. },
  10032. "src": "https://pi.cocorobo.cn/"
  10033. })
  10034. _box.appendChild(_iframe);
  10035. _box.appendChild(_jie);
  10036. _formdiv = new U.UF.UI.form(
  10037. "CocoPi",
  10038. _box, {
  10039. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10040. "style": {
  10041. "width": "90%",
  10042. "height": "90%",
  10043. "overflow": 'hidden'
  10044. },
  10045. "onresize": function () { }
  10046. }, {
  10047. closecallback: function () { }
  10048. }, {
  10049. "style": {
  10050. "height": "36px"
  10051. }
  10052. }).form; //创建窗体
  10053. _taskbar = {
  10054. "id": str + _formdiv.id,
  10055. "style": {
  10056. "backgroundImage": "url(/img/icon/cocopi.png)"
  10057. },
  10058. "name": "CocoPi",
  10059. "forms": _formdiv,
  10060. "click": function () {
  10061. U.MD.D.I.openApplication(str, obj, info);
  10062. }
  10063. }
  10064. break;
  10065. }
  10066. if (_iframe) {
  10067. if (str == 'CocoPi') {
  10068. _iframe = _formdiv.querySelector('iframe')
  10069. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10070. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10071. })
  10072. if (onloadListener) {
  10073. _iframe.contentDocument.location.reload()
  10074. } else {
  10075. _iframe.contentDocument.location.reload()
  10076. }
  10077. }
  10078. _jie.onclick = async () => {
  10079. let text = ''
  10080. if (aTool == 57) {
  10081. text = _iframe.contentWindow.getLoadXmlStr()
  10082. }
  10083. _loading.style.display = 'flex'
  10084. console.log(_loading);
  10085. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10086. _loading.style.display = 'none'
  10087. let _div = document.createElement('div')
  10088. _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;"
  10089. let _inner = document.createElement('div')
  10090. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10091. _inner.innerHTML = "上传成功"
  10092. _div.appendChild(_inner)
  10093. _iframe.contentWindow.window.document.body.appendChild(_div)
  10094. _div.onclick = () => {
  10095. _iframe.contentWindow.window.document.body.removeChild(_div)
  10096. }
  10097. setTimeout(() => {
  10098. _iframe.contentWindow.window.document.body.removeChild(_div)
  10099. }, 1000);
  10100. }, [], { "type": "POST", "withCredentials": true });
  10101. }
  10102. }
  10103. }
  10104. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10105. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10106. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10107. _userid = student.userid, //登录用户id
  10108. _username = student.student //用户名字
  10109. let _iframe;
  10110. let _cid = cid,
  10111. _stage = stage,
  10112. _task = task,
  10113. _tool = tool;
  10114. var _jie = $$("div", {
  10115. "style": {
  10116. "position": "absolute",
  10117. "bottom": "50px",
  10118. "right": "50px",
  10119. "zIndex": "9999",
  10120. "backgroundColor": "#2268bc",
  10121. "color": "#fff",
  10122. "padding": "12px 20px",
  10123. "cursor": "pointer",
  10124. "borderRadius": "4px",
  10125. },
  10126. "innerHTML": "提交作业"
  10127. })
  10128. let aTool = ''
  10129. let _loading = document.createElement('div')
  10130. _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;"
  10131. // _loading.id = "";
  10132. let _lchild = document.createElement('div')
  10133. let _limg = document.createElement('img')
  10134. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10135. _limg.style = "width: 26px;margin-right: 10px;"
  10136. _lchild.appendChild(_limg)
  10137. let _lspan = document.createElement('span')
  10138. _lspan.innerHTML = "上传中..."
  10139. _lchild.appendChild(_lspan)
  10140. _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%);"
  10141. _loading.appendChild(_lchild)
  10142. var _box = $$('div', {
  10143. "style": {
  10144. "position": "relative",
  10145. "width": "100%",
  10146. "height": "100%",
  10147. },
  10148. })
  10149. _box.appendChild(_loading)
  10150. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10151. switch (str) {
  10152. case "CocoPi":
  10153. aTool = 57;
  10154. _iframe = $$("iframe", {
  10155. "allowpaymentrequest": "allowpaymentrequest",
  10156. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10157. "webkitallowfullscreen": "",
  10158. "mozallowfullscreen": "",
  10159. "frameborder": "no",
  10160. "border": "0",
  10161. "scrolling ": "no",
  10162. "style": {
  10163. "cssText": "border:0;width:100%;height:100%"
  10164. },
  10165. "src": "https://pi.cocorobo.cn/"
  10166. })
  10167. _box.appendChild(_iframe);
  10168. _box.appendChild(_jie);
  10169. _formdiv = new U.UF.UI.form(
  10170. "CocoPi-" + _username,
  10171. _box, {
  10172. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10173. "style": {
  10174. "width": "90%",
  10175. "height": "90%",
  10176. "overflow": 'hidden'
  10177. },
  10178. "onresize": function () { }
  10179. }, {
  10180. closecallback: function () { }
  10181. }, {
  10182. "style": {
  10183. "height": "36px"
  10184. }
  10185. }).form; //创建窗体
  10186. _taskbar = {
  10187. "id": str + _formdiv.id,
  10188. "style": {
  10189. "backgroundImage": "url(/img/icon/cocopi.png)"
  10190. },
  10191. "name": "CocoPi",
  10192. "forms": _formdiv,
  10193. "click": function () {
  10194. U.MD.D.I.openApplication(str, obj, info);
  10195. }
  10196. }
  10197. break;
  10198. }
  10199. if (_iframe) {
  10200. if (str == 'CocoPi') {
  10201. _iframe = _formdiv.querySelector('iframe')
  10202. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10203. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10204. })
  10205. if (onloadListener) {
  10206. _iframe.contentDocument.location.reload()
  10207. } else {
  10208. _iframe.contentDocument.location.reload()
  10209. }
  10210. }
  10211. _jie.onclick = async () => {
  10212. let text = ''
  10213. if (aTool == 57) {
  10214. text = _iframe.contentWindow.getLoadXmlStr()
  10215. }
  10216. _loading.style.display = 'flex'
  10217. console.log(_loading);
  10218. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10219. _loading.style.display = 'none'
  10220. let _div = document.createElement('div')
  10221. _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;"
  10222. let _inner = document.createElement('div')
  10223. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10224. _inner.innerHTML = "上传成功"
  10225. _div.appendChild(_inner)
  10226. _iframe.contentWindow.window.document.body.appendChild(_div)
  10227. _div.onclick = () => {
  10228. _iframe.contentWindow.window.document.body.removeChild(_div)
  10229. }
  10230. setTimeout(() => {
  10231. _iframe.contentWindow.window.document.body.removeChild(_div)
  10232. }, 1000);
  10233. }, [], { "type": "POST", "withCredentials": true });
  10234. }
  10235. }
  10236. }
  10237. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10238. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10239. if (res.value[0].length > 0) {
  10240. if (atool == 57) {
  10241. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10242. }
  10243. } else {
  10244. if (atool == 57) {
  10245. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10246. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10247. }
  10248. }
  10249. }, [], { "type": "POST", "withCredentials": true });
  10250. }