DeskTop.js 610 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907
  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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  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. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  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. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //#region 桌面初始化a
  1525. /**
  1526. * 初始化桌面的起始函数
  1527. *
  1528. */
  1529. U.MD.D.I.init = function () {
  1530. if ($("#U_MD_D_K")[0]) {
  1531. //初始化桌面图标
  1532. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1533. // var clickUrl = ':12588/requestIp.php';
  1534. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1535. // U.MD.D.I.Ip = data;
  1536. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1537. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1538. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1539. // })
  1540. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1541. // })
  1542. }
  1543. }
  1544. /**
  1545. * 模式切换
  1546. *
  1547. */
  1548. U.MD.D.I.ModeCheck = function (type) {
  1549. if (US.Config.type == type) {
  1550. return
  1551. }
  1552. US.Config.type = type
  1553. $('.U_PBL_Check .active')[0].className = ''
  1554. if (type == 1) {
  1555. $('.U_PBL_Check div')[0].className = 'active'
  1556. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1557. } else {
  1558. $('.U_PBL_Check div')[1].className = 'active'
  1559. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1560. }
  1561. //初始化桌面图标
  1562. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1563. if (type == 2) {
  1564. U.MD.D.I.openApplication("project")
  1565. }
  1566. }
  1567. /**
  1568. * 隐藏任务栏
  1569. *
  1570. * @param {element} 桌面元素
  1571. */
  1572. U.MD.D.I.hiddenTaskbar = function (el) {
  1573. //任务栏位置变小
  1574. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1575. //桌面的位置变大
  1576. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1577. }
  1578. /**
  1579. * 隐藏任务栏
  1580. *
  1581. * @param {element} 桌面元素
  1582. */
  1583. U.MD.D.I.hiddenTaskbarout = function (el) {
  1584. //任务栏位置变小
  1585. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1586. //任务栏位置变化
  1587. U.selectEl(el).css({ "bottom": "-60px" });
  1588. //桌面的位置变大
  1589. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1590. }
  1591. }
  1592. /**
  1593. * 初始化打印桌面图标
  1594. *
  1595. * @param {element} 桌面元素
  1596. */
  1597. U.MD.D.I.initDesktopIcons = function (el, type) {
  1598. var i, //用于循环
  1599. _content, //桌面图标元素
  1600. _iconcontent, //桌面图标元素
  1601. _frag = $$("frag"), //定义一个碎片元素
  1602. _type = US.userInfo.type,
  1603. _org = US.userInfo.org,
  1604. _oid = US.userInfo.organizeid,
  1605. _role = US.userInfo.role,
  1606. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1607. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1608. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1609. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1610. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1611. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1612. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1613. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1614. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1615. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1616. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1617. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1618. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1619. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1620. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1621. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1622. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1623. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1624. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1625. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1626. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1627. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1628. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1629. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1630. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1631. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1632. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1633. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1634. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1635. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1636. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1637. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1638. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1639. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1640. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1641. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1642. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1643. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1644. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1645. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1646. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1647. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1648. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1649. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1650. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1651. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1652. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1653. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1654. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1655. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1656. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1657. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1658. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1659. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1660. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1661. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1662. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1663. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1664. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1665. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1666. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1667. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1668. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1669. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1670. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1671. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1672. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1673. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1674. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1675. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1676. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1677. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1678. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1679. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1680. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1681. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1682. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1683. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1684. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1685. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1686. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1687. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1688. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1689. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1690. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1691. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1692. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1693. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1694. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1695. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1696. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1697. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1698. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1699. 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'];
  1700. 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'];
  1701. //清楚桌面图标
  1702. el.innerHTML = "";
  1703. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1704. _teacherDesktopIconInfo.push(
  1705. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1706. { "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)" } },
  1707. )
  1708. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1709. }
  1710. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1711. _teacherDesktopIconInfo.push(
  1712. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1713. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1714. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1715. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1716. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1717. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1718. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1719. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1720. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1721. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1722. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1723. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1724. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1725. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1726. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. )
  1729. }
  1730. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1731. _teacherDesktopIconInfo.push(
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. )
  1734. }
  1735. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1736. // _teacherDesktopIconInfo.push(
  1737. // )
  1738. // }
  1739. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1740. _teacherDesktopIconInfo.push(
  1741. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1743. )
  1744. }
  1745. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1746. _teacherDesktopIconInfo.push(
  1747. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1749. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1751. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1753. )
  1754. _studentDesktopIconInfo.push(
  1755. )
  1756. }
  1757. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1758. _teacherDesktopIconInfo.push(
  1759. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1760. )
  1761. _studentDesktopIconInfo.push(
  1762. )
  1763. }
  1764. //010606 组织
  1765. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1766. _teacherDesktopIconInfo.push(
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. )
  1769. _studentDesktopIconInfo.push(
  1770. )
  1771. }
  1772. //麒麟二中 和 民新小学
  1773. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1774. _teacherDesktopIconInfo.push(
  1775. )
  1776. }
  1777. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1778. _teacherDesktopIconInfo.push(
  1779. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1780. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1781. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1782. )
  1783. }
  1784. //北师大附中(010601)
  1785. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1786. // _teacherDesktopIconInfo.push(
  1787. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1788. // )
  1789. // _studentDesktopIconInfo.push(
  1790. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1791. // )
  1792. // }
  1793. //樂善堂余近卿中學
  1794. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1795. _teacherDesktopIconInfo.push(
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. )
  1798. }
  1799. // Education Artificial Intelligence
  1800. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1801. _teacherDesktopIconInfo.push(
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. )
  1804. }
  1805. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1806. _teacherDesktopIconInfo.push(
  1807. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1808. )
  1809. }
  1810. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1811. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1812. _teacherDesktopIconInfo.push(
  1813. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. )
  1816. }
  1817. //麒麟二中
  1818. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1819. _studentDesktopIconInfo.push(
  1820. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1822. )
  1823. }
  1824. //万科双语
  1825. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1826. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1827. if (el.Name == '项目管理') {
  1828. el.Name = 'PBL项目'
  1829. }
  1830. return el
  1831. })
  1832. _studentDesktopIconInfo3.push(
  1833. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1834. )
  1835. }
  1836. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1837. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1838. return el.Name != '魔盒识字' && el.Name != '24点'
  1839. })
  1840. }
  1841. 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) {
  1842. _studentDesktopIconInfo.push(
  1843. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1844. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1845. )
  1846. }
  1847. //循环创建桌面图标
  1848. if (type == 1) {
  1849. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1850. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1851. _content = $$("div", {
  1852. className: "U_MD_D_KO",
  1853. "onmousedown": U.UF.C.closure(function (obj) {
  1854. //防止拖动图标即打开了桌面应用
  1855. U.MD.D.click(this, obj);
  1856. }, [_studentDesktopIconInfo[i]]),
  1857. "onclick": U.UF.C.closure(function (obj) {
  1858. //防止拖动图标即打开了桌面应用
  1859. U.MD.D.click(this, obj);
  1860. }, [_studentDesktopIconInfo[i]])
  1861. }, _frag); //
  1862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1865. }
  1866. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1867. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1868. _content = $$("div", {
  1869. className: "U_MD_D_KO",
  1870. "onmousedown": U.UF.C.closure(function (obj) {
  1871. //防止拖动图标即打开了桌面应用
  1872. U.MD.D.click(this, obj);
  1873. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1874. "onclick": U.UF.C.closure(function (obj) {
  1875. //防止拖动图标即打开了桌面应用
  1876. U.MD.D.click(this, obj);
  1877. }, [_hkZJLSStudentDeskIconInfo[i]])
  1878. }, _frag); //
  1879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1882. } //
  1883. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1884. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1885. _content = $$("div", {
  1886. className: "U_MD_D_KO",
  1887. "onmousedown": U.UF.C.closure(function (obj) {
  1888. //防止拖动图标即打开了桌面应用
  1889. U.MD.D.click(this, obj);
  1890. }, [_ytyStudentDeskIconInfo[i]]),
  1891. "onclick": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_ytyStudentDeskIconInfo[i]])
  1895. }, _frag); //
  1896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1899. } //
  1900. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1901. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1902. _content = $$("div", {
  1903. className: "U_MD_D_KO",
  1904. "onmousedown": U.UF.C.closure(function (obj) {
  1905. //防止拖动图标即打开了桌面应用
  1906. U.MD.D.click(this, obj);
  1907. }, [_jccssylStudentDeskIconInfo[i]]),
  1908. "onclick": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_jccssylStudentDeskIconInfo[i]])
  1912. }, _frag); //
  1913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1916. }
  1917. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1918. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1919. _content = $$("div", {
  1920. className: "U_MD_D_KO",
  1921. "onmousedown": U.UF.C.closure(function (obj) {
  1922. //防止拖动图标即打开了桌面应用
  1923. U.MD.D.click(this, obj);
  1924. }, [_scnuaiStudentDeskIconInfo[i]]),
  1925. "onclick": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_scnuaiStudentDeskIconInfo[i]])
  1929. }, _frag); //
  1930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1933. }
  1934. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1935. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1936. _content = $$("div", {
  1937. className: "U_MD_D_KO",
  1938. "onmousedown": U.UF.C.closure(function (obj) {
  1939. //防止拖动图标即打开了桌面应用
  1940. U.MD.D.click(this, obj);
  1941. }, [_caleStudentDeskIconInfo[i]]),
  1942. "onclick": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_caleStudentDeskIconInfo[i]])
  1946. }, _frag); //
  1947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1950. }
  1951. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1952. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1953. _content = $$("div", {
  1954. className: "U_MD_D_KO",
  1955. "onmousedown": U.UF.C.closure(function (obj) {
  1956. //防止拖动图标即打开了桌面应用
  1957. U.MD.D.click(this, obj);
  1958. }, [_thuioeStudentDeskIconInfo[i]]),
  1959. "onclick": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_thuioeStudentDeskIconInfo[i]])
  1963. }, _frag); //
  1964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1967. }
  1968. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1969. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1970. _content = $$("div", {
  1971. className: "U_MD_D_KO",
  1972. "onmousedown": U.UF.C.closure(function (obj) {
  1973. //防止拖动图标即打开了桌面应用
  1974. U.MD.D.click(this, obj);
  1975. }, [_tpcStudentDeskIconInfo[i]]),
  1976. "onclick": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_tpcStudentDeskIconInfo[i]])
  1980. }, _frag); //
  1981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1984. } //
  1985. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1986. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1987. _content = $$("div", {
  1988. className: "U_MD_D_KO",
  1989. "onmousedown": U.UF.C.closure(function (obj) {
  1990. //防止拖动图标即打开了桌面应用
  1991. U.MD.D.click(this, obj);
  1992. }, [_chjyjStudentDeskIconInfo[i]]),
  1993. "onclick": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_chjyjStudentDeskIconInfo[i]])
  1997. }, _frag); //
  1998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2001. }
  2002. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2003. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2004. _content = $$("div", {
  2005. className: "U_MD_D_KO",
  2006. "onmousedown": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_szjkyStudentDeskIconInfo[i]]),
  2010. "onclick": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_szjkyStudentDeskIconInfo[i]])
  2014. }, _frag); //
  2015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2018. }
  2019. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2020. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2021. _content = $$("div", {
  2022. className: "U_MD_D_KO",
  2023. "onmousedown": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_dseiStudentDeskIconInfo[i]]),
  2027. "onclick": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_dseiStudentDeskIconInfo[i]])
  2031. }, _frag); //
  2032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2035. }
  2036. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2037. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2038. _content = $$("div", {
  2039. className: "U_MD_D_KO",
  2040. "onmousedown": U.UF.C.closure(function (obj) {
  2041. //防止拖动图标即打开了桌面应用
  2042. U.MD.D.click(this, obj);
  2043. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2044. "onclick": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2048. }, _frag); //
  2049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2052. }
  2053. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2054. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_nsfxStudentDeskIconInfo[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_nsfxStudentDeskIconInfo[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2069. }
  2070. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2071. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2072. _content = $$("div", {
  2073. className: "U_MD_D_KO",
  2074. "onmousedown": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_stiaStudentDeskIconInfo[i]]),
  2078. "onclick": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_stiaStudentDeskIconInfo[i]])
  2082. }, _frag); //
  2083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2086. }
  2087. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2088. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2089. _content = $$("div", {
  2090. className: "U_MD_D_KO",
  2091. "onmousedown": U.UF.C.closure(function (obj) {
  2092. //防止拖动图标即打开了桌面应用
  2093. U.MD.D.click(this, obj);
  2094. }, [_szdjgStudentDeskIconInfo[i]]),
  2095. "onclick": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_szdjgStudentDeskIconInfo[i]])
  2099. }, _frag); //
  2100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2103. }
  2104. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2105. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2106. _content = $$("div", {
  2107. className: "U_MD_D_KO",
  2108. "onmousedown": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_x010607StudentDeskIconInfo[i]]),
  2112. "onclick": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_x010607StudentDeskIconInfo[i]])
  2116. }, _frag); //
  2117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2120. }
  2121. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2122. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2123. _content = $$("div", {
  2124. className: "U_MD_D_KO",
  2125. "onmousedown": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_xhlyStudentDeskIconInfo[i]]),
  2129. "onclick": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_xhlyStudentDeskIconInfo[i]])
  2133. }, _frag); //
  2134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2137. }
  2138. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2139. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2140. _content = $$("div", {
  2141. className: "U_MD_D_KO",
  2142. "onmousedown": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2146. "onclick": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2150. }, _frag); //
  2151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2154. }
  2155. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2156. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_x010503StudentDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_x010503StudentDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2173. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2174. _content = $$("div", {
  2175. className: "U_MD_D_KO",
  2176. "onmousedown": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_x010608StudentDeskIconInfo[i]]),
  2180. "onclick": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_x010608StudentDeskIconInfo[i]])
  2184. }, _frag); //
  2185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2188. }
  2189. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2190. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2191. _content = $$("div", {
  2192. className: "U_MD_D_KO",
  2193. "onmousedown": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_siesStudentDeskIconInfo[i]]),
  2197. "onclick": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_siesStudentDeskIconInfo[i]])
  2201. }, _frag); //
  2202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2205. }
  2206. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2207. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_guzmsStudentDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_guzmsStudentDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2222. }
  2223. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2224. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2225. _content = $$("div", {
  2226. className: "U_MD_D_KO",
  2227. "onmousedown": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_hkStudentDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_hkStudentDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2239. }
  2240. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2241. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2242. _content = $$("div", {
  2243. className: "U_MD_D_KO",
  2244. "onmousedown": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_hkaceStudentDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_hkaceStudentDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2258. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_BSDNSstudentDesktopIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2275. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_cocobizStudentDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_cocobizStudentDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2292. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_xxzjkyStudentDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2309. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_studentDesktopIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_studentDesktopIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2326. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_tcStudentDeskIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_tcStudentDeskIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2343. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_szscStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_szscStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2360. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_studentDesktopIconInfo3[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_studentDesktopIconInfo3[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2377. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_studentDesktopIconInfo2[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_studentDesktopIconInfo2[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2392. }
  2393. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2394. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2395. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2396. continue
  2397. }
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_wanketeacherDesktopIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_wanketeacherDesktopIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2414. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_wankeAdminDesktopIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_wankeAdminDesktopIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2431. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2432. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2433. continue
  2434. }
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_scnuaiTeacherDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2451. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2452. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2453. continue
  2454. }
  2455. _content = $$("div", {
  2456. className: "U_MD_D_KO",
  2457. "onmousedown": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2461. "onclick": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_BSDNSteacherDesktopIconInfo[i]])
  2465. }, _frag); //
  2466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2469. }
  2470. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2471. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_scnuaiAdminDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_scnuaiAdminDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2488. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2489. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2490. continue
  2491. }
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_jccssylTeacherDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_jccssylTeacherDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2508. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2509. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2510. continue
  2511. }
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_caleTeacherDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_caleTeacherDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2528. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_tpcOrganizerDeskIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_tpcOrganizerDeskIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2545. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2546. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2547. continue
  2548. }
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_tpcTeacherDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tpcTeacherDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2565. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2566. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2567. continue
  2568. }
  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. }, [_teacherDesktopIconInfo2[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_teacherDesktopIconInfo2[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2583. }
  2584. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2585. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2586. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2587. continue
  2588. }
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_thuioeTeacherDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_thuioeTeacherDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2605. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2606. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2607. continue
  2608. }
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_lotechTeacherDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_lotechTeacherDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2623. }//
  2624. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2625. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2626. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2627. continue
  2628. }
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2645. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2646. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2647. continue
  2648. }
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_siesTeacherDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_siesTeacherDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2665. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2666. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2667. continue
  2668. }
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_guzmsTeacherDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_guzmsTeacherDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2685. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2686. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2687. continue
  2688. }
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_longhuaTeacherDeskIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_longhuaTeacherDeskIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2705. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2706. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2707. continue
  2708. }
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_ytyTeacherDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_ytyTeacherDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2725. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2726. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2727. continue
  2728. }
  2729. _content = $$("div", {
  2730. className: "U_MD_D_KO",
  2731. "onmousedown": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2735. "onclick": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_yunhaiTeacherDeskIconInfo[i]])
  2739. }, _frag); //
  2740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2743. } //_hkStudentDeskIconInfo
  2744. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2745. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2746. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2747. continue
  2748. }
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2763. }
  2764. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2765. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2766. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2767. continue
  2768. }
  2769. _content = $$("div", {
  2770. className: "U_MD_D_KO",
  2771. "onmousedown": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_hkTeacherDeskIconInfo[i]]),
  2775. "onclick": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_hkTeacherDeskIconInfo[i]])
  2779. }, _frag); //
  2780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2783. }
  2784. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2785. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2786. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2787. continue
  2788. }
  2789. _content = $$("div", {
  2790. className: "U_MD_D_KO",
  2791. "onmousedown": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_hkaceTeacherDeskIconInfo[i]]),
  2795. "onclick": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_hkaceTeacherDeskIconInfo[i]])
  2799. }, _frag); //
  2800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2803. }
  2804. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2805. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2806. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2807. continue
  2808. }
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_cocobizTeacherDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_cocobizTeacherDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2825. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2826. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2827. continue
  2828. }
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2845. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_gdjgAdminDeskIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_gdjgAdminDeskIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2862. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2863. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2864. continue
  2865. }
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_gdjgTeacherDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_gdjgTeacherDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2882. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2883. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2884. continue
  2885. }
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_szherTeacherDeskIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_szherTeacherDeskIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2902. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_heyuannAdminDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_heyuannAdminDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2919. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2920. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2921. continue
  2922. }
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_heyuanTeacherDeskIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_heyuanTeacherDeskIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2937. } //
  2938. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2939. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_dseiAdminDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_dseiAdminDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2956. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2957. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2958. continue
  2959. }
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_dseiTeacherDeskIconInfo[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_dseiTeacherDeskIconInfo[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2974. } //
  2975. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2976. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2977. _content = $$("div", {
  2978. className: "U_MD_D_KO",
  2979. "onmousedown": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_chjyjAdminDeskIconInfo[i]]),
  2983. "onclick": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_chjyjAdminDeskIconInfo[i]])
  2987. }, _frag); //
  2988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2991. }//
  2992. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2993. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2994. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2995. continue
  2996. }
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_chjyjTeacherDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_chjyjTeacherDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3013. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_szjkyAdminDeskIconInfo[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_szjkyAdminDeskIconInfo[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3028. }//
  3029. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3030. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3031. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3032. continue
  3033. }
  3034. _content = $$("div", {
  3035. className: "U_MD_D_KO",
  3036. "onmousedown": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_szjkyTeacherDeskIconInfo[i]]),
  3040. "onclick": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_szjkyTeacherDeskIconInfo[i]])
  3044. }, _frag); //
  3045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3048. }
  3049. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3050. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3051. _content = $$("div", {
  3052. className: "U_MD_D_KO",
  3053. "onmousedown": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_futianAdminDeskIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_futianAdminDeskIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3065. }
  3066. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3067. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3068. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3069. continue
  3070. }
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_futianTeacherDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_futianTeacherDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3087. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3088. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3089. continue
  3090. }
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_MingdeTeacherDeskIcon[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_MingdeTeacherDeskIcon[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3105. }
  3106. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3107. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_lhsAdminDesktopIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_lhsAdminDesktopIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3124. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3125. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_lhsteacherDesktopIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_lhsteacherDesktopIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3142. }
  3143. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3144. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3145. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3146. continue
  3147. }
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_zhoujiateacherDesktopIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3164. for (i = 0; i < _hanDeskIcon.length; i++) {
  3165. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_hanDeskIcon[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_hanDeskIcon[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3184. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3185. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_orgStemDeskIcon[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_orgStemDeskIcon[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3204. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3205. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_szulsDeskIcon[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_szulsDeskIcon[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3224. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3225. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3226. continue
  3227. }
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_orgDesktopIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_orgDesktopIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3244. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3245. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_schoolDesktopIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_schoolDesktopIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3264. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3265. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_GMteacherDesktopIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_GMteacherDesktopIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3284. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3285. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_SONGteacherDesktopIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_SONGteacherDesktopIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3304. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3305. _content = $$("div", {
  3306. className: "U_MD_D_KO",
  3307. "onmousedown": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_GMstudentDesktopIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_GMstudentDesktopIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3319. }
  3320. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3321. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3322. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3323. continue
  3324. }
  3325. _content = $$("div", {
  3326. className: "U_MD_D_KO",
  3327. "onmousedown": U.UF.C.closure(function (obj) {
  3328. //防止拖动图标即打开了桌面应用
  3329. U.MD.D.click(this, obj);
  3330. }, [_tcTeacherDeskIconInfo[i]]),
  3331. "onclick": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_tcTeacherDeskIconInfo[i]])
  3335. }, _frag); //
  3336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3339. }
  3340. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3341. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3342. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3343. continue
  3344. }
  3345. _content = $$("div", {
  3346. className: "U_MD_D_KO",
  3347. "onmousedown": U.UF.C.closure(function (obj) {
  3348. //防止拖动图标即打开了桌面应用
  3349. U.MD.D.click(this, obj);
  3350. }, [_tcOrganizerDeskIconInfo[i]]),
  3351. "onclick": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_tcOrganizerDeskIconInfo[i]])
  3355. }, _frag); //
  3356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3359. }
  3360. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3361. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3362. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3363. continue
  3364. }
  3365. _content = $$("div", {
  3366. className: "U_MD_D_KO",
  3367. "onmousedown": U.UF.C.closure(function (obj) {
  3368. //防止拖动图标即打开了桌面应用
  3369. U.MD.D.click(this, obj);
  3370. }, [_szscTeacherDeskIconInfo[i]]),
  3371. "onclick": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_szscTeacherDeskIconInfo[i]])
  3375. }, _frag); //
  3376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3379. }
  3380. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3381. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3382. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3383. continue
  3384. }
  3385. _content = $$("div", {
  3386. className: "U_MD_D_KO",
  3387. "onmousedown": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_szscOrganizerDeskIconInfo[i]]),
  3391. "onclick": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_szscOrganizerDeskIconInfo[i]])
  3395. }, _frag); //
  3396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3399. }
  3400. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3401. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3402. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3403. continue
  3404. }
  3405. _content = $$("div", {
  3406. className: "U_MD_D_KO",
  3407. "onmousedown": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_nsfxTeacherDeskIconInfo[i]]),
  3411. "onclick": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_nsfxTeacherDeskIconInfo[i]])
  3415. }, _frag); //
  3416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3419. }
  3420. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3421. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3422. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3423. continue
  3424. }
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_stiaTeacherDeskIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_stiaTeacherDeskIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3441. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3442. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3443. continue
  3444. }
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_szdjgTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_szdjgTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3461. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3462. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_x010607TeacherDeskIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_x010607TeacherDeskIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3481. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3482. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3483. continue
  3484. }
  3485. _content = $$("div", {
  3486. className: "U_MD_D_KO",
  3487. "onmousedown": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_xhlyTeacherDeskIconInfo[i]]),
  3491. "onclick": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_xhlyTeacherDeskIconInfo[i]])
  3495. }, _frag); //
  3496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3499. }
  3500. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3501. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3502. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3503. continue
  3504. }
  3505. _content = $$("div", {
  3506. className: "U_MD_D_KO",
  3507. "onmousedown": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3511. "onclick": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3515. }, _frag); //
  3516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3519. }
  3520. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3521. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3522. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3523. continue
  3524. }
  3525. _content = $$("div", {
  3526. className: "U_MD_D_KO",
  3527. "onmousedown": U.UF.C.closure(function (obj) {
  3528. //防止拖动图标即打开了桌面应用
  3529. U.MD.D.click(this, obj);
  3530. }, [_x010503TeacherDeskIconInfo[i]]),
  3531. "onclick": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_x010503TeacherDeskIconInfo[i]])
  3535. }, _frag); //
  3536. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3537. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3538. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3539. }
  3540. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3541. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3542. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3543. continue
  3544. }
  3545. _content = $$("div", {
  3546. className: "U_MD_D_KO",
  3547. "onmousedown": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_x010608TeacherDeskIconInfo[i]]),
  3551. "onclick": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_x010608TeacherDeskIconInfo[i]])
  3555. }, _frag); //
  3556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3559. }
  3560. } else {
  3561. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3562. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3563. continue
  3564. }
  3565. _content = $$("div", {
  3566. className: "U_MD_D_KO",
  3567. "onmousedown": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_teacherDesktopIconInfo[i]]),
  3571. "onclick": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_teacherDesktopIconInfo[i]])
  3575. }, _frag); //
  3576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3579. }
  3580. }
  3581. } else {
  3582. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. style: { 'width': '124px', 'height': '145px' },
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_easyDesktopIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_easyDesktopIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3598. }
  3599. }
  3600. if (type == 1) {
  3601. //加载好后给图标定位
  3602. U.MD.D.iconPostion($(_frag).Child());
  3603. } else {
  3604. //加载好后给图标定位
  3605. U.MD.D.iconPostion2($(_frag).Child());
  3606. }
  3607. //把图标加载到页面
  3608. el.appendChild(_frag);
  3609. }
  3610. /**
  3611. * 显示任务栏
  3612. *
  3613. * @param {element} 桌面元素
  3614. */
  3615. U.MD.D.I.displayTaskbar = function (el) {
  3616. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3617. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3618. //任务栏位置变化
  3619. U.selectEl(el).css({ "bottom": "0px" });
  3620. //桌面位置变话
  3621. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3622. }
  3623. }
  3624. //#region 桌面图标拖动逻辑
  3625. /**
  3626. * 桌面排列图标
  3627. *
  3628. * @param {element} 桌面元素
  3629. * @param {object} 上下相距的距离
  3630. * @param {object} 左右相距的距离
  3631. * @return {object} 命名空间
  3632. */
  3633. U.MD.D.iconPostion = function (childs, top, left) {
  3634. var i; //用于循环处理
  3635. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3636. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3637. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3638. for (i = 0; i < childs.length; i++) {
  3639. //如果竖排top超过了范围处理
  3640. if (top + 95 > US.height - 10) {
  3641. //left超过了页面范围处理,则向上重叠打印处理
  3642. if ((left + 180) > US.width) {
  3643. top -= 110;
  3644. left -= 90;
  3645. }
  3646. //没有超过范围,那么left+90添加到下一个竖排打印
  3647. else {
  3648. left += 90;
  3649. top = 15;
  3650. };
  3651. }
  3652. //给图标的位置赋值
  3653. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3654. if (i < childs.length - 1) {
  3655. //页面图标每次向下加95
  3656. top += 95;
  3657. }
  3658. }
  3659. //返回最后调用的图标的位置
  3660. return [top, left];
  3661. }
  3662. /**
  3663. * 桌面排列图标
  3664. *
  3665. * @param {element} 桌面元素
  3666. * @param {object} 上下相距的距离
  3667. * @param {object} 左右相距的距离
  3668. * @return {object} 命名空间
  3669. */
  3670. U.MD.D.iconPostion2 = function (childs, top, left) {
  3671. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3672. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3673. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3674. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3675. for (i = 0; i < childs.length; i++) {
  3676. //如果竖排top超过了范围处理
  3677. if (left + 150 > US.width - 10) {
  3678. //left超过了页面范围处理,则向上重叠打印处理
  3679. if ((top + 180) > US.Height) {
  3680. top -= 150;
  3681. left -= 150;
  3682. }
  3683. //没有超过范围,那么left+90添加到下一个竖排打印
  3684. else {
  3685. top += 150;
  3686. left = ol;
  3687. };
  3688. }
  3689. //给图标的位置赋值
  3690. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3691. if (i < childs.length - 1) {
  3692. //页面图标每次向下加95
  3693. left += 150;
  3694. }
  3695. }
  3696. //返回最后调用的图标的位置
  3697. return [top, left];
  3698. }
  3699. /**
  3700. * 桌面点击事件逻辑
  3701. *
  3702. * @param {element} 桌面元素
  3703. * @param {object} 上下相距的距离
  3704. * @param {object} 左右相距的距离
  3705. * @return {object} 命名空间
  3706. */
  3707. U.MD.D.click = function (el, obj) {
  3708. var _buttonnumber = event.button; //点击的按钮的事件值
  3709. var _userinfo = US.userInfo;
  3710. U.UF.EV.stopBubble(); //阻止向上冒泡
  3711. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3712. if (_buttonnumber < 2) {
  3713. //如果是click事件的处理
  3714. if (event.type == "click") {
  3715. //如果元素在mousemove事件中没有移动则出发click事件
  3716. if (!U.MD.D.I.IsDrag) {
  3717. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3718. U.alert("请先登录您的账号!");
  3719. setTimeout(() => {
  3720. U.MD.U.L.login();
  3721. }, 2000);
  3722. } else {
  3723. //打开应用处理
  3724. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3725. }
  3726. }
  3727. }
  3728. //如果是mouse事件的处理
  3729. else {
  3730. if (US.Config.type == '1') {
  3731. //拖动处理,添加拖动和拖动结束事件
  3732. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3733. }
  3734. }
  3735. U.MD.D.I.IsDrag = false;
  3736. }
  3737. }
  3738. /**
  3739. * 拖动的处理
  3740. *
  3741. */
  3742. U.MD.D.iconMove = function () {
  3743. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3744. U.MD.D.I.IsDrag = true;
  3745. }
  3746. /**
  3747. * 拖动结束后,这里是定位处理,以网状的形式定位
  3748. *
  3749. * @param {element} 拖动的元素
  3750. * @return {object} 命名空间
  3751. */
  3752. U.MD.D.iconUp = function (el) {
  3753. var _top = 15,
  3754. _left = 20,
  3755. _margin,
  3756. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3757. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3758. if (_positioninfo["OT"] > 15) {
  3759. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3760. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3761. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3762. }
  3763. if (_positioninfo["OL"] > 20) {
  3764. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3765. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3766. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3767. }
  3768. //while循环判断么一个重叠的元素
  3769. do {
  3770. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3771. _top = _positioninfo[0] + 95; //得到定位后的top
  3772. _left = _positioninfo[1]; //得到定位后的left
  3773. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3774. }
  3775. /**
  3776. * 判断拖动后图标是否重叠
  3777. *
  3778. * @param {element} 拖动的元素
  3779. * @param {element} 桌面所有的元素
  3780. * @param {array} 拖动元素的位置
  3781. ----------[0] 上 top
  3782. ----------[1] 左 left
  3783. * @return {object} 命名空间
  3784. */
  3785. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3786. //循环所有的图标
  3787. for (var i = 0; i < childs.length; i++) {
  3788. //判断有没有和该图标诶子重叠的元素
  3789. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3790. return childs[i]; //如果有返回
  3791. }
  3792. }
  3793. }
  3794. //#endregion
  3795. //#endregion
  3796. //#region 桌面应用
  3797. /**
  3798. * 打开应用
  3799. *
  3800. * @param {string} 类型
  3801. -----------------Disk 网盘系统
  3802. -----------------PDisk 学习系统网盘
  3803. -----------------Poto 图片
  3804. -----------------Video 视频
  3805. -----------------Music 音乐
  3806. -----------------Word word
  3807. -----------------Excel excel
  3808. -----------------Txt 记事本
  3809. -----------------PB 学习系统
  3810. -----------------Blog 朋友圈系统
  3811. -----------------FTP ftp系统
  3812. -----------------Group 好友群
  3813. -----------------SY 首页系统
  3814. -----------------Set 个人设置
  3815. -----------------XSet 系统设置
  3816. -----------------App 我们所有的app
  3817. -----------------BC c.1473.cn 平台
  3818. -----------------CWeb d.1473.cn 变成平台
  3819. -----------------其他的外联系统 我们统一用iframe打开
  3820. * @param {array} 类型
  3821. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3822. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3823. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3824. 如果第一个参数为其他,则无第二个参数
  3825. * @returns {array}
  3826. */
  3827. window.addEventListener('message', function (e) { // 监听 message 事件
  3828. // alert(e.data.type);
  3829. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3830. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3831. //3是展示全部阶段 2学生 1老师 4专家
  3832. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3833. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3834. //3是展示全部阶段 2学生 1老师 4专家
  3835. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3836. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3837. //3是展示全部阶段 2学生 1老师 4专家
  3838. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3839. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3840. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3841. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3842. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3843. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3844. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3845. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3846. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3847. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3848. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3849. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3850. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3851. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3852. //3是展示全部阶段 2学生 1老师 4专家
  3853. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3854. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3855. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3856. U.MD.D.I.selectUser();
  3857. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3858. var _formel = document.getElementById("study");
  3859. U.UF.F.windowZooming(_formel);
  3860. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3861. var _formel = document.getElementById("studyDetail");
  3862. U.UF.F.windowZooming(_formel);
  3863. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3864. var _formel = document.getElementById("studyDetail");
  3865. U.UF.F.windowZooming(_formel);
  3866. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3867. var _formel = document.getElementById("studentStudy");
  3868. U.UF.F.windowZooming(_formel);
  3869. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3870. // var _formel = document.getElementById("study");
  3871. //如果最大化了,那么就把他缩小
  3872. // if (_formel.ismaximize) {
  3873. // return;
  3874. // }
  3875. // U.UF.F.windowZooming(_formel);
  3876. // U.UF.F.topWindow(_formel);
  3877. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3878. // var _formel = document.getElementById("studyDetail");
  3879. //如果最大化了,那么就把他缩小
  3880. // if (_formel.ismaximize) {
  3881. // return;
  3882. // }
  3883. // U.UF.F.windowZooming(_formel);
  3884. // U.UF.F.topWindow(_formel);
  3885. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3886. // var _formel = document.getElementById("studentStudy");
  3887. // if (_formel.ismaximize) {
  3888. // return;
  3889. // }
  3890. // U.UF.F.windowZooming(_formel);
  3891. // U.UF.F.topWindow(_formel);
  3892. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3893. var _formel = document.getElementById("study");
  3894. // if (_formel.ismaximize) {
  3895. // return;
  3896. // }
  3897. // U.UF.F.windowZooming(_formel);
  3898. U.UF.F.topWindow(_formel);
  3899. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3900. var _formel = document.getElementById("studentIndex");
  3901. U.UF.F.windowZooming(_formel);
  3902. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3903. var _formel = document.getElementById("studyDetailS");
  3904. U.UF.F.windowZooming(_formel);
  3905. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3906. var _formel = document.getElementById("studioIndex");
  3907. U.UF.F.windowZooming(_formel);
  3908. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3909. var _formel = document.getElementById("studyDetailStudio");
  3910. U.UF.F.windowZooming(_formel);
  3911. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3912. var _formel = document.getElementById("studyDetailStudio");
  3913. U.UF.F.windowZooming(_formel);
  3914. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3915. var _formel = document.getElementById("studyDetailNT");
  3916. U.UF.F.windowZooming(_formel);
  3917. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3918. var _formel = document.getElementById("studyDetailS");
  3919. U.UF.F.windowZooming(_formel);
  3920. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3921. var _formel = document.getElementById("studyDetailS");
  3922. U.UF.F.topWindow(_formel);
  3923. } else if (e.data.tools && e.data.tools == "1") {
  3924. // U.MD.D.I.openApplication("whiteboard")
  3925. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3926. } else if (e.data.tools && e.data.tools == "2") {
  3927. U.MD.D.I.openApplication("note")
  3928. } else if (e.data.tools && e.data.tools == "3") {
  3929. // U.MD.D.I.openApplication("mind")
  3930. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3931. } else if (e.data.tools && e.data.tools == "4") {
  3932. U.MD.D.I.openApplication("investigation")
  3933. } else if (e.data.tools && e.data.tools == "6") {
  3934. // U.MD.D.I.openApplication("doc")
  3935. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3936. } else if (e.data.tools && e.data.tools == "7") {
  3937. // U.MD.D.I.openApplication("mindNetwork")
  3938. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3939. } else if (e.data.tools && e.data.tools == "8") {
  3940. U.MD.D.I.openApplication("library")
  3941. } else if (e.data.tools && e.data.tools == "17") {
  3942. U.MD.D.I.openApplication("stuLibrary")
  3943. } else if (e.data.tools && e.data.tools == "18") {
  3944. U.MD.D.I.openApplication("train")
  3945. } else if (e.data.tools && e.data.tools == "21") {
  3946. U.MD.D.I.openApplication("program")
  3947. } else if (e.data.tools && e.data.tools == "22") {
  3948. U.MD.D.I.openApplication("AIprogram2")
  3949. } else if (e.data.tools && e.data.tools == "23") {
  3950. U.MD.D.I.openApplication("Pythonprogram")
  3951. } else if (e.data.tools && e.data.tools == "24") {
  3952. U.MD.D.I.openApplication("AIprogram")
  3953. } else if (e.data.tools && e.data.tools == "25") {
  3954. U.MD.D.I.openApplication("sys")
  3955. } else if (e.data.tools && e.data.tools == "26") {
  3956. // U.MD.D.I.openApplication("courseDesign")
  3957. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3958. } else if (e.data.tools && e.data.tools == "31") {
  3959. U.MD.D.I.openApplication("netWorkPanel")
  3960. } else if (e.data.tools && e.data.tools == "32") {
  3961. U.MD.D.I.openApplication("codeEdit")
  3962. } else if (e.data.tools && e.data.tools == "57") {
  3963. U.MD.D.I.openApplication("CocoPi")
  3964. } else if (e.data.tools && e.data.tools == "63") {
  3965. U.MD.D.I.openApplication("Wood")
  3966. } else if (e.data.tools && e.data.tools == "58") {
  3967. U.MD.D.I.openApplication("car")
  3968. } else if (e.data.tools && e.data.tools == "59") {
  3969. U.MD.D.I.openApplication("lineSearch")
  3970. } else if (e.data.tools && e.data.tools == "60") {
  3971. U.MD.D.I.openApplication("deepLearning")
  3972. } else if (e.data.tools && e.data.tools == "61") {
  3973. U.MD.D.I.openApplication("allHistory")
  3974. } else if (e.data.tools && e.data.tools == "28") {
  3975. U.MD.D.I.openApplication("translation")
  3976. } else if (e.data.tools && e.data.tools == "37") {
  3977. U.MD.D.I.openApplication("mohe")
  3978. } else if (e.data.tools && e.data.tools == "38") {
  3979. U.MD.D.I.openApplication("24game")
  3980. } else if (e.data.tools && e.data.tools == "39") {
  3981. U.MD.D.I.openApplication("GeoGebra")
  3982. } else if (e.data.tools && e.data.tools == "43") {
  3983. U.MD.D.I.openApplication("studentEvaluate")
  3984. } else if (e.data.tools && e.data.tools == "44") {
  3985. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3986. } else if (e.data.tools && e.data.tools == "46") {
  3987. U.MD.D.I.openApplication("project")
  3988. } else if (e.data.tools && e.data.tools == "71") {
  3989. U.MD.D.I.openApplication("aigptCourse")
  3990. } else if (e.data.tools && e.data.tools == "1s") {
  3991. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3992. } else if (e.data.tools && e.data.tools == "3s") {
  3993. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3994. } else if (e.data.tools && e.data.tools == "6s") {
  3995. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3996. } else if (e.data.tools && e.data.tools == "1studio") {
  3997. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3998. } else if (e.data.tools && e.data.tools == "3studio") {
  3999. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4000. } else if (e.data.tools && e.data.tools == "6studio") {
  4001. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4002. } else if (e.data.tools && e.data.tools == "3y") {
  4003. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4004. } else if (e.data.tools && e.data.tools == "1y") {
  4005. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4006. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4007. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4008. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4009. U.MD.D.I.openApplication("AIAnalyse")
  4010. } else if (e.data.tools && e.data.tools == "1teacher") {
  4011. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4012. } else if (e.data.tools && e.data.tools == "3teacher") {
  4013. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4014. } else if (e.data.tools && e.data.tools == "7teacher") {
  4015. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4016. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4017. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4018. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4019. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4020. } else if (e.data.tools && e.data.tools == "1E") {
  4021. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4022. } else if (e.data.tools && e.data.tools == "3E") {
  4023. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4024. } else if (e.data.tools && e.data.tools == "57y") {
  4025. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4026. } else if (e.data.tools && e.data.tools == "57u") {
  4027. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4028. } else if (e.data.tools && e.data.tools == "57teacher") {
  4029. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4030. } else if (e.data.tools && e.data.tools == "64") {
  4031. U.MD.D.I.openApplication("AIChat")
  4032. } else if (e.data.tools && e.data.tools == "66") {
  4033. U.MD.D.I.openApplication("formulaEdi")
  4034. } else if (e.data.tools && e.data.tools == "67") {
  4035. U.MD.D.I.openApplication("molStr")
  4036. } else if (e.data.tools && e.data.tools == "68") {
  4037. U.MD.D.I.openApplication("timeAxis")
  4038. } else if (e.data.tools && e.data.tools == "openCourse") {
  4039. let _data = {
  4040. typea: e.data.typea || '',
  4041. typeb: e.data.typeb || '',
  4042. typed: e.data.typed || '',
  4043. }
  4044. U.MD.D.I.openInApplication("index", _data)
  4045. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4046. let _data = {
  4047. classid: e.data.classid || '',
  4048. }
  4049. U.MD.D.I.openInApplication("dataClass", _data)
  4050. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4051. let _data = {
  4052. cid: e.data.cid || '',
  4053. gid: e.data.gid || '',
  4054. }
  4055. U.MD.D.I.openInApplication("opencCscl", _data)
  4056. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4057. U.MD.D.I.openApplication("dataBoardTest")
  4058. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4059. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4060. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4061. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4062. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4063. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4064. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4065. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4066. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4067. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4068. }else if (e.data.tools && e.data.tools == "loginSz") {
  4069. U.MD.D.I.openInApplication("loginSz")
  4070. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4071. if($('#classroom_observation_board')[0]){
  4072. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4073. }
  4074. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4075. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4076. if($('#classroom_observation_ob_comment')[0]){
  4077. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4078. }
  4079. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4080. }
  4081. });
  4082. U.MD.D.I.selectUser = function () {
  4083. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4084. if (res.value[0].length > 0) {
  4085. US.userInfo = res.value[0][0];
  4086. $(".userName")[0].innerHTML = US.userInfo.username;
  4087. }
  4088. }, [], { "type": "GET", "withCredentials": true });
  4089. }
  4090. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4091. var _userinfo = US.userInfo, //登录用户信息
  4092. _userid = US.userInfo.userid, //登录用户id
  4093. _oid = _userinfo.organizeid,
  4094. _type = US.userInfo.type,
  4095. _org = US.userInfo.org,
  4096. _role = US.userInfo.role,
  4097. _classId = US.userInfo.classid;
  4098. if (_type == 4) {
  4099. tType = 4
  4100. }
  4101. switch (str) {
  4102. case "studyDetailNT": //无终端模式
  4103. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4104. setTimeout(() => {
  4105. U.MD.U.L.login();
  4106. }, 2000);
  4107. } else {
  4108. _formdiv = new U.UF.UI.form(
  4109. "课程详情",
  4110. $$("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 }), {
  4111. "id": "studyDetailNT",
  4112. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4113. "onresize": function () { }
  4114. }, {
  4115. closecallback: function () { }
  4116. }, { "style": { "height": "36px" } }).form; //创建窗体
  4117. _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); } }
  4118. break;
  4119. }
  4120. case "studyDetail":
  4121. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4122. setTimeout(() => {
  4123. U.MD.U.L.login();
  4124. }, 2000);
  4125. } else {
  4126. _formdiv = new U.UF.UI.form(
  4127. "课程详情",
  4128. $$("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 }), {
  4129. "id": "studyDetail",
  4130. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4131. "onresize": function () { }
  4132. }, {
  4133. closecallback: function () { }
  4134. }, { "style": { "height": "36px" } }).form; //创建窗体
  4135. _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); } }
  4136. break;
  4137. }
  4138. case "studyDetailTrain":
  4139. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4140. setTimeout(() => {
  4141. U.MD.U.L.login();
  4142. }, 2000);
  4143. } else {
  4144. _formdiv = new U.UF.UI.form(
  4145. "培训详情",
  4146. $$("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 }), {
  4147. "id": "studyDetailTrain",
  4148. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4149. "onresize": function () { }
  4150. }, {
  4151. closecallback: function () { }
  4152. }, { "style": { "height": "36px" } }).form; //创建窗体
  4153. _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); } }
  4154. break;
  4155. }
  4156. case "studyDetailS":
  4157. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4158. setTimeout(() => {
  4159. U.MD.U.L.login();
  4160. }, 2000);
  4161. } else {
  4162. _formdiv = new U.UF.UI.form(
  4163. "项目详情",
  4164. $$("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 }), {
  4165. "id": "studyDetailS",
  4166. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4167. "onresize": function () { }
  4168. }, {
  4169. closecallback: function () { }
  4170. }, { "style": { "height": "36px" } }).form; //创建窗体
  4171. _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); } }
  4172. break;
  4173. }
  4174. case "studyDetailStudio":
  4175. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4176. setTimeout(() => {
  4177. U.MD.U.L.login();
  4178. }, 2000);
  4179. } else {
  4180. _formdiv = new U.UF.UI.form(
  4181. "工作详情",
  4182. $$("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 }), {
  4183. "id": "studyDetailStudio",
  4184. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4185. "onresize": function () { }
  4186. }, {
  4187. closecallback: function () { }
  4188. }, { "style": { "height": "36px" } }).form; //创建窗体
  4189. _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); } }
  4190. break;
  4191. }
  4192. case "studyDetailS5":
  4193. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4194. setTimeout(() => {
  4195. U.MD.U.L.login();
  4196. }, 2000);
  4197. } else {
  4198. _formdiv = new U.UF.UI.form(
  4199. "项目详情",
  4200. $$("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 }), {
  4201. "id": "studyDetailS",
  4202. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4203. "onresize": function () { }
  4204. }, {
  4205. closecallback: function () { }
  4206. }, { "style": { "height": "36px" } }).form; //创建窗体
  4207. _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); } }
  4208. break;
  4209. }
  4210. case "studyDetailGM":
  4211. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4212. setTimeout(() => {
  4213. U.MD.U.L.login();
  4214. }, 2000);
  4215. } else {
  4216. _formdiv = new U.UF.UI.form(
  4217. "课程详情",
  4218. $$("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 }), {
  4219. "id": "studyDetail",
  4220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4221. "onresize": function () { }
  4222. }, {
  4223. closecallback: function () { }
  4224. }, { "style": { "height": "36px" } }).form; //创建窗体
  4225. _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); } }
  4226. break;
  4227. }
  4228. case "hanUrl":
  4229. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4230. setTimeout(() => {
  4231. U.MD.U.L.login();
  4232. }, 2000);
  4233. } else {
  4234. _formdiv = new U.UF.UI.form(
  4235. "汉字宫",
  4236. $$("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" }), {
  4237. "id": "hanUrl",
  4238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4239. "onresize": function () { }
  4240. }, {
  4241. closecallback: function () { }
  4242. }, { "style": { "height": "36px" } }).form; //创建窗体
  4243. _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); } }
  4244. break;
  4245. }
  4246. case "index":
  4247. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4248. setTimeout(() => {
  4249. U.MD.U.L.login();
  4250. }, 2000);
  4251. } else {
  4252. _formdiv = new U.UF.UI.form(
  4253. "课程中心",
  4254. $$("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 }), {
  4255. "id": "study",
  4256. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4257. "onresize": function () { }
  4258. }, {
  4259. closecallback: function () { }
  4260. }, { "style": { "height": "36px" } }).form; //创建窗体
  4261. _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); } }
  4262. break;
  4263. }
  4264. case "dataClass":
  4265. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4266. setTimeout(() => {
  4267. U.MD.U.L.login();
  4268. }, 2000);
  4269. } else {
  4270. _formdiv = new U.UF.UI.form(
  4271. "数据报告",
  4272. $$("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 }), {
  4273. "id": "dataClass",
  4274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4275. "onresize": function () { }
  4276. }, {
  4277. closecallback: function () { }
  4278. }, { "style": { "height": "36px" } }).form; //创建窗体
  4279. _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); } }
  4280. break;
  4281. }
  4282. case "opencCscl":
  4283. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4284. setTimeout(() => {
  4285. U.MD.U.L.login();
  4286. }, 2000);
  4287. } else {
  4288. _formdiv = new U.UF.UI.form(
  4289. "协同建构",
  4290. $$("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 }), {
  4291. "id": "futureClass",
  4292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4293. "onresize": function () { }
  4294. }, {
  4295. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4296. }, { "style": { "height": "36px" } }).form; //创建窗体
  4297. _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); } }
  4298. break;
  4299. }
  4300. case "openCourseUpdate":
  4301. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4302. setTimeout(() => {
  4303. U.MD.U.L.login();
  4304. }, 2000);
  4305. } else {
  4306. _formdiv = new U.UF.UI.form(
  4307. "课程管理",
  4308. $$("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 }), {
  4309. "id": "openCourseUpdate",
  4310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. break;
  4316. }
  4317. case "openNewCourseUpdate":
  4318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4319. setTimeout(() => {
  4320. U.MD.U.L.login();
  4321. }, 2000);
  4322. } else {
  4323. _formdiv = new U.UF.UI.form(
  4324. "课程管理",
  4325. $$("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 }), {
  4326. "id": "openCourseUpdate",
  4327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4328. "onresize": function () { }
  4329. }, {
  4330. closecallback: function () { }
  4331. }, { "style": { "height": "36px" } }).form; //创建窗体
  4332. break;
  4333. }
  4334. case "openCourseEUpdate":
  4335. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4336. setTimeout(() => {
  4337. U.MD.U.L.login();
  4338. }, 2000);
  4339. } else {
  4340. _formdiv = new U.UF.UI.form(
  4341. "课程管理",
  4342. $$("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 }), {
  4343. "id": "openCourseUpdate",
  4344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4345. "onresize": function () { }
  4346. }, {
  4347. closecallback: function () { }
  4348. }, { "style": { "height": "36px" } }).form; //创建窗体
  4349. break;
  4350. }
  4351. case "openCourseAiUpdate":
  4352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4353. setTimeout(() => {
  4354. U.MD.U.L.login();
  4355. }, 2000);
  4356. } else {
  4357. _formdiv = new U.UF.UI.form(
  4358. "课程管理",
  4359. $$("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 }), {
  4360. "id": "openCourseUpdate",
  4361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4362. "onresize": function () { }
  4363. }, {
  4364. closecallback: function () { }
  4365. }, { "style": { "height": "36px" } }).form; //创建窗体
  4366. break;
  4367. }
  4368. case "openCourseNewUpdate":
  4369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4370. setTimeout(() => {
  4371. U.MD.U.L.login();
  4372. }, 2000);
  4373. } else {
  4374. _formdiv = new U.UF.UI.form(
  4375. "课程管理",
  4376. $$("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 }), {
  4377. "id": "openCourseUpdate",
  4378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4379. "onresize": function () { }
  4380. }, {
  4381. closecallback: function () { }
  4382. }, { "style": { "height": "36px" } }).form; //创建窗体
  4383. break;
  4384. }
  4385. case "inviteLoginSz":
  4386. _formdiv = new U.UF.UI.form(
  4387. "随机码登录",
  4388. $$("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 }), {
  4389. "id": "loginSz",
  4390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4391. "onresize": function () { }
  4392. }, {
  4393. closecallback: function () { }
  4394. }, { "style": { "height": "36px" } }).form; //创建窗体
  4395. break;
  4396. case "loginSz":
  4397. _formdiv = new U.UF.UI.form(
  4398. "教师登录",
  4399. $$("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" }), {
  4400. "id": "loginSz",
  4401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4402. "onresize": function () { }
  4403. }, {
  4404. closecallback: function () { }
  4405. }, { "style": { "height": "36px" } }).form; //创建窗体
  4406. break;
  4407. case "teacher":
  4408. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4409. setTimeout(() => {
  4410. U.MD.U.L.login();
  4411. }, 2000);
  4412. } else {
  4413. _formdiv = new U.UF.UI.form(
  4414. "教师管理",
  4415. $$("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 }), {
  4416. "id": "teacher",
  4417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4418. "onresize": function () { }
  4419. }, {
  4420. closecallback: function () { }
  4421. }, { "style": { "height": "36px" } }).form; //创建窗体
  4422. break;
  4423. }
  4424. case "dataBoardSZArea":
  4425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4426. setTimeout(() => {
  4427. U.MD.U.L.login();
  4428. }, 2000);
  4429. } else {
  4430. _formdiv = new U.UF.UI.form(
  4431. "综合数据看板",
  4432. $$("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 }), {
  4433. "id": "dataBoardSZArea",
  4434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4435. "onresize": function () { }
  4436. }, {
  4437. closecallback: function () { }
  4438. }, { "style": { "height": "36px" } }).form; //创建窗体
  4439. break;
  4440. }
  4441. case "dataBoardSZCity":
  4442. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4443. setTimeout(() => {
  4444. U.MD.U.L.login();
  4445. }, 2000);
  4446. } else {
  4447. _formdiv = new U.UF.UI.form(
  4448. "综合数据看板",
  4449. $$("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 }), {
  4450. "id": "dataBoardSZCity",
  4451. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. break;
  4457. }
  4458. case "classroom_observation_board":
  4459. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4460. setTimeout(() => {
  4461. U.MD.U.L.login();
  4462. }, 2000);
  4463. } else {
  4464. _formdiv = new U.UF.UI.form(
  4465. "课堂观察",
  4466. $$("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 }), {
  4467. "id": "classroom_observation_board",
  4468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4469. "onresize": function () { }
  4470. }, {
  4471. closecallback: function () { }
  4472. }, { "style": { "height": "36px" } }).form; //创建窗体
  4473. break;
  4474. }
  4475. case "classroom_observation_ob_comment":
  4476. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4477. setTimeout(() => {
  4478. U.MD.U.L.login();
  4479. }, 2000);
  4480. } else {
  4481. _formdiv = new U.UF.UI.form(
  4482. "课堂审核",
  4483. $$("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 }), {
  4484. "id": "classroom_observation_ob_comment",
  4485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4486. "onresize": function () { }
  4487. }, {
  4488. closecallback: function () { }
  4489. }, { "style": { "height": "36px" } }).form; //创建窗体
  4490. break;
  4491. }
  4492. }
  4493. }
  4494. U.MD.D.I.openApplication = function (str, obj, info) {
  4495. obj = obj || {};
  4496. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4497. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4498. _userinfo = US.userInfo, //登录用户信息
  4499. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4500. _oid = obj.organizeid || _userinfo.organizeid,
  4501. _type = US.userInfo.type,
  4502. _org = US.userInfo.org,
  4503. _role = US.userInfo.role,
  4504. _classId = US.userInfo.classid,
  4505. _TscreenType = 1
  4506. _screenType = 2,
  4507. _SscreenType = 3;
  4508. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4509. return;
  4510. }
  4511. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4512. switch (str) {
  4513. case "studnetProject": //好友打开
  4514. _formdiv = new U.UF.UI.form(
  4515. "我的项目",
  4516. $$("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 }), {
  4517. "id": "studnetProject",
  4518. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4519. "onresize": function () { }
  4520. }, {
  4521. closecallback: function () { }
  4522. }, { "style": { "height": "36px" } }).form; //创建窗体
  4523. _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); } }
  4524. break;
  4525. case "studentEvaluate": //好友打开
  4526. _formdiv = new U.UF.UI.form(
  4527. "我的评价",
  4528. $$("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 }), {
  4529. "id": "studentEvaluate",
  4530. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4531. "onresize": function () { }
  4532. }, {
  4533. closecallback: function () { }
  4534. }, { "style": { "height": "36px" } }).form; //创建窗体
  4535. _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); } }
  4536. break;
  4537. case "my":
  4538. _formdiv = new U.UF.UI.form(
  4539. "我的资料",
  4540. $$("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 }), {
  4541. "id": "my",
  4542. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4543. "onresize": function () { }
  4544. }, {
  4545. closecallback: function () { }
  4546. }, { "style": { "height": "36px" } }).form; //创建窗体
  4547. _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); } }
  4548. break;
  4549. case "program":
  4550. _formdiv = new U.UF.UI.form(
  4551. "编程平台",
  4552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4553. "id": "program",
  4554. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4555. "onresize": function () { }
  4556. }, {
  4557. closecallback: function () { }
  4558. }, { "style": { "height": "36px" } }).form; //创建窗体
  4559. _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); } }
  4560. break;
  4561. case "library":
  4562. _formdiv = new U.UF.UI.form(
  4563. "素材库",
  4564. $$("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 }), {
  4565. "id": "library",
  4566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4567. "onresize": function () { }
  4568. }, {
  4569. closecallback: function () { }
  4570. }, { "style": { "height": "36px" } }).form; //创建窗体
  4571. _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); } }
  4572. break;
  4573. case "whiteboard":
  4574. _formdiv = new U.UF.UI.form(
  4575. "电子白板",
  4576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4577. "id": "whiteboard",
  4578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4579. "onresize": function () { }
  4580. }, {
  4581. closecallback: function () { }
  4582. }, { "style": { "height": "36px" } }).form; //创建窗体
  4583. _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); } }
  4584. break;
  4585. case "investigation":
  4586. _formdiv = new U.UF.UI.form(
  4587. "问卷调查",
  4588. $$("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 }), {
  4589. "id": "investigation",
  4590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4591. "onresize": function () { }
  4592. }, {
  4593. closecallback: function () { }
  4594. }, { "style": { "height": "36px" } }).form; //创建窗体
  4595. _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); } }
  4596. break;
  4597. case "note":
  4598. _formdiv = new U.UF.UI.form(
  4599. "便签分类",
  4600. $$("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 }), {
  4601. "id": "note",
  4602. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4603. "onresize": function () { }
  4604. }, {
  4605. closecallback: function () { }
  4606. }, { "style": { "height": "36px" } }).form; //创建窗体
  4607. _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); } }
  4608. break;
  4609. // case "score":
  4610. // _formdiv = new U.UF.UI.form(
  4611. // "量规评分",
  4612. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4613. // "id": "score",
  4614. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4615. // "onresize": function() {}
  4616. // }, {
  4617. // closecallback: function() {}
  4618. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4619. // _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); } }
  4620. // break;
  4621. case "mind":
  4622. _formdiv = new U.UF.UI.form(
  4623. "思维导图",
  4624. $$("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"
  4625. "id": "mind",
  4626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4627. "onresize": function () { }
  4628. }, {
  4629. closecallback: function () { }
  4630. }, { "style": { "height": "36px" } }).form; //创建窗体
  4631. _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); } }
  4632. break;
  4633. case "doc":
  4634. // U.MD.D.I.isRoom();
  4635. _formdiv = new U.UF.UI.form(
  4636. "协同文档",
  4637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4638. "id": "doc",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4645. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4646. // })
  4647. _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); } }
  4648. break;
  4649. case "studentStudy":
  4650. _formdiv = new U.UF.UI.form(
  4651. "课程中心",
  4652. $$("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
  4653. "id": "studentStudy",
  4654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4655. "onresize": function () { }
  4656. }, {
  4657. closecallback: function () { }
  4658. }, { "style": { "height": "36px" } }).form; //创建窗体
  4659. _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); } }
  4660. break;
  4661. case "train": //好友打开
  4662. _formdiv = new U.UF.UI.form(
  4663. "训练平台",
  4664. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4665. "id": "train",
  4666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //创建窗体
  4671. _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); } }
  4672. break;
  4673. case "mindNetwork": //好友打开
  4674. _formdiv = new U.UF.UI.form(
  4675. "思维网格",
  4676. $$("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 }), {
  4677. "id": "mindNetwork",
  4678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4679. "onresize": function () { }
  4680. }, {
  4681. closecallback: function () { }
  4682. }, { "style": { "height": "36px" } }).form; //创建窗体
  4683. _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); } }
  4684. break;
  4685. case "studentClassRoom": //好友打开
  4686. _formdiv = new U.UF.UI.form(
  4687. "实时课堂",
  4688. $$("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 }), {
  4689. "id": "studentClassRoom",
  4690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4691. "onresize": function () { }
  4692. }, {
  4693. closecallback: function () { }
  4694. }, { "style": { "height": "36px" } }).form; //创建窗体
  4695. _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); } }
  4696. setTimeout(() => {
  4697. U.UF.F.windowZooming(_formdiv)
  4698. }, 0);
  4699. break;
  4700. }
  4701. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4702. switch (str) {
  4703. case "studnetProject": //好友打开
  4704. _formdiv = new U.UF.UI.form(
  4705. "我的项目",
  4706. $$("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 }), {
  4707. "id": "studnetProject",
  4708. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. _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); } }
  4714. break;
  4715. case "studentEvaluate": //好友打开
  4716. _formdiv = new U.UF.UI.form(
  4717. "我的评价",
  4718. $$("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 }), {
  4719. "id": "studentEvaluate",
  4720. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4721. "onresize": function () { }
  4722. }, {
  4723. closecallback: function () { }
  4724. }, { "style": { "height": "36px" } }).form; //创建窗体
  4725. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4726. break;
  4727. case "my":
  4728. _formdiv = new U.UF.UI.form(
  4729. "我的资料",
  4730. $$("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 }), {
  4731. "id": "my",
  4732. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4733. "onresize": function () { }
  4734. }, {
  4735. closecallback: function () { }
  4736. }, { "style": { "height": "36px" } }).form; //创建窗体
  4737. _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); } }
  4738. break;
  4739. case "program":
  4740. _formdiv = new U.UF.UI.form(
  4741. "编程平台",
  4742. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4743. "id": "program",
  4744. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4745. "onresize": function () { }
  4746. }, {
  4747. closecallback: function () { }
  4748. }, { "style": { "height": "36px" } }).form; //创建窗体
  4749. _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); } }
  4750. break;
  4751. case "library":
  4752. _formdiv = new U.UF.UI.form(
  4753. "素材库",
  4754. $$("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 }), {
  4755. "id": "library",
  4756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4757. "onresize": function () { }
  4758. }, {
  4759. closecallback: function () { }
  4760. }, { "style": { "height": "36px" } }).form; //创建窗体
  4761. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4762. break;
  4763. case "whiteboard":
  4764. _formdiv = new U.UF.UI.form(
  4765. "电子白板",
  4766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4767. "id": "whiteboard",
  4768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4769. "onresize": function () { }
  4770. }, {
  4771. closecallback: function () { }
  4772. }, { "style": { "height": "36px" } }).form; //创建窗体
  4773. _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); } }
  4774. break;
  4775. case "investigation":
  4776. _formdiv = new U.UF.UI.form(
  4777. "问卷调查",
  4778. $$("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 }), {
  4779. "id": "investigation",
  4780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4781. "onresize": function () { }
  4782. }, {
  4783. closecallback: function () { }
  4784. }, { "style": { "height": "36px" } }).form; //创建窗体
  4785. _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); } }
  4786. break;
  4787. case "note":
  4788. _formdiv = new U.UF.UI.form(
  4789. "便签分类",
  4790. $$("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 }), {
  4791. "id": "note",
  4792. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4793. "onresize": function () { }
  4794. }, {
  4795. closecallback: function () { }
  4796. }, { "style": { "height": "36px" } }).form; //创建窗体
  4797. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4798. break;
  4799. // case "score":
  4800. // _formdiv = new U.UF.UI.form(
  4801. // "量规评分",
  4802. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4803. // "id": "score",
  4804. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4805. // "onresize": function() {}
  4806. // }, {
  4807. // closecallback: function() {}
  4808. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4809. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4810. // break;
  4811. case "mind":
  4812. _formdiv = new U.UF.UI.form(
  4813. "思维导图",
  4814. $$("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"
  4815. "id": "mind",
  4816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _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); } }
  4822. break;
  4823. case "doc":
  4824. // U.MD.D.I.isRoom();
  4825. _formdiv = new U.UF.UI.form(
  4826. "协同文档",
  4827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4828. "id": "doc",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4835. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4836. })
  4837. _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); } }
  4838. break;
  4839. case "train": //好友打开
  4840. _formdiv = new U.UF.UI.form(
  4841. "训练平台",
  4842. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4843. "id": "train",
  4844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4845. "onresize": function () { }
  4846. }, {
  4847. closecallback: function () { }
  4848. }, { "style": { "height": "36px" } }).form; //创建窗体
  4849. _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); } }
  4850. break;
  4851. case "studentStudy":
  4852. _formdiv = new U.UF.UI.form(
  4853. "课程中心",
  4854. $$("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
  4855. "id": "studentStudy",
  4856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4857. "onresize": function () { }
  4858. }, {
  4859. closecallback: function () { }
  4860. }, { "style": { "height": "36px" } }).form; //创建窗体
  4861. _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); } }
  4862. break;
  4863. case "mindNetwork": //好友打开
  4864. _formdiv = new U.UF.UI.form(
  4865. "思维网格",
  4866. $$("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 }), {
  4867. "id": "mindNetwork",
  4868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4869. "onresize": function () { }
  4870. }, {
  4871. closecallback: function () { }
  4872. }, { "style": { "height": "36px" } }).form; //创建窗体
  4873. _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); } }
  4874. break;
  4875. case "studentClassRoom": //好友打开
  4876. _formdiv = new U.UF.UI.form(
  4877. "实时课堂",
  4878. $$("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 }), {
  4879. "id": "studentClassRoom",
  4880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. _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); } }
  4886. setTimeout(() => {
  4887. U.UF.F.windowZooming(_formdiv)
  4888. }, 0);
  4889. break;
  4890. }
  4891. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4892. //选择应用处理
  4893. switch (str) {
  4894. case "project": //好友打开
  4895. _formdiv = new U.UF.UI.form(
  4896. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4897. $$("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 }), {
  4898. "id": "project",
  4899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. _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); } }
  4905. break;
  4906. case "student":
  4907. _formdiv = new U.UF.UI.form(
  4908. "学生管理",
  4909. $$("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 }), {
  4910. "id": "student",
  4911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4912. "onresize": function () { }
  4913. }, {
  4914. closecallback: function () { }
  4915. }, { "style": { "height": "36px" } }).form; //创建窗体
  4916. _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); } }
  4917. break;
  4918. case "evaluate":
  4919. _formdiv = new U.UF.UI.form(
  4920. "学生评价",
  4921. $$("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 }), {
  4922. "id": "evaluate",
  4923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4924. "onresize": function () { }
  4925. }, {
  4926. closecallback: function () { }
  4927. }, { "style": { "height": "36px" } }).form; //创建窗体
  4928. _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); } }
  4929. break;
  4930. case "sys":
  4931. _formdiv = new U.UF.UI.form(
  4932. "目标管理",
  4933. $$("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 }), {
  4934. "id": "sys",
  4935. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //创建窗体
  4940. _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); } }
  4941. break;
  4942. case "courseDesign":
  4943. _formdiv = new U.UF.UI.form(
  4944. "项目设计",
  4945. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4946. "id": "courseDesign",
  4947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4948. "onresize": function () { }
  4949. }, {
  4950. closecallback: function () { }
  4951. }, { "style": { "height": "36px" } }).form; //创建窗体
  4952. _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); } }
  4953. break;
  4954. case "program":
  4955. _formdiv = new U.UF.UI.form(
  4956. "编程平台",
  4957. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4958. "id": "program",
  4959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4960. "onresize": function () { }
  4961. }, {
  4962. closecallback: function () { }
  4963. }, { "style": { "height": "36px" } }).form; //创建窗体
  4964. _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); } }
  4965. break;
  4966. case "class":
  4967. _formdiv = new U.UF.UI.form(
  4968. "班级管理",
  4969. $$("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 }), {
  4970. "id": "class",
  4971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. _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); } }
  4977. break;
  4978. case "Grade":
  4979. _formdiv = new U.UF.UI.form(
  4980. "年级管理",
  4981. $$("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 }), {
  4982. "id": "Grade",
  4983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4984. "onresize": function () { }
  4985. }, {
  4986. closecallback: function () { }
  4987. }, { "style": { "height": "36px" } }).form; //创建窗体
  4988. _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); } }
  4989. break;
  4990. case "teacherOffice":
  4991. _formdiv = new U.UF.UI.form(
  4992. "教研室",
  4993. $$("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 }), {
  4994. "id": "teacherOffice",
  4995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4996. "onresize": function () { }
  4997. }, {
  4998. closecallback: function () { }
  4999. }, { "style": { "height": "36px" } }).form; //创建窗体
  5000. _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); } }
  5001. break;
  5002. case "my":
  5003. _formdiv = new U.UF.UI.form(
  5004. "我的资料",
  5005. $$("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 }), {
  5006. "id": "my",
  5007. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. _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); } }
  5013. break;
  5014. case "notice":
  5015. _formdiv = new U.UF.UI.form(
  5016. "通知公告",
  5017. $$("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 }), {
  5018. "id": "notice",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _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); } }
  5025. break;
  5026. case "library":
  5027. _formdiv = new U.UF.UI.form(
  5028. "素材库",
  5029. $$("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 }), {
  5030. "id": "library",
  5031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break;
  5038. case "whiteboard":
  5039. _formdiv = new U.UF.UI.form(
  5040. "电子白板",
  5041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5042. "id": "whiteboard",
  5043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _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); } }
  5049. break;
  5050. case "investigation":
  5051. _formdiv = new U.UF.UI.form(
  5052. "问卷调查",
  5053. $$("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 }), {
  5054. "id": "investigation",
  5055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "note":
  5063. _formdiv = new U.UF.UI.form(
  5064. "便签分类",
  5065. $$("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 }), {
  5066. "id": "note",
  5067. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. // case "score":
  5075. // _formdiv = new U.UF.UI.form(
  5076. // "量规评分",
  5077. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5078. // "id": "score",
  5079. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5080. // "onresize": function() {}
  5081. // }, {
  5082. // closecallback: function() {}
  5083. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. // _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); } }
  5085. // break;
  5086. case "mind":
  5087. _formdiv = new U.UF.UI.form(
  5088. "思维导图",
  5089. $$("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"
  5090. "id": "mind",
  5091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "doc":
  5099. // U.MD.D.I.isRoom();
  5100. _formdiv = new U.UF.UI.form(
  5101. "协同文档",
  5102. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5103. "id": "doc",
  5104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5110. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5111. })
  5112. _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); } }
  5113. break;
  5114. case "study":
  5115. _formdiv = new U.UF.UI.form(
  5116. "课程中心",
  5117. $$("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
  5118. "id": "study",
  5119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _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); } }
  5125. break;
  5126. case "mindNetwork": //好友打开
  5127. _formdiv = new U.UF.UI.form(
  5128. "思维网格",
  5129. $$("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 }), {
  5130. "id": "mindNetwork",
  5131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _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); } }
  5137. break;
  5138. case "train": //好友打开
  5139. _formdiv = new U.UF.UI.form(
  5140. "训练平台",
  5141. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5142. "id": "mindNetwork",
  5143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _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); } }
  5149. break;
  5150. case "teacherClassRoom": //好友打开
  5151. _formdiv = new U.UF.UI.form(
  5152. "实时课堂",
  5153. $$("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 }), {
  5154. "id": "teacherClassRoom",
  5155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. setTimeout(() => {
  5162. U.UF.F.windowZooming(_formdiv)
  5163. }, 0);
  5164. break;
  5165. }
  5166. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5167. switch (str) {
  5168. case "project": //好友打开
  5169. _formdiv = new U.UF.UI.form(
  5170. "课程管理",
  5171. $$("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 }), {
  5172. "id": "project",
  5173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _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); } }
  5179. break;
  5180. case "evaluate":
  5181. _formdiv = new U.UF.UI.form(
  5182. "学生评价",
  5183. $$("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 }), {
  5184. "id": "evaluate",
  5185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _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); } }
  5191. break;
  5192. case "notice":
  5193. _formdiv = new U.UF.UI.form(
  5194. "通知公告",
  5195. $$("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 }), {
  5196. "id": "notice",
  5197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. break;
  5204. case "stuLibrary":
  5205. _formdiv = new U.UF.UI.form(
  5206. "学习资料",
  5207. $$("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 }), {
  5208. "id": "stuLibrary",
  5209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5210. "onresize": function () { }
  5211. }, {
  5212. closecallback: function () { }
  5213. }, { "style": { "height": "36px" } }).form; //创建窗体
  5214. _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); } }
  5215. break;
  5216. case "program":
  5217. _formdiv = new U.UF.UI.form(
  5218. "编程平台",
  5219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5220. "id": "program",
  5221. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5222. "onresize": function () { }
  5223. }, {
  5224. closecallback: function () { }
  5225. }, { "style": { "height": "36px" } }).form; //创建窗体
  5226. _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); } }
  5227. break;
  5228. case "whiteboard":
  5229. _formdiv = new U.UF.UI.form(
  5230. "电子白板",
  5231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5232. "id": "whiteboard",
  5233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. case "investigation":
  5241. _formdiv = new U.UF.UI.form(
  5242. "问卷调查",
  5243. $$("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 }), {
  5244. "id": "investigation",
  5245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "mind":
  5253. _formdiv = new U.UF.UI.form(
  5254. "思维导图",
  5255. $$("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"
  5256. "id": "mind",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _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); } }
  5263. break;
  5264. case "doc":
  5265. // U.MD.D.I.isRoom();
  5266. _formdiv = new U.UF.UI.form(
  5267. "协同文档",
  5268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5269. "id": "doc",
  5270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5276. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5277. })
  5278. _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); } }
  5279. break;
  5280. case "study":
  5281. _formdiv = new U.UF.UI.form(
  5282. "课程中心",
  5283. $$("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
  5284. "id": "study",
  5285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _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); } }
  5291. break;
  5292. case "mindNetwork": //好友打开
  5293. _formdiv = new U.UF.UI.form(
  5294. "思维网格",
  5295. $$("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 }), {
  5296. "id": "mindNetwork",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. case "train": //好友打开
  5305. _formdiv = new U.UF.UI.form(
  5306. "训练平台",
  5307. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5308. "id": "train",
  5309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5310. "onresize": function () { }
  5311. }, {
  5312. closecallback: function () { }
  5313. }, { "style": { "height": "36px" } }).form; //创建窗体
  5314. _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); } }
  5315. break;
  5316. case "sys":
  5317. _formdiv = new U.UF.UI.form(
  5318. "目标管理",
  5319. $$("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 }), {
  5320. "id": "sys",
  5321. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. case "courseDesign":
  5329. _formdiv = new U.UF.UI.form(
  5330. "项目设计",
  5331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5332. "id": "courseDesign",
  5333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. _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); } }
  5339. break;
  5340. }
  5341. } else if (!_type) {
  5342. switch (str) {
  5343. case "my":
  5344. _formdiv = new U.UF.UI.form(
  5345. "我的资料",
  5346. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5347. "id": "my",
  5348. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. _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); } }
  5354. break;
  5355. }
  5356. }
  5357. switch (str) {
  5358. // AIprogram2 AI体验 aihub.cocorobo.cn
  5359. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5360. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5361. case "formulaEdi": //公式编辑
  5362. _formdiv = new U.UF.UI.form(
  5363. "公式编辑",
  5364. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5365. "id": "formulaEdi",
  5366. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. case "molStr": //分子结构
  5374. _formdiv = new U.UF.UI.form(
  5375. "分子结构",
  5376. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5377. "id": "molStr",
  5378. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _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); } }
  5384. break;
  5385. case "timeAxis": //时间轴
  5386. _formdiv = new U.UF.UI.form(
  5387. "时间轴",
  5388. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5389. "id": "timeAxis",
  5390. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _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); } }
  5396. break;
  5397. case "AIprogram2": //AI体验
  5398. _formdiv = new U.UF.UI.form(
  5399. "AI体验",
  5400. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5401. "id": "AIprogram2",
  5402. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. _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); } }
  5408. break;
  5409. case "Pythonprogram": //python编程
  5410. _formdiv = new U.UF.UI.form(
  5411. "Python编程",
  5412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5413. "id": "Pythonprogram",
  5414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //创建窗体
  5419. _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); } }
  5420. break;
  5421. case "AIprogram": //ai编程
  5422. _formdiv = new U.UF.UI.form(
  5423. "AI编程平台",
  5424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5425. "id": "AIprogram",
  5426. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. _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); } }
  5432. break;
  5433. case "CocoPi": //CocoPi
  5434. _formdiv = new U.UF.UI.form(
  5435. "CocoPi",
  5436. $$("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" }), {
  5437. "id": "CocoPi",
  5438. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5439. "onresize": function () { }
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _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); } }
  5444. break;
  5445. case "Wood": //Wood
  5446. _formdiv = new U.UF.UI.form(
  5447. "海龟编程",
  5448. $$("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/" }), {
  5449. "id": "Wood",
  5450. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _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); } }
  5456. break;
  5457. case "car": //模拟驾驶
  5458. _formdiv = new U.UF.UI.form(
  5459. "模拟驾驶",
  5460. $$("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/" }), {
  5461. "id": "car",
  5462. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _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); } }
  5468. break;
  5469. case "lineSearch": //路径搜索
  5470. _formdiv = new U.UF.UI.form(
  5471. "路径搜索",
  5472. $$("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/" }), {
  5473. "id": "lineSearch",
  5474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "deepLearning": //深度学习
  5482. _formdiv = new U.UF.UI.form(
  5483. "深度学习",
  5484. $$("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/#" }), {
  5485. "id": "deepLearning",
  5486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "allHistory": //深度学习
  5494. _formdiv = new U.UF.UI.form(
  5495. "全历史",
  5496. $$("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/" }), {
  5497. "id": "allHistory",
  5498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "chatPDF": //ai编程
  5506. _formdiv = new U.UF.UI.form(
  5507. "chatPDF",
  5508. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5509. "id": "chatPDF",
  5510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. case "resources": //国家教育
  5518. _formdiv = new U.UF.UI.form(
  5519. "国家教育",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5521. "id": "resources",
  5522. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5528. break;
  5529. case "codeEdit": //源码编辑
  5530. _formdiv = new U.UF.UI.form(
  5531. "源码编辑",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5533. "id": "codeEdit",
  5534. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5540. break; //
  5541. case "MindMap": //MindMap
  5542. _formdiv = new U.UF.UI.form(
  5543. "MindMap",
  5544. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5545. "id": "MindMap",
  5546. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5552. break;
  5553. case "netWorkPanel": //netWorkPanel
  5554. _formdiv = new U.UF.UI.form(
  5555. "netWorkPanel",
  5556. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5557. "id": "netWorkPanel",
  5558. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5564. break;
  5565. case "GeoGebra": //GeoGebra
  5566. _formdiv = new U.UF.UI.form(
  5567. "GeoGebra",
  5568. $$("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" }), {
  5569. "id": "GeoGebra",
  5570. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5576. break;
  5577. case "translation": //翻译
  5578. _formdiv = new U.UF.UI.form(
  5579. "翻译",
  5580. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5581. "id": "translation",
  5582. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5588. break;
  5589. case "mohe": //魔盒
  5590. _formdiv = new U.UF.UI.form(
  5591. "魔盒识字",
  5592. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5593. "id": "mohe",
  5594. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5600. break;
  5601. case "24game": //24点
  5602. _formdiv = new U.UF.UI.form(
  5603. "24点",
  5604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5605. "id": "24game",
  5606. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5612. break;
  5613. case "case":
  5614. _formdiv = new U.UF.UI.form(
  5615. "课程进展",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5617. "id": "case",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5624. break;
  5625. case "snf":
  5626. _formdiv = new U.UF.UI.form(
  5627. "赛诺梵",
  5628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  5629. "id": "snf",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5636. break;
  5637. case "hanFamily":
  5638. _formdiv = new U.UF.UI.form(
  5639. "汉字家族",
  5640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5641. "id": "hanFamily",
  5642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5648. break;
  5649. case "hanClassics":
  5650. _formdiv = new U.UF.UI.form(
  5651. "国学经典",
  5652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5653. "id": "hanClassics",
  5654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5660. break;
  5661. case "hanTraining":
  5662. _formdiv = new U.UF.UI.form(
  5663. "笔画训练",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5665. "id": "hanTraining",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5672. break;
  5673. case "hanClass":
  5674. _formdiv = new U.UF.UI.form(
  5675. "书法课堂",
  5676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5677. "id": "hanClass",
  5678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _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); } }
  5684. break;
  5685. case "han":
  5686. _formdiv = new U.UF.UI.form(
  5687. "汉字宫",
  5688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5689. "id": "han",
  5690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "projectGM": //课程管理
  5698. _formdiv = new U.UF.UI.form(
  5699. "课程管理",
  5700. $$("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 }), {
  5701. "id": "projectGM",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "studyGM": //课程中心
  5710. _formdiv = new U.UF.UI.form(
  5711. "课程中心",
  5712. $$("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
  5713. "id": "study",
  5714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. // studentGM
  5722. case "studentGM": //学生管理
  5723. _formdiv = new U.UF.UI.form(
  5724. "学生管理",
  5725. $$("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 }), {
  5726. "id": "studentGM",
  5727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5733. break;
  5734. case "evaluateGM": //学生评价
  5735. _formdiv = new U.UF.UI.form(
  5736. "学生评价",
  5737. $$("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 }), {
  5738. "id": "evaluateGM",
  5739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5740. "onresize": function () { }
  5741. }, {
  5742. closecallback: function () { }
  5743. }, { "style": { "height": "36px" } }).form; //创建窗体
  5744. _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); } }
  5745. break;
  5746. // classGM
  5747. case "classGM": //班级管理
  5748. _formdiv = new U.UF.UI.form(
  5749. "班级管理",
  5750. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5751. "id": "classGM",
  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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5758. break;
  5759. // dataGM
  5760. case "dataGM":
  5761. _formdiv = new U.UF.UI.form(
  5762. "我的资料",
  5763. $$("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 }), {
  5764. "id": "dataGM",
  5765. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5766. "onresize": function () { }
  5767. }, {
  5768. closecallback: function () { }
  5769. }, { "style": { "height": "36px" } }).form; //创建窗体
  5770. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5771. break;
  5772. // caseGM
  5773. case "caseGM": //课程进展
  5774. _formdiv = new U.UF.UI.form(
  5775. "课程进展",
  5776. $$("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 }), {
  5777. "id": "caseGM",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _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); } }
  5784. break;
  5785. // meterialGM
  5786. case "meterialGM": //素材库
  5787. _formdiv = new U.UF.UI.form(
  5788. "素材库",
  5789. $$("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 }), {
  5790. "id": "meterialGM",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _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); } }
  5797. break;
  5798. // evaluateSGM
  5799. case "evaluateSGM": //我的评价
  5800. _formdiv = new U.UF.UI.form(
  5801. "我的评价",
  5802. $$("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 }), {
  5803. "id": "evaluateSGM",
  5804. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _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); } }
  5810. break;
  5811. case "jupyter": //jupyter
  5812. _formdiv = new U.UF.UI.form(
  5813. "jupyter",
  5814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5815. "id": "jupyter",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _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); } }
  5822. break;
  5823. case "number": //数字实验室
  5824. _formdiv = new U.UF.UI.form(
  5825. "数字实验室",
  5826. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5827. "id": "number",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5834. break;
  5835. case "studentCourse": //项目管理 学生
  5836. _formdiv = new U.UF.UI.form(
  5837. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5838. $$("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 }), {
  5839. "id": "studentCourse",
  5840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5846. break;
  5847. case "studentCourseS": //项目管理 老师
  5848. _formdiv = new U.UF.UI.form(
  5849. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5850. $$("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 }), {
  5851. "id": "studentCourseS",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5858. break;
  5859. case "studentIndex": //项目中心
  5860. _formdiv = new U.UF.UI.form(
  5861. "项目中心",
  5862. $$("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 }), {
  5863. "id": "studentIndex",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5870. break;
  5871. case "CaseDesignS":
  5872. _formdiv = new U.UF.UI.form(
  5873. "项目进展",
  5874. $$("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 }), {
  5875. "id": "case",
  5876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _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); } }
  5882. break;
  5883. case "tcStudent": //腾讯学生管理
  5884. _formdiv = new U.UF.UI.form(
  5885. "学生管理",
  5886. $$("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 }), {
  5887. "id": "tcStudent",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. _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); } }
  5894. break;
  5895. case "tcSchool": //腾讯学校管理
  5896. _formdiv = new U.UF.UI.form(
  5897. "学校管理",
  5898. $$("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 }), {
  5899. "id": "tcSchool",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. _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); } }
  5906. break;
  5907. case "tcTeacher": //腾讯学校管理
  5908. _formdiv = new U.UF.UI.form(
  5909. "教师管理",
  5910. $$("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 }), {
  5911. "id": "tcTeacher",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _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); } }
  5918. break;
  5919. case "tcData": //腾讯我的资料
  5920. _formdiv = new U.UF.UI.form(
  5921. "我的资料",
  5922. $$("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 }), {
  5923. "id": "tcData",
  5924. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. case "tcNotice": //腾讯消息通知
  5932. _formdiv = new U.UF.UI.form(
  5933. "消息通知",
  5934. $$("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 }), {
  5935. "id": "tcNotice",
  5936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "myReport": //好友打开
  5944. _formdiv = new U.UF.UI.form(
  5945. "我的评价",
  5946. $$("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 }), {
  5947. "id": "myReport",
  5948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "learnAna": //好友打开
  5956. _formdiv = new U.UF.UI.form(
  5957. "学习分析",
  5958. $$("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 }), {
  5959. "id": "learnAna",
  5960. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "AIChat": //AI共创
  5968. _formdiv = new U.UF.UI.form(
  5969. "AI共创",
  5970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5971. "id": "AIChat",
  5972. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. istop: true,
  5976. closecallback: function () { $("#aichat_icon").remove(); },
  5977. narrowcallback: function () {
  5978. if (!$("#aichat_icon")[0]) {
  5979. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5980. }
  5981. },
  5982. }, { "style": { "height": "36px" } }).form; //创建窗体
  5983. _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); } }
  5984. break;
  5985. case "ainew": //AI共创
  5986. _formdiv = new U.UF.UI.form(
  5987. "AI协同",
  5988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5989. "id": "ainew",
  5990. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, { "style": { "height": "36px" } }).form; //创建窗体
  5995. _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); } }
  5996. break;
  5997. case "gpt4": //gpt4
  5998. _formdiv = new U.UF.UI.form(
  5999. "AI助手",
  6000. $$("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 }), {
  6001. "id": "gpt4",
  6002. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6003. "onresize": function () { }
  6004. }, {
  6005. closecallback: function () { }
  6006. }, { "style": { "height": "36px" } }).form; //创建窗体
  6007. _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); } }
  6008. break;
  6009. case "aigpt": //gpt4
  6010. _formdiv = new U.UF.UI.form(
  6011. "AI助手+",
  6012. $$("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 }), {
  6013. "id": "aigpt",
  6014. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6015. "onresize": function () { }
  6016. }, {
  6017. closecallback: function () { }
  6018. }, { "style": { "height": "36px" } }).form; //创建窗体
  6019. _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); } }
  6020. break;
  6021. case "aiKnowledge": //aiKnowledge
  6022. _formdiv = new U.UF.UI.form(
  6023. "知识建构",
  6024. $$("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 }), {
  6025. "id": "aiKnowledge",
  6026. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6027. "onresize": function () { }
  6028. }, {
  6029. closecallback: function () { }
  6030. }, { "style": { "height": "36px" } }).form; //创建窗体
  6031. _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); } }
  6032. break;
  6033. case "futureClass": //AI共创
  6034. _formdiv = new U.UF.UI.form(
  6035. "协同建构",
  6036. $$("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
  6037. "id": "synergyCourse",
  6038. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6039. "onresize": function () { }
  6040. }, {
  6041. closecallback: function () {
  6042. $("iframe", _formdiv)[0].contentWindow.loginout();
  6043. }
  6044. }, { "style": { "height": "36px" } }).form; //创建窗体
  6045. _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); } }
  6046. break;
  6047. case "aiagent": //ai agent
  6048. _formdiv = new U.UF.UI.form(
  6049. "AI Agent",
  6050. $$("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" }), {
  6051. "id": "AIAgent",
  6052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. _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); } }
  6058. break;
  6059. case "dataBoard": //数据看板
  6060. _formdiv = new U.UF.UI.form(
  6061. "数据看板",
  6062. $$("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 }), {
  6063. "id": "dataBoard",
  6064. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //创建窗体
  6069. _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); } }
  6070. break;
  6071. case "dataBoardSies": //数据融合
  6072. _formdiv = new U.UF.UI.form(
  6073. "数据融合",
  6074. $$("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 }), {
  6075. "id": "dataBoardSies",
  6076. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //创建窗体
  6081. _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); } }
  6082. break;
  6083. case "dataBoardNew": //数据看板
  6084. _formdiv = new U.UF.UI.form(
  6085. "综合看板",
  6086. $$("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 }), {
  6087. "id": "dataBoardNew",
  6088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //创建窗体
  6093. _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); } }
  6094. break;
  6095. case "dataBoardTest": //数据看板
  6096. _formdiv = new U.UF.UI.form(
  6097. "评测看板",
  6098. $$("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 }), {
  6099. "id": "dataBoardTest",
  6100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _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); } }
  6106. break;
  6107. case "AIAnalyse": //AI共创
  6108. _formdiv = new U.UF.UI.form(
  6109. "AI分析",
  6110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6111. "id": "AIAnalyse",
  6112. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. _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); } }
  6118. break;
  6119. case "studioCourse": //AI共创
  6120. _formdiv = new U.UF.UI.form(
  6121. "工作管理",
  6122. $$("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 }), {
  6123. "id": "studioCourse",
  6124. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _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); } }
  6130. break;
  6131. case "studioIndex": //AI共创
  6132. _formdiv = new U.UF.UI.form(
  6133. "工作中心",
  6134. $$("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 }), {
  6135. "id": "studioIndex",
  6136. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _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); } }
  6142. break;
  6143. case "source":
  6144. _formdiv = new U.UF.UI.form(
  6145. "教学资源",
  6146. $$("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 }), {
  6147. "id": "source",
  6148. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _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); } }
  6154. break;
  6155. case "testTeacher":
  6156. _formdiv = new U.UF.UI.form(
  6157. "教师管理",
  6158. $$("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 }), {
  6159. "id": "testTeacher",
  6160. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. _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); } }
  6166. break;
  6167. case "testStudent":
  6168. _formdiv = new U.UF.UI.form(
  6169. "教师中心",
  6170. $$("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 }), {
  6171. "id": "testStudent",
  6172. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _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); } }
  6178. break;
  6179. case "testTeacherSies":
  6180. _formdiv = new U.UF.UI.form(
  6181. "教师管理",
  6182. $$("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 }), {
  6183. "id": "testTeacherSies",
  6184. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. _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); } }
  6190. break;
  6191. case "testStudentSies":
  6192. _formdiv = new U.UF.UI.form(
  6193. "教师中心",
  6194. $$("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 }), {
  6195. "id": "testStudentSies",
  6196. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "ytpbl": //消息通知
  6204. _formdiv = new U.UF.UI.form(
  6205. "案例征集",
  6206. $$("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 }), {
  6207. "id": "ytpbl",
  6208. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. // 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");
  6215. break;
  6216. case "aiCourseResource": //人工智能窗体
  6217. _formdiv = new U.UF.UI.form(
  6218. false,
  6219. $$("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 }), {
  6220. "id": "aiCourseResource",
  6221. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6222. "onresize": function () { },
  6223. "isdrag": false,
  6224. }, {
  6225. closecallback: function () { }
  6226. }, { "style": { "height": "36px" } }).form; //创建窗体
  6227. _taskbar = ''
  6228. break;
  6229. case "szdjgCocooroboX": //图形化编程
  6230. _formdiv = new U.UF.UI.form(
  6231. "图形化编程",
  6232. $$("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" }), {
  6233. "id": "szdjgCocooroboX",
  6234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6235. "onresize": function () { }
  6236. }, {
  6237. closecallback: function () { }
  6238. }, { "style": { "height": "36px" } }).form; //创建窗体
  6239. _taskbar = ''
  6240. break;
  6241. case "szdjgPython": //python编程
  6242. _formdiv = new U.UF.UI.form(
  6243. "Python编程",
  6244. $$("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" }), {
  6245. "id": "szdjgPython",
  6246. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6247. "onresize": function () { }
  6248. }, {
  6249. closecallback: function () { }
  6250. }, { "style": { "height": "36px" } }).form; //创建窗体
  6251. _taskbar = ''
  6252. break;
  6253. case "Record":
  6254. _formdiv = new U.UF.UI.form(
  6255. "观察记录",
  6256. $$("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 }), {
  6257. "id": "Record",
  6258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6259. "onresize": function () { }
  6260. }, {
  6261. closecallback: function () { }
  6262. }, { "style": { "height": "36px" } }).form; //创建窗体
  6263. _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); } }
  6264. break;
  6265. case "aigptCourse":
  6266. _formdiv = new U.UF.UI.form(
  6267. "AI智能体",
  6268. $$("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' }), {
  6269. "id": "aigptCourse",
  6270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, { "style": { "height": "36px" } }).form; //创建窗体
  6275. _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); } }
  6276. break;
  6277. case "classroomObservation":
  6278. _formdiv = new U.UF.UI.form(
  6279. "课堂观察",
  6280. $$("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 }), {
  6281. "id": "classroomObservation",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "pblCourse":
  6290. _formdiv = new U.UF.UI.form(
  6291. "学生PBL",
  6292. $$("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 }), {
  6293. "id": "pblCourse",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6300. break;
  6301. }
  6302. //U.MD.D.I.openClick(str);
  6303. //如果有任务栏信息
  6304. if (_taskbar) {
  6305. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6306. }
  6307. }
  6308. // U.MD.D.I.openClick = function(str){
  6309. // var click = '';
  6310. // switch(str){
  6311. // case 'friend':
  6312. // click = '我的好友';
  6313. // break;
  6314. // case 'domain':
  6315. // click = '域名管理';
  6316. // break;
  6317. // case 'disk':
  6318. // click = '我的云盘';
  6319. // break;
  6320. // case 'word':
  6321. // click = 'Word';
  6322. // break;
  6323. // case 'excel':
  6324. // click = 'Execl';
  6325. // break;
  6326. // case 'txt':
  6327. // click = '文本文件';
  6328. // break;
  6329. // case 'lookupFriend':
  6330. // click = '查找好友';
  6331. // break;
  6332. // case 'ftp':
  6333. // click = 'FTP';
  6334. // break;
  6335. // case 'group':
  6336. // click = '群组';
  6337. // break;
  6338. // case 'set':
  6339. // click = '我的设置';
  6340. // break;
  6341. // case 'systemSet':
  6342. // click = '系统设置';
  6343. // break;
  6344. // case 'boomYun':
  6345. // click = '互联办公';
  6346. // break;
  6347. // case 'xz':
  6348. // click = '云端下载';
  6349. // break;
  6350. // case 'client':
  6351. // click = '有思浏览器';
  6352. // break;
  6353. // case 'backEndProgramming':
  6354. // click = '在线后台编程';
  6355. // break;
  6356. // case 'frontEndProgramming':
  6357. // click = '在线前端编程';
  6358. // break;
  6359. // default: break;
  6360. // }
  6361. // if(U.MD.D.I.Ip && click){
  6362. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6363. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6364. // })
  6365. // }
  6366. // }
  6367. /**
  6368. *函数作用:ajax简易函数,使用post格式
  6369. *@param url {data} 后台地址
  6370. *@param data {data} 参数json
  6371. *@param fn {data} 回调函数
  6372. *
  6373. */
  6374. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6375. // var xhr = new XMLHttpRequest();
  6376. // xhr.open("GET",url,true);
  6377. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6378. // xhr.onreadystatechange = function(){
  6379. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6380. // fn.call(this,xhr.responseText);
  6381. // }
  6382. // };
  6383. // xhr.send();
  6384. // }
  6385. /*判断是否是内网IP*/
  6386. // U.MD.D.I.isInnerIPFn = function(str){
  6387. // var curPageUrl = str;
  6388. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6389. // curPageUrl =curPageUrl.replace(reg1,'');
  6390. // // console.log('curPageUrl-1 '+curPageUrl);
  6391. // var reg2 = /\:+/g;//替换冒号为一点
  6392. // curPageUrl =curPageUrl.replace(reg2,'.');
  6393. // // console.log('curPageUrl-2 '+curPageUrl);
  6394. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6395. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6396. // if(curPageUrl[2] != '16'){
  6397. // return ipAddress;
  6398. // }else{
  6399. // return false;
  6400. // }
  6401. // }
  6402. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6403. // //compatibility for firefox and chrome
  6404. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6405. // var pc = new myPeerConnection({
  6406. // iceServers: []
  6407. // }),
  6408. // noop = function() {},
  6409. // localIPs = {},
  6410. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6411. // key;
  6412. // function iterateIP(ip) {
  6413. // if (!localIPs[ip]) onNewIP(ip);
  6414. // localIPs[ip] = true;
  6415. // }
  6416. // //create a bogus data channel
  6417. // pc.createDataChannel("");
  6418. // // create offer and set local description
  6419. // pc.createOffer().then(function(sdp) {
  6420. // sdp.sdp.split('\n').forEach(function(line) {
  6421. // if (line.indexOf('candidate') < 0) return;
  6422. // line.match(ipRegex).forEach(iterateIP);
  6423. // });
  6424. // pc.setLocalDescription(sdp, noop, noop);
  6425. // }).catch(function(reason) {
  6426. // // An error occurred, so handle the failure to connect
  6427. // });
  6428. // //sten for candidate events
  6429. // pc.onicecandidate = function(ice) {
  6430. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6431. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6432. // };
  6433. // }
  6434. // U.MD.D.I.getUserIpBool = function(callback){
  6435. // U.MD.D.I.getUserIP(function(ip){
  6436. // alert("Got IP! :" + ip);
  6437. // });
  6438. //}
  6439. //#endregion
  6440. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6441. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6442. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6443. _userinfo = US.userInfo, //登录用户信息
  6444. _userid = US.userInfo.userid //登录用户id
  6445. let _iframe;
  6446. let _cid = cid,
  6447. _stage = stage,
  6448. _task = task,
  6449. _tool = tool;
  6450. var _jie = $$("div", {
  6451. "style": {
  6452. "position": "absolute",
  6453. "bottom": "50px",
  6454. "right": "50px",
  6455. "zIndex": "9999",
  6456. "backgroundColor": "#2268bc",
  6457. "color": "#fff",
  6458. "padding": "12px 20px",
  6459. "cursor": "pointer",
  6460. "borderRadius": "4px",
  6461. },
  6462. "innerHTML": "提交作业"
  6463. })
  6464. let aTool = ''
  6465. let _loading = document.createElement('div')
  6466. _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;"
  6467. // _loading.id = "";
  6468. let _lchild = document.createElement('div')
  6469. let _limg = document.createElement('img')
  6470. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6471. _limg.style = "width: 26px;margin-right: 10px;"
  6472. _lchild.appendChild(_limg)
  6473. let _lspan = document.createElement('span')
  6474. _lspan.innerHTML = "上传中..."
  6475. _lchild.appendChild(_lspan)
  6476. _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%);"
  6477. _loading.appendChild(_lchild)
  6478. var _box = $$('div', {
  6479. "style": {
  6480. "position": "relative",
  6481. "width": "100%",
  6482. "height": "100%",
  6483. },
  6484. })
  6485. _box.appendChild(_loading)
  6486. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6487. switch (str) {
  6488. case "whiteboard":
  6489. aTool = 1;
  6490. _iframe = $$("iframe", {
  6491. "frameborder": "no",
  6492. "border": "0",
  6493. "scrolling ": "no",
  6494. "style": {
  6495. "cssText": "border:0;width:100%;height:100%"
  6496. },
  6497. "src": "https://beta.iwb.cocorobo.cn/"
  6498. })
  6499. _box.appendChild(_iframe);
  6500. _box.appendChild(_jie);
  6501. _formdiv = new U.UF.UI.form(
  6502. "电子白板",
  6503. _box, {
  6504. "id": "whiteboard" + cid + stage + task + tool,
  6505. "style": {
  6506. "width": "90%",
  6507. "height": "90%",
  6508. "overflow": 'hidden'
  6509. },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, {
  6514. "style": {
  6515. "height": "36px"
  6516. }
  6517. }).form; //创建窗体
  6518. _taskbar = {
  6519. "id": str + _formdiv.id,
  6520. "style": {
  6521. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6522. },
  6523. "name": "电子白板",
  6524. "forms": _formdiv,
  6525. "click": function () {
  6526. U.MD.D.I.openApplication(str, obj, info);
  6527. }
  6528. }
  6529. break;
  6530. case "mind":
  6531. aTool = 3;
  6532. _iframe = $$("iframe", {
  6533. "frameborder": "no",
  6534. "border": "0",
  6535. "scrolling ": "no",
  6536. "style": {
  6537. "cssText": "border:0;width:100%;height:100%"
  6538. },
  6539. "src": "/kityminder-editor/dist/index.html"
  6540. })
  6541. _box.appendChild(_iframe);
  6542. _box.appendChild(_jie);
  6543. _formdiv = new U.UF.UI.form(
  6544. "思维导图",
  6545. _box, { //"/jsmind/example/demo.html"
  6546. "id": "mind" + cid + stage + task + tool,
  6547. "style": {
  6548. "width": "90%",
  6549. "height": "90%",
  6550. "overflow": 'hidden'
  6551. },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, {
  6556. "style": {
  6557. "height": "36px"
  6558. }
  6559. }).form; //创建窗体
  6560. _taskbar = {
  6561. "id": str + _formdiv.id,
  6562. "style": {
  6563. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6564. },
  6565. "name": "思维导图",
  6566. "forms": _formdiv,
  6567. "click": function () {
  6568. U.MD.D.I.openApplication(str, obj, info);
  6569. }
  6570. }
  6571. break;
  6572. case "MindMap":
  6573. aTool = 3;
  6574. _iframe = $$("iframe", {
  6575. "frameborder": "no",
  6576. "border": "0",
  6577. "scrolling ": "no",
  6578. "style": {
  6579. "cssText": "border:0;width:100%;height:100%"
  6580. },
  6581. "src": "//cloud.cocorobo.cn/mind/"
  6582. })
  6583. _box.appendChild(_iframe);
  6584. _box.appendChild(_jie);
  6585. _formdiv = new U.UF.UI.form(
  6586. "思维导图",
  6587. _box, { //"/jsmind/example/demo.html"
  6588. "id": "mind" + cid + stage + task + tool,
  6589. "style": {
  6590. "width": "90%",
  6591. "height": "90%",
  6592. "overflow": 'hidden'
  6593. },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, {
  6598. "style": {
  6599. "height": "36px"
  6600. }
  6601. }).form; //创建窗体
  6602. _taskbar = {
  6603. "id": str + _formdiv.id,
  6604. "style": {
  6605. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6606. },
  6607. "name": "思维导图",
  6608. "forms": _formdiv,
  6609. "click": function () {
  6610. U.MD.D.I.openApplication(str, obj, info);
  6611. }
  6612. }
  6613. break;
  6614. case "doc":
  6615. aTool = 6;
  6616. _iframe = $$("iframe", {
  6617. "frameborder": "no",
  6618. "border": "0",
  6619. "scrolling ": "no",
  6620. "style": {
  6621. "cssText": "border:0;width:100%;height:100%"
  6622. },
  6623. "src": "/Office/Word/WordEditArea.htm"
  6624. })
  6625. _box.appendChild(_iframe);
  6626. _box.appendChild(_jie);
  6627. _formdiv = new U.UF.UI.form(
  6628. "协同文档",
  6629. _box, {
  6630. "id": "doc" + cid + stage + task + tool,
  6631. "style": {
  6632. "width": "90%",
  6633. "height": "90%",
  6634. "overflow": 'hidden'
  6635. },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, {
  6640. "style": {
  6641. "height": "36px"
  6642. }
  6643. }).form; //创建窗体
  6644. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6645. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6646. })
  6647. _taskbar = {
  6648. "id": str + _formdiv.id,
  6649. "style": {
  6650. "backgroundImage": "url(/img/icon/doc.png)"
  6651. },
  6652. "name": "协同文档",
  6653. "forms": _formdiv,
  6654. "click": function () {
  6655. U.MD.D.I.openApplication(str, obj, info);
  6656. }
  6657. }
  6658. break;
  6659. case "mindNetwork": //好友打开
  6660. aTool = 7;
  6661. _iframe = $$("iframe", {
  6662. "webkitallowfullscreen": "",
  6663. "mozallowfullscreen": "",
  6664. "allowfullscreen": "",
  6665. "frameborder": "no",
  6666. "border": "0",
  6667. "scrolling ": "no",
  6668. "style": {
  6669. "cssText": "border:0; width:100%; height:100%;"
  6670. },
  6671. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6672. })
  6673. _box.appendChild(_iframe);
  6674. _box.appendChild(_jie);
  6675. _formdiv = new U.UF.UI.form(
  6676. "思维网格",
  6677. _box, {
  6678. "id": "mindNetwork" + cid + stage + task + tool,
  6679. "style": {
  6680. "width": "90%",
  6681. "height": "90%",
  6682. "overflow": 'hidden'
  6683. },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, {
  6688. "style": {
  6689. "height": "36px"
  6690. }
  6691. }).form; //创建窗体
  6692. _taskbar = {
  6693. "id": str + _formdiv.id,
  6694. "style": {
  6695. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6696. },
  6697. "name": "思维网格",
  6698. "forms": _formdiv,
  6699. "click": function () {
  6700. U.MD.D.I.openApplication(str, obj, info);
  6701. }
  6702. }
  6703. break;
  6704. case "courseDesign":
  6705. _iframe = $$("iframe", {
  6706. "webkitallowfullscreen": "",
  6707. "mozallowfullscreen": "",
  6708. "allowfullscreen": "",
  6709. "frameborder": "no",
  6710. "border": "0",
  6711. "scrolling ": "no",
  6712. "style": {
  6713. "cssText": "border:0; width:100%; height:100%;"
  6714. },
  6715. "src": "/course-design-vue"
  6716. })
  6717. _box.appendChild(_iframe);
  6718. _box.appendChild(_jie);
  6719. _formdiv = new U.UF.UI.form(
  6720. "项目设计",
  6721. _box, {
  6722. "id": "courseDesign" + cid + stage + task + tool,
  6723. "style": {
  6724. "width": "90%",
  6725. "height": "90%",
  6726. "overflow": 'hidden'
  6727. },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, {
  6732. "style": {
  6733. "height": "36px"
  6734. }
  6735. }).form; //创建窗体
  6736. _taskbar = {
  6737. "id": str + _formdiv.id,
  6738. "style": {
  6739. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6740. },
  6741. "name": "项目设计",
  6742. "forms": _formdiv,
  6743. "click": function () {
  6744. U.MD.D.I.openApplication(str, obj, info);
  6745. }
  6746. }
  6747. break;
  6748. }
  6749. const script1 = document.createElement("script");
  6750. script1.type = "text/javascript";
  6751. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6752. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6753. const script2 = document.createElement("script");
  6754. script2.type = "text/javascript";
  6755. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6756. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6757. const script3 = document.createElement("script");
  6758. script3.type = "text/javascript";
  6759. script3.charset = "UTF-8";
  6760. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6761. const script4 = document.createElement("script");
  6762. script4.type = "text/javascript";
  6763. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6764. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6765. if (_iframe) {
  6766. if (str == 'doc') {
  6767. _iframe = _formdiv.querySelector('iframe')
  6768. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6769. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6770. _iframe.contentWindow.document.body.appendChild(script1);
  6771. _iframe.contentWindow.document.body.appendChild(script2);
  6772. // _iframe.contentWindow.document.body.appendChild(script3);
  6773. _iframe.contentWindow.document.body.appendChild(script4);
  6774. })
  6775. if (onloadListener) {
  6776. _iframe.contentDocument.location.reload()
  6777. } else {
  6778. _iframe.contentDocument.location.reload()
  6779. }
  6780. } else if (str == 'courseDesign') {
  6781. U.UF.DL.iframeLoad(_iframe, function () {
  6782. // _iframe.contentWindow.U.MD.O.W.load();
  6783. // _iframe.contentWindow.document.body.appendChild(script1);
  6784. _iframe.contentWindow.document.body.appendChild(script2);
  6785. _iframe.contentWindow.document.body.appendChild(script4);
  6786. })
  6787. } else if (str == 'mind') {
  6788. _iframe = _formdiv.querySelector('iframe')
  6789. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6790. //
  6791. _iframe.contentWindow.document.body.appendChild(script1);
  6792. _iframe.contentWindow.document.body.appendChild(script2);
  6793. _iframe.contentWindow.document.body.appendChild(script4);
  6794. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6795. })
  6796. if (onloadListener) {
  6797. _iframe.contentDocument.location.reload()
  6798. } else {
  6799. _iframe.contentDocument.location.reload()
  6800. }
  6801. } else if (str == 'whiteboard') {
  6802. _iframe = _formdiv.querySelector('iframe')
  6803. let onloadListener = _iframe.onload = () => {
  6804. _iframe.contentWindow.document.body.appendChild(script1);
  6805. _iframe.contentWindow.document.body.appendChild(script2);
  6806. _iframe.contentWindow.document.body.appendChild(script4);
  6807. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6808. };
  6809. // if (onloadListener) {
  6810. // try {
  6811. // _iframe.src += "?cocorobo="+new Date().getTime()
  6812. // _iframe.contentWindow.document.location.reload()
  6813. // } catch (error) {
  6814. // }
  6815. // } else {
  6816. // _iframe.contentDocument.location.reload()
  6817. // }
  6818. } else {
  6819. _iframe.onload = () => {
  6820. _iframe.contentWindow.document.body.appendChild(script1);
  6821. _iframe.contentWindow.document.body.appendChild(script2);
  6822. // _iframe.contentWindow.document.body.appendChild(script3);
  6823. _iframe.contentWindow.document.body.appendChild(script4);
  6824. };
  6825. }
  6826. _jie.onclick = async () => {
  6827. let text = ''
  6828. if (aTool == 1) {
  6829. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6830. } else if (aTool == 6) {
  6831. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6832. } else if (aTool == 3) {
  6833. text = await U.MD.D.I.getEditorContent(_iframe);
  6834. }
  6835. _loading.style.display = 'flex'
  6836. console.log(_loading);
  6837. var _ajs = _iframe.contentWindow.document.createElement("script");
  6838. _ajs.type = "text/javascript";
  6839. _ajs.innerHTML =
  6840. // 'console.log(' + _loading + ');\n' +
  6841. 'var _js = document.createElement("script");\n' +
  6842. '_js.type="text/javascript";\n' +
  6843. '_js.charset="UTF-8";\n' +
  6844. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6845. "_js.onload = function(){\n" +
  6846. ' var a = document.getElementsByTagName("img")\n' +
  6847. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6848. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6849. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6850. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6851. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6852. "beforeUpload_shishi(file," +
  6853. "'" +
  6854. _userid +
  6855. "'" +
  6856. ", " +
  6857. "'" +
  6858. _cid +
  6859. "'" +
  6860. ", " +
  6861. "'" +
  6862. _stage +
  6863. "'" +
  6864. ", " +
  6865. "'" +
  6866. _task +
  6867. "'" +
  6868. ", " +
  6869. "'" +
  6870. _tool +
  6871. "'" +
  6872. ", " +
  6873. "'" +
  6874. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6875. "'" +
  6876. ", " +
  6877. "'" +
  6878. aTool +
  6879. "'" +
  6880. ", " +
  6881. "`" +
  6882. text +
  6883. "`" +
  6884. ")\n" +
  6885. " });\n" +
  6886. "}\n" +
  6887. "document.head.appendChild(_js);\n";
  6888. _iframe.contentWindow.document.head.appendChild(_ajs);
  6889. }
  6890. }
  6891. //U.MD.D.I.openClick(str);
  6892. //如果有任务栏信息
  6893. // if (_taskbar) {
  6894. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6895. // }
  6896. }
  6897. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6898. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6899. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6900. _userinfo = US.userInfo, //登录用户信息
  6901. _userid = US.userInfo.userid //登录用户id
  6902. let _iframe;
  6903. let _cid = cid,
  6904. _stage = stage,
  6905. _task = task,
  6906. _tool = tool;
  6907. var _jie = $$("div", {
  6908. "style": {
  6909. "position": "absolute",
  6910. "bottom": "50px",
  6911. "right": "50px",
  6912. "zIndex": "9999",
  6913. "backgroundColor": "#2268bc",
  6914. "color": "#fff",
  6915. "padding": "12px 20px",
  6916. "cursor": "pointer",
  6917. "borderRadius": "4px",
  6918. },
  6919. "innerHTML": "提交作业"
  6920. })
  6921. let aTool = ''
  6922. let _loading = document.createElement('div')
  6923. _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;"
  6924. // _loading.id = "";
  6925. let _lchild = document.createElement('div')
  6926. let _limg = document.createElement('img')
  6927. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6928. _limg.style = "width: 26px;margin-right: 10px;"
  6929. _lchild.appendChild(_limg)
  6930. let _lspan = document.createElement('span')
  6931. _lspan.innerHTML = "上传中..."
  6932. _lchild.appendChild(_lspan)
  6933. _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%);"
  6934. _loading.appendChild(_lchild)
  6935. let _box = $$('div', {
  6936. "style": {
  6937. "position": "relative",
  6938. "width": "100%",
  6939. "height": "100%",
  6940. },
  6941. })
  6942. _box.appendChild(_loading)
  6943. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6944. switch (str) {
  6945. case "whiteboard":
  6946. aTool = 1;
  6947. _iframe = $$("iframe", {
  6948. "frameborder": "no",
  6949. "border": "0",
  6950. "scrolling ": "no",
  6951. "style": {
  6952. "cssText": "border:0;width:100%;height:100%"
  6953. },
  6954. "src": "https://beta.iwb.cocorobo.cn/"
  6955. })
  6956. _box.appendChild(_iframe);
  6957. _box.appendChild(_jie);
  6958. _formdiv = new U.UF.UI.form(
  6959. "电子白板",
  6960. _box, {
  6961. "id": "whiteboard" + cid + stage + task + tool,
  6962. "style": {
  6963. "width": "90%",
  6964. "height": "90%",
  6965. "overflow": 'hidden'
  6966. },
  6967. "onresize": function () { }
  6968. }, {
  6969. closecallback: function () { }
  6970. }, {
  6971. "style": {
  6972. "height": "36px"
  6973. }
  6974. }).form; //创建窗体
  6975. _taskbar = {
  6976. "id": str + _formdiv.id,
  6977. "style": {
  6978. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6979. },
  6980. "name": "电子白板",
  6981. "forms": _formdiv,
  6982. "click": function () {
  6983. U.MD.D.I.openApplication(str, obj, info);
  6984. }
  6985. }
  6986. break;
  6987. case "mind":
  6988. aTool = 3;
  6989. _iframe = $$("iframe", {
  6990. "frameborder": "no",
  6991. "border": "0",
  6992. "scrolling ": "no",
  6993. "style": {
  6994. "cssText": "border:0;width:100%;height:100%"
  6995. },
  6996. "src": "/kityminder-editor/dist/index.html"
  6997. })
  6998. _box.appendChild(_iframe);
  6999. _box.appendChild(_jie);
  7000. _formdiv = new U.UF.UI.form(
  7001. "思维导图",
  7002. _box, { //"/jsmind/example/demo.html"
  7003. "id": "mind" + cid + stage + task + tool,
  7004. "style": {
  7005. "width": "90%",
  7006. "height": "90%",
  7007. "overflow": 'hidden'
  7008. },
  7009. "onresize": function () { }
  7010. }, {
  7011. closecallback: function () { }
  7012. }, {
  7013. "style": {
  7014. "height": "36px"
  7015. }
  7016. }).form; //创建窗体
  7017. _taskbar = {
  7018. "id": str + _formdiv.id,
  7019. "style": {
  7020. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7021. },
  7022. "name": "思维导图",
  7023. "forms": _formdiv,
  7024. "click": function () {
  7025. U.MD.D.I.openApplication(str, obj, info);
  7026. }
  7027. }
  7028. break;
  7029. case "MindMap":
  7030. aTool = 3;
  7031. _iframe = $$("iframe", {
  7032. "frameborder": "no",
  7033. "border": "0",
  7034. "scrolling ": "no",
  7035. "style": {
  7036. "cssText": "border:0;width:100%;height:100%"
  7037. },
  7038. "src": "//cloud.cocorobo.cn/mind/"
  7039. })
  7040. _box.appendChild(_iframe);
  7041. _box.appendChild(_jie);
  7042. _formdiv = new U.UF.UI.form(
  7043. "思维导图",
  7044. _box, { //"/jsmind/example/demo.html"
  7045. "id": "mind" + cid + stage + task + tool,
  7046. "style": {
  7047. "width": "90%",
  7048. "height": "90%",
  7049. "overflow": 'hidden'
  7050. },
  7051. "onresize": function () { }
  7052. }, {
  7053. closecallback: function () { }
  7054. }, {
  7055. "style": {
  7056. "height": "36px"
  7057. }
  7058. }).form; //创建窗体
  7059. _taskbar = {
  7060. "id": str + _formdiv.id,
  7061. "style": {
  7062. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7063. },
  7064. "name": "思维导图",
  7065. "forms": _formdiv,
  7066. "click": function () {
  7067. U.MD.D.I.openApplication(str, obj, info);
  7068. }
  7069. }
  7070. break;
  7071. case "doc":
  7072. aTool = 6;
  7073. _iframe = $$("iframe", {
  7074. "frameborder": "no",
  7075. "border": "0",
  7076. "scrolling ": "no",
  7077. "style": {
  7078. "cssText": "border:0;width:100%;height:100%"
  7079. },
  7080. "src": "/Office/Word/WordEditArea.htm"
  7081. })
  7082. _box.appendChild(_iframe);
  7083. _box.appendChild(_jie);
  7084. _formdiv = new U.UF.UI.form(
  7085. "协同文档",
  7086. _box, {
  7087. "id": "doc" + cid + stage + task + tool,
  7088. "style": {
  7089. "width": "90%",
  7090. "height": "90%",
  7091. "overflow": 'hidden'
  7092. },
  7093. "onresize": function () { }
  7094. }, {
  7095. closecallback: function () { }
  7096. }, {
  7097. "style": {
  7098. "height": "36px"
  7099. }
  7100. }).form; //创建窗体
  7101. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7102. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7103. })
  7104. _taskbar = {
  7105. "id": str + _formdiv.id,
  7106. "style": {
  7107. "backgroundImage": "url(/img/icon/doc.png)"
  7108. },
  7109. "name": "协同文档",
  7110. "forms": _formdiv,
  7111. "click": function () {
  7112. U.MD.D.I.openApplication(str, obj, info);
  7113. }
  7114. }
  7115. break;
  7116. case "mindNetwork": //好友打开
  7117. aTool = 7;
  7118. _iframe = $$("iframe", {
  7119. "webkitallowfullscreen": "",
  7120. "mozallowfullscreen": "",
  7121. "allowfullscreen": "",
  7122. "frameborder": "no",
  7123. "border": "0",
  7124. "scrolling ": "no",
  7125. "style": {
  7126. "cssText": "border:0; width:100%; height:100%;"
  7127. },
  7128. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7129. })
  7130. _box.appendChild(_iframe);
  7131. _box.appendChild(_jie);
  7132. _formdiv = new U.UF.UI.form(
  7133. "思维网格",
  7134. _box, {
  7135. "id": "mindNetwork" + cid + stage + task + tool,
  7136. "style": {
  7137. "width": "90%",
  7138. "height": "90%",
  7139. "overflow": 'hidden'
  7140. },
  7141. "onresize": function () { }
  7142. }, {
  7143. closecallback: function () { }
  7144. }, {
  7145. "style": {
  7146. "height": "36px"
  7147. }
  7148. }).form; //创建窗体
  7149. _taskbar = {
  7150. "id": str + _formdiv.id,
  7151. "style": {
  7152. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7153. },
  7154. "name": "思维网格",
  7155. "forms": _formdiv,
  7156. "click": function () {
  7157. U.MD.D.I.openApplication(str, obj, info);
  7158. }
  7159. }
  7160. break;
  7161. case "courseDesign":
  7162. _iframe = $$("iframe", {
  7163. "webkitallowfullscreen": "",
  7164. "mozallowfullscreen": "",
  7165. "allowfullscreen": "",
  7166. "frameborder": "no",
  7167. "border": "0",
  7168. "scrolling ": "no",
  7169. "style": {
  7170. "cssText": "border:0; width:100%; height:100%;"
  7171. },
  7172. "src": "/course-design-vue"
  7173. })
  7174. _box.appendChild(_iframe);
  7175. _box.appendChild(_jie);
  7176. _formdiv = new U.UF.UI.form(
  7177. "项目设计",
  7178. _box, {
  7179. "id": "courseDesign" + cid + stage + task + tool,
  7180. "style": {
  7181. "width": "90%",
  7182. "height": "90%",
  7183. "overflow": 'hidden'
  7184. },
  7185. "onresize": function () { }
  7186. }, {
  7187. closecallback: function () { }
  7188. }, {
  7189. "style": {
  7190. "height": "36px"
  7191. }
  7192. }).form; //创建窗体
  7193. _taskbar = {
  7194. "id": str + _formdiv.id,
  7195. "style": {
  7196. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7197. },
  7198. "name": "项目设计",
  7199. "forms": _formdiv,
  7200. "click": function () {
  7201. U.MD.D.I.openApplication(str, obj, info);
  7202. }
  7203. }
  7204. break;
  7205. }
  7206. const script1 = document.createElement("script");
  7207. script1.type = "text/javascript";
  7208. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7209. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7210. const script2 = document.createElement("script");
  7211. script2.type = "text/javascript";
  7212. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7213. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7214. const script3 = document.createElement("script");
  7215. script3.type = "text/javascript";
  7216. script3.charset = "UTF-8";
  7217. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7218. const script4 = document.createElement("script");
  7219. script4.type = "text/javascript";
  7220. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7221. script4.src = window.origin + "/js/Common/jietu2E.js";
  7222. if (_iframe) {
  7223. if (str == 'doc') {
  7224. _iframe = _formdiv.querySelector('iframe')
  7225. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7226. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7227. _iframe.contentWindow.document.body.appendChild(script1);
  7228. _iframe.contentWindow.document.body.appendChild(script2);
  7229. // _iframe.contentWindow.document.body.appendChild(script3);
  7230. _iframe.contentWindow.document.body.appendChild(script4);
  7231. })
  7232. if (onloadListener) {
  7233. _iframe.contentDocument.location.reload()
  7234. } else {
  7235. _iframe.contentDocument.location.reload()
  7236. }
  7237. } else if (str == 'courseDesign') {
  7238. U.UF.DL.iframeLoad(_iframe, function () {
  7239. // _iframe.contentWindow.U.MD.O.W.load();
  7240. // _iframe.contentWindow.document.body.appendChild(script1);
  7241. _iframe.contentWindow.document.body.appendChild(script2);
  7242. _iframe.contentWindow.document.body.appendChild(script4);
  7243. })
  7244. } else if (str == 'mind') {
  7245. _iframe = _formdiv.querySelector('iframe')
  7246. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7247. //
  7248. _iframe.contentWindow.document.body.appendChild(script1);
  7249. _iframe.contentWindow.document.body.appendChild(script2);
  7250. _iframe.contentWindow.document.body.appendChild(script4);
  7251. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7252. })
  7253. if (onloadListener) {
  7254. _iframe.contentDocument.location.reload()
  7255. } else {
  7256. _iframe.contentDocument.location.reload()
  7257. }
  7258. } else if (str == 'whiteboard') {
  7259. _iframe = _formdiv.querySelector('iframe')
  7260. let onloadListener = _iframe.onload = () => {
  7261. _iframe.contentWindow.document.body.appendChild(script1);
  7262. _iframe.contentWindow.document.body.appendChild(script2);
  7263. _iframe.contentWindow.document.body.appendChild(script4);
  7264. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7265. };
  7266. // if (onloadListener) {
  7267. // try {
  7268. // _iframe.src += "?cocorobo="+new Date().getTime()
  7269. // _iframe.contentWindow.document.location.reload()
  7270. // } catch (error) {
  7271. // }
  7272. // } else {
  7273. // _iframe.contentDocument.location.reload()
  7274. // }
  7275. } else {
  7276. _iframe.onload = () => {
  7277. _iframe.contentWindow.document.body.appendChild(script1);
  7278. _iframe.contentWindow.document.body.appendChild(script2);
  7279. // _iframe.contentWindow.document.body.appendChild(script3);
  7280. _iframe.contentWindow.document.body.appendChild(script4);
  7281. };
  7282. }
  7283. _jie.onclick = async () => {
  7284. let text = ''
  7285. if (aTool == 1) {
  7286. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7287. } else if (aTool == 6) {
  7288. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7289. } else if (aTool == 3) {
  7290. text = await U.MD.D.I.getEditorContent(_iframe);
  7291. }
  7292. _loading.style.display = 'flex'
  7293. console.log(_loading);
  7294. var _ajs = _iframe.contentWindow.document.createElement("script");
  7295. _ajs.type = "text/javascript";
  7296. _ajs.innerHTML =
  7297. // 'console.log(' + _loading + ');\n' +
  7298. 'var _js = document.createElement("script");\n' +
  7299. '_js.type="text/javascript";\n' +
  7300. '_js.charset="UTF-8";\n' +
  7301. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7302. "_js.onload = function(){\n" +
  7303. ' var a = document.getElementsByTagName("img")\n' +
  7304. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7305. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7306. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7307. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7308. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7309. "beforeUpload_shishi(file," +
  7310. "'" +
  7311. _userid +
  7312. "'" +
  7313. ", " +
  7314. "'" +
  7315. _cid +
  7316. "'" +
  7317. ", " +
  7318. "'" +
  7319. _stage +
  7320. "'" +
  7321. ", " +
  7322. "'" +
  7323. _task +
  7324. "'" +
  7325. ", " +
  7326. "'" +
  7327. _tool +
  7328. "'" +
  7329. ", " +
  7330. "'" +
  7331. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7332. "'" +
  7333. ", " +
  7334. "'" +
  7335. aTool +
  7336. "'" +
  7337. ", " +
  7338. "`" +
  7339. text +
  7340. "`" +
  7341. ")\n" +
  7342. " });\n" +
  7343. "}\n" +
  7344. "document.head.appendChild(_js);\n";
  7345. _iframe.contentWindow.document.head.appendChild(_ajs);
  7346. }
  7347. }
  7348. //U.MD.D.I.openClick(str);
  7349. //如果有任务栏信息
  7350. // if (_taskbar) {
  7351. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7352. // }
  7353. }
  7354. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7355. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7356. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7357. _userid = student.userid, //登录用户id
  7358. _username = student.student //用户名字
  7359. let _iframe;
  7360. let _cid = cid,
  7361. _stage = stage,
  7362. _task = task,
  7363. _tool = tool;
  7364. var _jie = $$("div", {
  7365. "style": {
  7366. "position": "absolute",
  7367. "bottom": "50px",
  7368. "right": "50px",
  7369. "zIndex": "9999",
  7370. "backgroundColor": "#2268bc",
  7371. "color": "#fff",
  7372. "padding": "12px 20px",
  7373. "cursor": "pointer",
  7374. "borderRadius": "4px",
  7375. },
  7376. "innerHTML": "提交作业"
  7377. })
  7378. let aTool = ''
  7379. let _loading = document.createElement('div')
  7380. _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;"
  7381. // _loading.id = "";
  7382. let _lchild = document.createElement('div')
  7383. let _limg = document.createElement('img')
  7384. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7385. _limg.style = "width: 26px;margin-right: 10px;"
  7386. _lchild.appendChild(_limg)
  7387. let _lspan = document.createElement('span')
  7388. _lspan.innerHTML = "上传中..."
  7389. _lchild.appendChild(_lspan)
  7390. _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%);"
  7391. _loading.appendChild(_lchild)
  7392. var _box = $$('div', {
  7393. "style": {
  7394. "position": "relative",
  7395. "width": "100%",
  7396. "height": "100%",
  7397. },
  7398. })
  7399. _box.appendChild(_loading)
  7400. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7401. switch (str) {
  7402. case "whiteboard":
  7403. aTool = 1;
  7404. _iframe = $$("iframe", {
  7405. "frameborder": "no",
  7406. "border": "0",
  7407. "scrolling ": "no",
  7408. "style": {
  7409. "cssText": "border:0;width:100%;height:100%"
  7410. },
  7411. "src": "https://beta.iwb.cocorobo.cn/"
  7412. })
  7413. _box.appendChild(_iframe);
  7414. _box.appendChild(_jie);
  7415. _formdiv = new U.UF.UI.form(
  7416. "电子白板-" + _username,
  7417. _box, {
  7418. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7419. "style": {
  7420. "width": "90%",
  7421. "height": "90%",
  7422. "overflow": 'hidden'
  7423. },
  7424. "onresize": function () { }
  7425. }, {
  7426. closecallback: function () { }
  7427. }, {
  7428. "style": {
  7429. "height": "36px"
  7430. }
  7431. }).form; //创建窗体
  7432. _taskbar = {
  7433. "id": str + _formdiv.id,
  7434. "style": {
  7435. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7436. },
  7437. "name": "电子白板",
  7438. "forms": _formdiv,
  7439. "click": function () {
  7440. U.MD.D.I.openApplication(str, obj, info);
  7441. }
  7442. }
  7443. break;
  7444. case "mind":
  7445. aTool = 3;
  7446. _iframe = $$("iframe", {
  7447. "frameborder": "no",
  7448. "border": "0",
  7449. "scrolling ": "no",
  7450. "style": {
  7451. "cssText": "border:0;width:100%;height:100%"
  7452. },
  7453. "src": "/kityminder-editor/dist/index.html"
  7454. })
  7455. _box.appendChild(_iframe);
  7456. _box.appendChild(_jie);
  7457. _formdiv = new U.UF.UI.form(
  7458. "思维导图-" + _username,
  7459. _box, { //"/jsmind/example/demo.html"
  7460. "id": "mind" + cid + stage + task + tool + _userid,
  7461. "style": {
  7462. "width": "90%",
  7463. "height": "90%",
  7464. "overflow": 'hidden'
  7465. },
  7466. "onresize": function () { }
  7467. }, {
  7468. closecallback: function () { }
  7469. }, {
  7470. "style": {
  7471. "height": "36px"
  7472. }
  7473. }).form; //创建窗体
  7474. _taskbar = {
  7475. "id": str + _formdiv.id,
  7476. "style": {
  7477. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7478. },
  7479. "name": "思维导图",
  7480. "forms": _formdiv,
  7481. "click": function () {
  7482. U.MD.D.I.openApplication(str, obj, info);
  7483. }
  7484. }
  7485. break;
  7486. case "MindMap":
  7487. aTool = 3;
  7488. _iframe = $$("iframe", {
  7489. "frameborder": "no",
  7490. "border": "0",
  7491. "scrolling ": "no",
  7492. "style": {
  7493. "cssText": "border:0;width:100%;height:100%"
  7494. },
  7495. "src": "//cloud.cocorobo.cn/mind/"
  7496. })
  7497. _box.appendChild(_iframe);
  7498. _box.appendChild(_jie);
  7499. _formdiv = new U.UF.UI.form(
  7500. "思维导图-" + _username,
  7501. _box, { //"/jsmind/example/demo.html"
  7502. "id": "mind" + cid + stage + task + tool + _userid,
  7503. "style": {
  7504. "width": "90%",
  7505. "height": "90%",
  7506. "overflow": 'hidden'
  7507. },
  7508. "onresize": function () { }
  7509. }, {
  7510. closecallback: function () { }
  7511. }, {
  7512. "style": {
  7513. "height": "36px"
  7514. }
  7515. }).form; //创建窗体
  7516. _taskbar = {
  7517. "id": str + _formdiv.id,
  7518. "style": {
  7519. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7520. },
  7521. "name": "思维导图",
  7522. "forms": _formdiv,
  7523. "click": function () {
  7524. U.MD.D.I.openApplication(str, obj, info);
  7525. }
  7526. }
  7527. break;
  7528. case "doc":
  7529. aTool = 6;
  7530. _iframe = $$("iframe", {
  7531. "frameborder": "no",
  7532. "border": "0",
  7533. "scrolling ": "no",
  7534. "style": {
  7535. "cssText": "border:0;width:100%;height:100%"
  7536. },
  7537. "src": "/Office/Word/WordEditArea.htm"
  7538. })
  7539. _box.appendChild(_iframe);
  7540. _box.appendChild(_jie);
  7541. _formdiv = new U.UF.UI.form(
  7542. "协同文档-" + _username,
  7543. _box, {
  7544. "id": "doc" + cid + stage + task + tool + _userid,
  7545. "style": {
  7546. "width": "90%",
  7547. "height": "90%",
  7548. "overflow": 'hidden'
  7549. },
  7550. "onresize": function () { }
  7551. }, {
  7552. closecallback: function () { }
  7553. }, {
  7554. "style": {
  7555. "height": "36px"
  7556. }
  7557. }).form; //创建窗体
  7558. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7559. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7560. })
  7561. _taskbar = {
  7562. "id": str + _formdiv.id,
  7563. "style": {
  7564. "backgroundImage": "url(/img/icon/doc.png)"
  7565. },
  7566. "name": "协同文档",
  7567. "forms": _formdiv,
  7568. "click": function () {
  7569. U.MD.D.I.openApplication(str, obj, info);
  7570. }
  7571. }
  7572. break;
  7573. case "mindNetwork": //好友打开
  7574. aTool = 7;
  7575. _iframe = $$("iframe", {
  7576. "webkitallowfullscreen": "",
  7577. "mozallowfullscreen": "",
  7578. "allowfullscreen": "",
  7579. "frameborder": "no",
  7580. "border": "0",
  7581. "scrolling ": "no",
  7582. "style": {
  7583. "cssText": "border:0; width:100%; height:100%;"
  7584. },
  7585. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7586. })
  7587. _box.appendChild(_iframe);
  7588. _box.appendChild(_jie);
  7589. _formdiv = new U.UF.UI.form(
  7590. "思维网格-" + _username,
  7591. _box, {
  7592. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7593. "style": {
  7594. "width": "90%",
  7595. "height": "90%",
  7596. "overflow": 'hidden'
  7597. },
  7598. "onresize": function () { }
  7599. }, {
  7600. closecallback: function () { }
  7601. }, {
  7602. "style": {
  7603. "height": "36px"
  7604. }
  7605. }).form; //创建窗体
  7606. _taskbar = {
  7607. "id": str + _formdiv.id,
  7608. "style": {
  7609. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7610. },
  7611. "name": "思维网格",
  7612. "forms": _formdiv,
  7613. "click": function () {
  7614. U.MD.D.I.openApplication(str, obj, info);
  7615. }
  7616. }
  7617. break;
  7618. case "courseDesign":
  7619. _iframe = $$("iframe", {
  7620. "webkitallowfullscreen": "",
  7621. "mozallowfullscreen": "",
  7622. "allowfullscreen": "",
  7623. "frameborder": "no",
  7624. "border": "0",
  7625. "scrolling ": "no",
  7626. "style": {
  7627. "cssText": "border:0; width:100%; height:100%;"
  7628. },
  7629. "src": "/course-design-vue"
  7630. })
  7631. _box.appendChild(_iframe);
  7632. _box.appendChild(_jie);
  7633. _formdiv = new U.UF.UI.form(
  7634. "项目设计-" + _username,
  7635. _box, {
  7636. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7637. "style": {
  7638. "width": "90%",
  7639. "height": "90%",
  7640. "overflow": 'hidden'
  7641. },
  7642. "onresize": function () { }
  7643. }, {
  7644. closecallback: function () { }
  7645. }, {
  7646. "style": {
  7647. "height": "36px"
  7648. }
  7649. }).form; //创建窗体
  7650. _taskbar = {
  7651. "id": str + _formdiv.id,
  7652. "style": {
  7653. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7654. },
  7655. "name": "项目设计",
  7656. "forms": _formdiv,
  7657. "click": function () {
  7658. U.MD.D.I.openApplication(str, obj, info);
  7659. }
  7660. }
  7661. break;
  7662. }
  7663. const script1 = document.createElement("script");
  7664. script1.type = "text/javascript";
  7665. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7666. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7667. const script2 = document.createElement("script");
  7668. script2.type = "text/javascript";
  7669. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7670. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7671. const script3 = document.createElement("script");
  7672. script3.type = "text/javascript";
  7673. script3.charset = "UTF-8";
  7674. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7675. const script4 = document.createElement("script");
  7676. script4.type = "text/javascript";
  7677. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7678. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7679. if (_iframe) {
  7680. if (str == 'doc') {
  7681. _iframe = _formdiv.querySelector('iframe')
  7682. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7683. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7684. _iframe.contentWindow.document.body.appendChild(script1);
  7685. _iframe.contentWindow.document.body.appendChild(script2);
  7686. // _iframe.contentWindow.document.body.appendChild(script3);
  7687. _iframe.contentWindow.document.body.appendChild(script4);
  7688. })
  7689. if (onloadListener) {
  7690. _iframe.contentDocument.location.reload()
  7691. } else {
  7692. _iframe.contentDocument.location.reload()
  7693. }
  7694. } else if (str == 'courseDesign') {
  7695. U.UF.DL.iframeLoad(_iframe, function () {
  7696. // _iframe.contentWindow.U.MD.O.W.load();
  7697. // _iframe.contentWindow.document.body.appendChild(script1);
  7698. _iframe.contentWindow.document.body.appendChild(script2);
  7699. _iframe.contentWindow.document.body.appendChild(script4);
  7700. })
  7701. } else if (str == 'mind') {
  7702. _iframe = _formdiv.querySelector('iframe')
  7703. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7704. //
  7705. _iframe.contentWindow.document.body.appendChild(script1);
  7706. _iframe.contentWindow.document.body.appendChild(script2);
  7707. _iframe.contentWindow.document.body.appendChild(script4);
  7708. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7709. })
  7710. if (onloadListener) {
  7711. _iframe.contentDocument.location.reload()
  7712. } else {
  7713. _iframe.contentDocument.location.reload()
  7714. }
  7715. } else if (str == 'whiteboard') {
  7716. _iframe = _formdiv.querySelector('iframe')
  7717. let onloadListener = _iframe.onload = () => {
  7718. _iframe.contentWindow.document.body.appendChild(script1);
  7719. _iframe.contentWindow.document.body.appendChild(script2);
  7720. _iframe.contentWindow.document.body.appendChild(script4);
  7721. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7722. };
  7723. // if (onloadListener) {
  7724. // try {
  7725. // _iframe.src += "?cocorobo="+new Date().getTime()
  7726. // _iframe.contentWindow.document.location.reload()
  7727. // } catch (error) {
  7728. // }
  7729. // } else {
  7730. // _iframe.contentDocument.location.reload()
  7731. // }
  7732. } else {
  7733. _iframe.onload = () => {
  7734. _iframe.contentWindow.document.body.appendChild(script1);
  7735. _iframe.contentWindow.document.body.appendChild(script2);
  7736. // _iframe.contentWindow.document.body.appendChild(script3);
  7737. _iframe.contentWindow.document.body.appendChild(script4);
  7738. };
  7739. }
  7740. _jie.onclick = async () => {
  7741. let text = ''
  7742. if (aTool == 1) {
  7743. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7744. } else if (aTool == 6) {
  7745. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7746. } else if (aTool == 3) {
  7747. text = await U.MD.D.I.getEditorContent(_iframe);
  7748. }
  7749. _loading.style.display = 'flex'
  7750. console.log(_loading);
  7751. var _ajs = _iframe.contentWindow.document.createElement("script");
  7752. _ajs.type = "text/javascript";
  7753. _ajs.innerHTML =
  7754. // 'console.log(' + _loading + ');\n' +
  7755. 'var _js = document.createElement("script");\n' +
  7756. '_js.type="text/javascript";\n' +
  7757. '_js.charset="UTF-8";\n' +
  7758. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7759. "_js.onload = function(){\n" +
  7760. ' var a = document.getElementsByTagName("img")\n' +
  7761. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7762. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7763. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7764. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7765. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7766. "beforeUpload_shishi(file," +
  7767. "'" +
  7768. _userid +
  7769. "'" +
  7770. ", " +
  7771. "'" +
  7772. _cid +
  7773. "'" +
  7774. ", " +
  7775. "'" +
  7776. _stage +
  7777. "'" +
  7778. ", " +
  7779. "'" +
  7780. _task +
  7781. "'" +
  7782. ", " +
  7783. "'" +
  7784. _tool +
  7785. "'" +
  7786. ", " +
  7787. "'" +
  7788. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7789. "'" +
  7790. ", " +
  7791. "'" +
  7792. aTool +
  7793. "'" +
  7794. ", " +
  7795. "`" +
  7796. text +
  7797. "`" +
  7798. ")\n" +
  7799. " });\n" +
  7800. "}\n" +
  7801. "document.head.appendChild(_js);\n";
  7802. _iframe.contentWindow.document.head.appendChild(_ajs);
  7803. }
  7804. }
  7805. }
  7806. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7807. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7808. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7809. _userid = student.userid, //登录用户id
  7810. _username = student.student //用户名字
  7811. let _iframe;
  7812. let _cid = cid,
  7813. _stage = stage,
  7814. _task = task,
  7815. _tool = tool;
  7816. var _jie = $$("div", {
  7817. "style": {
  7818. "position": "absolute",
  7819. "bottom": "50px",
  7820. "right": "50px",
  7821. "zIndex": "9999",
  7822. "backgroundColor": "#2268bc",
  7823. "color": "#fff",
  7824. "padding": "12px 20px",
  7825. "cursor": "pointer",
  7826. "borderRadius": "4px",
  7827. },
  7828. "innerHTML": "提交作业"
  7829. })
  7830. let aTool = ''
  7831. let _loading = document.createElement('div')
  7832. _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;"
  7833. // _loading.id = "";
  7834. let _lchild = document.createElement('div')
  7835. let _limg = document.createElement('img')
  7836. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7837. _limg.style = "width: 26px;margin-right: 10px;"
  7838. _lchild.appendChild(_limg)
  7839. let _lspan = document.createElement('span')
  7840. _lspan.innerHTML = "上传中..."
  7841. _lchild.appendChild(_lspan)
  7842. _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%);"
  7843. _loading.appendChild(_lchild)
  7844. var _box = $$('div', {
  7845. "style": {
  7846. "position": "relative",
  7847. "width": "100%",
  7848. "height": "100%",
  7849. },
  7850. })
  7851. _box.appendChild(_loading)
  7852. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7853. switch (str) {
  7854. case "whiteboard":
  7855. aTool = 1;
  7856. _iframe = $$("iframe", {
  7857. "frameborder": "no",
  7858. "border": "0",
  7859. "scrolling ": "no",
  7860. "style": {
  7861. "cssText": "border:0;width:100%;height:100%"
  7862. },
  7863. "src": "https://beta.iwb.cocorobo.cn/"
  7864. })
  7865. _box.appendChild(_iframe);
  7866. _box.appendChild(_jie);
  7867. _formdiv = new U.UF.UI.form(
  7868. "电子白板-" + _username,
  7869. _box, {
  7870. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7871. "style": {
  7872. "width": "90%",
  7873. "height": "90%",
  7874. "overflow": 'hidden'
  7875. },
  7876. "onresize": function () { }
  7877. }, {
  7878. closecallback: function () { }
  7879. }, {
  7880. "style": {
  7881. "height": "36px"
  7882. }
  7883. }).form; //创建窗体
  7884. _taskbar = {
  7885. "id": str + _formdiv.id,
  7886. "style": {
  7887. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7888. },
  7889. "name": "电子白板",
  7890. "forms": _formdiv,
  7891. "click": function () {
  7892. U.MD.D.I.openApplication(str, obj, info);
  7893. }
  7894. }
  7895. break;
  7896. case "mind":
  7897. aTool = 3;
  7898. _iframe = $$("iframe", {
  7899. "frameborder": "no",
  7900. "border": "0",
  7901. "scrolling ": "no",
  7902. "style": {
  7903. "cssText": "border:0;width:100%;height:100%"
  7904. },
  7905. "src": "/kityminder-editor/dist/index.html"
  7906. })
  7907. _box.appendChild(_iframe);
  7908. _box.appendChild(_jie);
  7909. _formdiv = new U.UF.UI.form(
  7910. "思维导图-" + _username,
  7911. _box, { //"/jsmind/example/demo.html"
  7912. "id": "mind" + cid + stage + task + tool + _userid,
  7913. "style": {
  7914. "width": "90%",
  7915. "height": "90%",
  7916. "overflow": 'hidden'
  7917. },
  7918. "onresize": function () { }
  7919. }, {
  7920. closecallback: function () { }
  7921. }, {
  7922. "style": {
  7923. "height": "36px"
  7924. }
  7925. }).form; //创建窗体
  7926. _taskbar = {
  7927. "id": str + _formdiv.id,
  7928. "style": {
  7929. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7930. },
  7931. "name": "思维导图",
  7932. "forms": _formdiv,
  7933. "click": function () {
  7934. U.MD.D.I.openApplication(str, obj, info);
  7935. }
  7936. }
  7937. break;
  7938. case "MindMap":
  7939. aTool = 3;
  7940. _iframe = $$("iframe", {
  7941. "frameborder": "no",
  7942. "border": "0",
  7943. "scrolling ": "no",
  7944. "style": {
  7945. "cssText": "border:0;width:100%;height:100%"
  7946. },
  7947. "src": "//cloud.cocorobo.cn/mind/"
  7948. })
  7949. _box.appendChild(_iframe);
  7950. _box.appendChild(_jie);
  7951. _formdiv = new U.UF.UI.form(
  7952. "思维导图-" + _username,
  7953. _box, { //"/jsmind/example/demo.html"
  7954. "id": "mind" + cid + stage + task + tool + _userid,
  7955. "style": {
  7956. "width": "90%",
  7957. "height": "90%",
  7958. "overflow": 'hidden'
  7959. },
  7960. "onresize": function () { }
  7961. }, {
  7962. closecallback: function () { }
  7963. }, {
  7964. "style": {
  7965. "height": "36px"
  7966. }
  7967. }).form; //创建窗体
  7968. _taskbar = {
  7969. "id": str + _formdiv.id,
  7970. "style": {
  7971. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7972. },
  7973. "name": "思维导图",
  7974. "forms": _formdiv,
  7975. "click": function () {
  7976. U.MD.D.I.openApplication(str, obj, info);
  7977. }
  7978. }
  7979. break;
  7980. case "doc":
  7981. aTool = 6;
  7982. _iframe = $$("iframe", {
  7983. "frameborder": "no",
  7984. "border": "0",
  7985. "scrolling ": "no",
  7986. "style": {
  7987. "cssText": "border:0;width:100%;height:100%"
  7988. },
  7989. "src": "/Office/Word/WordEditArea.htm"
  7990. })
  7991. _box.appendChild(_iframe);
  7992. _box.appendChild(_jie);
  7993. _formdiv = new U.UF.UI.form(
  7994. "协同文档-" + _username,
  7995. _box, {
  7996. "id": "doc" + cid + stage + task + tool + _userid,
  7997. "style": {
  7998. "width": "90%",
  7999. "height": "90%",
  8000. "overflow": 'hidden'
  8001. },
  8002. "onresize": function () { }
  8003. }, {
  8004. closecallback: function () { }
  8005. }, {
  8006. "style": {
  8007. "height": "36px"
  8008. }
  8009. }).form; //创建窗体
  8010. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8011. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8012. })
  8013. _taskbar = {
  8014. "id": str + _formdiv.id,
  8015. "style": {
  8016. "backgroundImage": "url(/img/icon/doc.png)"
  8017. },
  8018. "name": "协同文档",
  8019. "forms": _formdiv,
  8020. "click": function () {
  8021. U.MD.D.I.openApplication(str, obj, info);
  8022. }
  8023. }
  8024. break;
  8025. case "mindNetwork": //好友打开
  8026. aTool = 7;
  8027. _iframe = $$("iframe", {
  8028. "webkitallowfullscreen": "",
  8029. "mozallowfullscreen": "",
  8030. "allowfullscreen": "",
  8031. "frameborder": "no",
  8032. "border": "0",
  8033. "scrolling ": "no",
  8034. "style": {
  8035. "cssText": "border:0; width:100%; height:100%;"
  8036. },
  8037. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8038. })
  8039. _box.appendChild(_iframe);
  8040. _box.appendChild(_jie);
  8041. _formdiv = new U.UF.UI.form(
  8042. "思维网格-" + _username,
  8043. _box, {
  8044. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8045. "style": {
  8046. "width": "90%",
  8047. "height": "90%",
  8048. "overflow": 'hidden'
  8049. },
  8050. "onresize": function () { }
  8051. }, {
  8052. closecallback: function () { }
  8053. }, {
  8054. "style": {
  8055. "height": "36px"
  8056. }
  8057. }).form; //创建窗体
  8058. _taskbar = {
  8059. "id": str + _formdiv.id,
  8060. "style": {
  8061. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8062. },
  8063. "name": "思维网格",
  8064. "forms": _formdiv,
  8065. "click": function () {
  8066. U.MD.D.I.openApplication(str, obj, info);
  8067. }
  8068. }
  8069. break;
  8070. case "courseDesign":
  8071. _iframe = $$("iframe", {
  8072. "webkitallowfullscreen": "",
  8073. "mozallowfullscreen": "",
  8074. "allowfullscreen": "",
  8075. "frameborder": "no",
  8076. "border": "0",
  8077. "scrolling ": "no",
  8078. "style": {
  8079. "cssText": "border:0; width:100%; height:100%;"
  8080. },
  8081. "src": "/course-design-vue"
  8082. })
  8083. _box.appendChild(_iframe);
  8084. _box.appendChild(_jie);
  8085. _formdiv = new U.UF.UI.form(
  8086. "项目设计-" + _username,
  8087. _box, {
  8088. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8089. "style": {
  8090. "width": "90%",
  8091. "height": "90%",
  8092. "overflow": 'hidden'
  8093. },
  8094. "onresize": function () { }
  8095. }, {
  8096. closecallback: function () { }
  8097. }, {
  8098. "style": {
  8099. "height": "36px"
  8100. }
  8101. }).form; //创建窗体
  8102. _taskbar = {
  8103. "id": str + _formdiv.id,
  8104. "style": {
  8105. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8106. },
  8107. "name": "项目设计",
  8108. "forms": _formdiv,
  8109. "click": function () {
  8110. U.MD.D.I.openApplication(str, obj, info);
  8111. }
  8112. }
  8113. break;
  8114. }
  8115. const script1 = document.createElement("script");
  8116. script1.type = "text/javascript";
  8117. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8118. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8119. const script2 = document.createElement("script");
  8120. script2.type = "text/javascript";
  8121. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8122. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8123. const script3 = document.createElement("script");
  8124. script3.type = "text/javascript";
  8125. script3.charset = "UTF-8";
  8126. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8127. const script4 = document.createElement("script");
  8128. script4.type = "text/javascript";
  8129. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8130. script4.src = window.origin + "/js/Common/jietu2E.js";
  8131. if (_iframe) {
  8132. if (str == 'doc') {
  8133. _iframe = _formdiv.querySelector('iframe')
  8134. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8135. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8136. _iframe.contentWindow.document.body.appendChild(script1);
  8137. _iframe.contentWindow.document.body.appendChild(script2);
  8138. // _iframe.contentWindow.document.body.appendChild(script3);
  8139. _iframe.contentWindow.document.body.appendChild(script4);
  8140. })
  8141. if (onloadListener) {
  8142. _iframe.contentDocument.location.reload()
  8143. } else {
  8144. _iframe.contentDocument.location.reload()
  8145. }
  8146. } else if (str == 'courseDesign') {
  8147. U.UF.DL.iframeLoad(_iframe, function () {
  8148. // _iframe.contentWindow.U.MD.O.W.load();
  8149. // _iframe.contentWindow.document.body.appendChild(script1);
  8150. _iframe.contentWindow.document.body.appendChild(script2);
  8151. _iframe.contentWindow.document.body.appendChild(script4);
  8152. })
  8153. } else if (str == 'mind') {
  8154. _iframe = _formdiv.querySelector('iframe')
  8155. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8156. //
  8157. _iframe.contentWindow.document.body.appendChild(script1);
  8158. _iframe.contentWindow.document.body.appendChild(script2);
  8159. _iframe.contentWindow.document.body.appendChild(script4);
  8160. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8161. })
  8162. if (onloadListener) {
  8163. _iframe.contentDocument.location.reload()
  8164. } else {
  8165. _iframe.contentDocument.location.reload()
  8166. }
  8167. } else if (str == 'whiteboard') {
  8168. _iframe = _formdiv.querySelector('iframe')
  8169. let onloadListener = _iframe.onload = () => {
  8170. _iframe.contentWindow.document.body.appendChild(script1);
  8171. _iframe.contentWindow.document.body.appendChild(script2);
  8172. _iframe.contentWindow.document.body.appendChild(script4);
  8173. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8174. };
  8175. // if (onloadListener) {
  8176. // try {
  8177. // _iframe.src += "?cocorobo="+new Date().getTime()
  8178. // _iframe.contentWindow.document.location.reload()
  8179. // } catch (error) {
  8180. // }
  8181. // } else {
  8182. // _iframe.contentDocument.location.reload()
  8183. // }
  8184. } else {
  8185. _iframe.onload = () => {
  8186. _iframe.contentWindow.document.body.appendChild(script1);
  8187. _iframe.contentWindow.document.body.appendChild(script2);
  8188. // _iframe.contentWindow.document.body.appendChild(script3);
  8189. _iframe.contentWindow.document.body.appendChild(script4);
  8190. };
  8191. }
  8192. _jie.onclick = async () => {
  8193. let text = ''
  8194. if (aTool == 1) {
  8195. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8196. } else if (aTool == 6) {
  8197. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8198. } else if (aTool == 3) {
  8199. text = await U.MD.D.I.getEditorContent(_iframe);
  8200. }
  8201. _loading.style.display = 'flex'
  8202. console.log(_loading);
  8203. var _ajs = _iframe.contentWindow.document.createElement("script");
  8204. _ajs.type = "text/javascript";
  8205. _ajs.innerHTML =
  8206. // 'console.log(' + _loading + ');\n' +
  8207. 'var _js = document.createElement("script");\n' +
  8208. '_js.type="text/javascript";\n' +
  8209. '_js.charset="UTF-8";\n' +
  8210. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8211. "_js.onload = function(){\n" +
  8212. ' var a = document.getElementsByTagName("img")\n' +
  8213. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8214. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8215. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8216. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8217. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8218. "beforeUpload_shishi(file," +
  8219. "'" +
  8220. _userid +
  8221. "'" +
  8222. ", " +
  8223. "'" +
  8224. _cid +
  8225. "'" +
  8226. ", " +
  8227. "'" +
  8228. _stage +
  8229. "'" +
  8230. ", " +
  8231. "'" +
  8232. _task +
  8233. "'" +
  8234. ", " +
  8235. "'" +
  8236. _tool +
  8237. "'" +
  8238. ", " +
  8239. "'" +
  8240. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8241. "'" +
  8242. ", " +
  8243. "'" +
  8244. aTool +
  8245. "'" +
  8246. ", " +
  8247. "`" +
  8248. text +
  8249. "`" +
  8250. ")\n" +
  8251. " });\n" +
  8252. "}\n" +
  8253. "document.head.appendChild(_js);\n";
  8254. _iframe.contentWindow.document.head.appendChild(_ajs);
  8255. }
  8256. }
  8257. }
  8258. U.MD.D.I.getEditorContent = function (iframe) {
  8259. return new Promise((resolve, reject) => {
  8260. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8261. console.log(content);
  8262. resolve(content)
  8263. });
  8264. });
  8265. }
  8266. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8267. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8268. // if (res.value[0].length > 0) {
  8269. // // resolve(res.value[0][0].text);
  8270. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8271. // $(fileInput).val('');
  8272. // });
  8273. // }
  8274. // }, [], { "type": "GET", "withCredentials": true });
  8275. var xmlhttp;
  8276. var Mac, Sn, DeviceId
  8277. if (window.XMLHttpRequest) {
  8278. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8279. xmlhttp = new XMLHttpRequest();
  8280. } else {
  8281. // IE6, IE5 浏览器执行代码
  8282. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8283. }
  8284. xmlhttp.onreadystatechange = function () {
  8285. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8286. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8287. // resolve(res.value[0][0].text);
  8288. if (type == '2') {
  8289. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8290. } else if (type == '3') {
  8291. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8292. }
  8293. } else {
  8294. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8295. }
  8296. }
  8297. }
  8298. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8299. xmlhttp.send();
  8300. }
  8301. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8302. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8303. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8304. _userinfo = US.userInfo, //登录用户信息
  8305. _userid = US.userInfo.userid //登录用户id
  8306. let _iframe;
  8307. let _cid = cid,
  8308. _stage = stage,
  8309. _task = task,
  8310. _tool = tool;
  8311. var _jie = $$("div", {
  8312. "style": {
  8313. "position": "absolute",
  8314. "bottom": "50px",
  8315. "right": "50px",
  8316. "zIndex": "9999",
  8317. "backgroundColor": "#2268bc",
  8318. "color": "#fff",
  8319. "padding": "12px 20px",
  8320. "cursor": "pointer",
  8321. "borderRadius": "4px",
  8322. },
  8323. "innerHTML": "确认并提交"
  8324. })
  8325. let aTool = ''
  8326. let _loading = document.createElement('div')
  8327. _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;"
  8328. // _loading.id = "";
  8329. let _lchild = document.createElement('div')
  8330. let _limg = document.createElement('img')
  8331. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8332. _limg.style = "width: 26px;margin-right: 10px;"
  8333. _lchild.appendChild(_limg)
  8334. let _lspan = document.createElement('span')
  8335. _lspan.innerHTML = "上传中..."
  8336. _lchild.appendChild(_lspan)
  8337. _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%);"
  8338. _loading.appendChild(_lchild)
  8339. var _box = $$('div', {
  8340. "style": {
  8341. "position": "relative",
  8342. "width": "100%",
  8343. "height": "100%",
  8344. },
  8345. })
  8346. _box.appendChild(_loading)
  8347. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8348. switch (str) {
  8349. case "whiteboard":
  8350. aTool = 1;
  8351. _iframe = $$("iframe", {
  8352. "frameborder": "no",
  8353. "border": "0",
  8354. "scrolling ": "no",
  8355. "style": {
  8356. "cssText": "border:0;width:100%;height:100%"
  8357. },
  8358. "src": "https://beta.iwb.cocorobo.cn/"
  8359. })
  8360. _box.appendChild(_iframe);
  8361. _box.appendChild(_jie);
  8362. _formdiv = new U.UF.UI.form(
  8363. "电子白板",
  8364. _box, {
  8365. "id": "whiteboards" + cid + stage + task + tool,
  8366. "style": {
  8367. "width": "90%",
  8368. "height": "90%",
  8369. "overflow": 'hidden'
  8370. },
  8371. "onresize": function () { }
  8372. }, {
  8373. closecallback: function () { }
  8374. }, {
  8375. "style": {
  8376. "height": "36px"
  8377. }
  8378. }).form; //创建窗体
  8379. _taskbar = {
  8380. "id": str + _formdiv.id,
  8381. "style": {
  8382. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8383. },
  8384. "name": "电子白板",
  8385. "forms": _formdiv,
  8386. "click": function () {
  8387. U.MD.D.I.openApplication(str, obj, info);
  8388. }
  8389. }
  8390. break;
  8391. case "mind":
  8392. aTool = 3;
  8393. _iframe = $$("iframe", {
  8394. "frameborder": "no",
  8395. "border": "0",
  8396. "scrolling ": "no",
  8397. "style": {
  8398. "cssText": "border:0;width:100%;height:100%"
  8399. },
  8400. "src": "/kityminder-editor/dist/index.html"
  8401. });
  8402. _box.appendChild(_iframe);
  8403. _box.appendChild(_jie);
  8404. _formdiv = new U.UF.UI.form(
  8405. "思维导图",
  8406. _box, { //"/jsmind/example/demo.html"
  8407. "id": "minds" + cid + stage + task + tool,
  8408. "style": {
  8409. "width": "90%",
  8410. "height": "90%",
  8411. "overflow": 'hidden'
  8412. },
  8413. "onresize": function () { }
  8414. }, {
  8415. closecallback: function () { }
  8416. }, {
  8417. "style": {
  8418. "height": "36px"
  8419. }
  8420. }).form; //创建窗体
  8421. _taskbar = {
  8422. "id": str + _formdiv.id,
  8423. "style": {
  8424. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8425. },
  8426. "name": "思维导图",
  8427. "forms": _formdiv,
  8428. "click": function () {
  8429. U.MD.D.I.openApplication(str, obj, info);
  8430. }
  8431. }
  8432. break;
  8433. case "doc":
  8434. aTool = 6;
  8435. _iframe = $$("iframe", {
  8436. "frameborder": "no",
  8437. "border": "0",
  8438. "scrolling ": "no",
  8439. "style": {
  8440. "cssText": "border:0;width:100%;height:100%"
  8441. },
  8442. "src": "/Office/Word/WordEditArea.htm"
  8443. })
  8444. _box.appendChild(_iframe);
  8445. _box.appendChild(_jie);
  8446. _formdiv = new U.UF.UI.form(
  8447. "协同文档",
  8448. _box, {
  8449. "id": "docs" + cid + stage + task + tool,
  8450. "style": {
  8451. "width": "90%",
  8452. "height": "90%",
  8453. "overflow": 'hidden'
  8454. },
  8455. "onresize": function () { }
  8456. }, {
  8457. closecallback: function () { }
  8458. }, {
  8459. "style": {
  8460. "height": "36px"
  8461. }
  8462. }).form; //创建窗体
  8463. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8464. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8465. })
  8466. _taskbar = {
  8467. "id": str + _formdiv.id,
  8468. "style": {
  8469. "backgroundImage": "url(/img/icon/doc.png)"
  8470. },
  8471. "name": "协同文档",
  8472. "forms": _formdiv,
  8473. "click": function () {
  8474. U.MD.D.I.openApplication(str, obj, info);
  8475. }
  8476. }
  8477. break;
  8478. }
  8479. const script1 = document.createElement("script");
  8480. script1.type = "text/javascript";
  8481. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8482. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8483. const script2 = document.createElement("script");
  8484. script2.type = "text/javascript";
  8485. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8486. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8487. const script3 = document.createElement("script");
  8488. script3.type = "text/javascript";
  8489. script3.charset = "UTF-8";
  8490. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8491. const script4 = document.createElement("script");
  8492. script4.type = "text/javascript";
  8493. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8494. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8495. if (_iframe) {
  8496. if (str == 'doc') {
  8497. _iframe = _formdiv.querySelector('iframe')
  8498. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8499. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8500. _iframe.contentWindow.document.body.appendChild(script1);
  8501. _iframe.contentWindow.document.body.appendChild(script2);
  8502. // _iframe.contentWindow.document.body.appendChild(script3);
  8503. _iframe.contentWindow.document.body.appendChild(script4);
  8504. })
  8505. if (onloadListener) {
  8506. _iframe.contentDocument.location.reload()
  8507. } else {
  8508. _iframe.contentDocument.location.reload()
  8509. }
  8510. } else if (str == 'mind') {
  8511. _iframe = _formdiv.querySelector('iframe')
  8512. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8513. _iframe.contentWindow.document.body.appendChild(script1);
  8514. _iframe.contentWindow.document.body.appendChild(script2);
  8515. _iframe.contentWindow.document.body.appendChild(script4);
  8516. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8517. })
  8518. if (onloadListener) {
  8519. _iframe.contentDocument.location.reload()
  8520. } else {
  8521. _iframe.contentDocument.location.reload()
  8522. }
  8523. } else {
  8524. _iframe.onload = () => {
  8525. _iframe.contentWindow.document.body.appendChild(script1);
  8526. _iframe.contentWindow.document.body.appendChild(script2);
  8527. // _iframe.contentWindow.document.body.appendChild(script3);
  8528. _iframe.contentWindow.document.body.appendChild(script4);
  8529. };
  8530. }
  8531. _jie.onclick = async () => {
  8532. let text = ''
  8533. if (aTool == 6) {
  8534. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8535. } else if (aTool == 3) {
  8536. text = await U.MD.D.I.getEditorContent(_iframe);
  8537. }
  8538. _loading.style.display = 'flex'
  8539. console.log(_loading);
  8540. var _ajs = _iframe.contentWindow.document.createElement("script");
  8541. _ajs.type = "text/javascript";
  8542. _ajs.innerHTML =
  8543. // 'console.log(' + _loading + ');\n' +
  8544. 'var _js = document.createElement("script");\n' +
  8545. '_js.type="text/javascript";\n' +
  8546. '_js.charset="UTF-8";\n' +
  8547. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8548. "_js.onload = function(){\n" +
  8549. ' var a = document.getElementsByTagName("img")\n' +
  8550. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8551. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8552. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8553. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8554. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8555. "beforeUpload_shishi(file," +
  8556. "'" +
  8557. _userid +
  8558. "'" +
  8559. ", " +
  8560. "'" +
  8561. _cid +
  8562. "'" +
  8563. ", " +
  8564. "'" +
  8565. _stage +
  8566. "'" +
  8567. ", " +
  8568. "'" +
  8569. _task +
  8570. "'" +
  8571. ", " +
  8572. "'" +
  8573. _tool +
  8574. "'" +
  8575. ", " +
  8576. "'" +
  8577. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8578. "'" +
  8579. ", " +
  8580. "'" +
  8581. aTool +
  8582. "'" +
  8583. ", " +
  8584. "`" +
  8585. text +
  8586. "`" +
  8587. ")\n" +
  8588. " });\n" +
  8589. "}\n" +
  8590. "document.head.appendChild(_js);\n";
  8591. _iframe.contentWindow.document.head.appendChild(_ajs);
  8592. }
  8593. }
  8594. //U.MD.D.I.openClick(str);
  8595. //如果有任务栏信息
  8596. // if (_taskbar) {
  8597. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8598. // }
  8599. }
  8600. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8601. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8602. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8603. _userinfo = US.userInfo, //登录用户信息
  8604. _userid = US.userInfo.userid //登录用户id
  8605. let _iframe;
  8606. let _cid = cid,
  8607. _stage = stage,
  8608. _task = task,
  8609. _tool = tool;
  8610. var _jie = $$("div", {
  8611. "style": {
  8612. "position": "absolute",
  8613. "bottom": "50px",
  8614. "right": "50px",
  8615. "zIndex": "9999",
  8616. "backgroundColor": "#2268bc",
  8617. "color": "#fff",
  8618. "padding": "12px 20px",
  8619. "cursor": "pointer",
  8620. "borderRadius": "4px",
  8621. },
  8622. "innerHTML": "确认并提交"
  8623. })
  8624. let aTool = ''
  8625. let _loading = document.createElement('div')
  8626. _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;"
  8627. // _loading.id = "";
  8628. let _lchild = document.createElement('div')
  8629. let _limg = document.createElement('img')
  8630. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8631. _limg.style = "width: 26px;margin-right: 10px;"
  8632. _lchild.appendChild(_limg)
  8633. let _lspan = document.createElement('span')
  8634. _lspan.innerHTML = "上传中..."
  8635. _lchild.appendChild(_lspan)
  8636. _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%);"
  8637. _loading.appendChild(_lchild)
  8638. var _box = $$('div', {
  8639. "style": {
  8640. "position": "relative",
  8641. "width": "100%",
  8642. "height": "100%",
  8643. },
  8644. })
  8645. _box.appendChild(_loading)
  8646. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8647. switch (str) {
  8648. case "whiteboard":
  8649. aTool = 1;
  8650. _iframe = $$("iframe", {
  8651. "frameborder": "no",
  8652. "border": "0",
  8653. "scrolling ": "no",
  8654. "style": {
  8655. "cssText": "border:0;width:100%;height:100%"
  8656. },
  8657. "src": "https://beta.iwb.cocorobo.cn/"
  8658. })
  8659. _box.appendChild(_iframe);
  8660. _box.appendChild(_jie);
  8661. _formdiv = new U.UF.UI.form(
  8662. "电子白板",
  8663. _box, {
  8664. "id": "whiteboards" + cid + stage + task + tool,
  8665. "style": {
  8666. "width": "90%",
  8667. "height": "90%",
  8668. "overflow": 'hidden'
  8669. },
  8670. "onresize": function () { }
  8671. }, {
  8672. closecallback: function () { }
  8673. }, {
  8674. "style": {
  8675. "height": "36px"
  8676. }
  8677. }).form; //创建窗体
  8678. _taskbar = {
  8679. "id": str + _formdiv.id,
  8680. "style": {
  8681. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8682. },
  8683. "name": "电子白板",
  8684. "forms": _formdiv,
  8685. "click": function () {
  8686. U.MD.D.I.openApplication(str, obj, info);
  8687. }
  8688. }
  8689. break;
  8690. case "mind":
  8691. aTool = 3;
  8692. _iframe = $$("iframe", {
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "/kityminder-editor/dist/index.html"
  8700. });
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "思维导图",
  8705. _box, { //"/jsmind/example/demo.html"
  8706. "id": "minds" + cid + stage + task + tool,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //创建窗体
  8720. _taskbar = {
  8721. "id": str + _formdiv.id,
  8722. "style": {
  8723. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8724. },
  8725. "name": "思维导图",
  8726. "forms": _formdiv,
  8727. "click": function () {
  8728. U.MD.D.I.openApplication(str, obj, info);
  8729. }
  8730. }
  8731. break;
  8732. case "doc":
  8733. aTool = 6;
  8734. _iframe = $$("iframe", {
  8735. "frameborder": "no",
  8736. "border": "0",
  8737. "scrolling ": "no",
  8738. "style": {
  8739. "cssText": "border:0;width:100%;height:100%"
  8740. },
  8741. "src": "/Office/Word/WordEditArea.htm"
  8742. })
  8743. _box.appendChild(_iframe);
  8744. _box.appendChild(_jie);
  8745. _formdiv = new U.UF.UI.form(
  8746. "协同文档",
  8747. _box, {
  8748. "id": "docs" + cid + stage + task + tool,
  8749. "style": {
  8750. "width": "90%",
  8751. "height": "90%",
  8752. "overflow": 'hidden'
  8753. },
  8754. "onresize": function () { }
  8755. }, {
  8756. closecallback: function () { }
  8757. }, {
  8758. "style": {
  8759. "height": "36px"
  8760. }
  8761. }).form; //创建窗体
  8762. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8763. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8764. })
  8765. _taskbar = {
  8766. "id": str + _formdiv.id,
  8767. "style": {
  8768. "backgroundImage": "url(/img/icon/doc.png)"
  8769. },
  8770. "name": "协同文档",
  8771. "forms": _formdiv,
  8772. "click": function () {
  8773. U.MD.D.I.openApplication(str, obj, info);
  8774. }
  8775. }
  8776. break;
  8777. }
  8778. const script1 = document.createElement("script");
  8779. script1.type = "text/javascript";
  8780. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8781. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8782. const script2 = document.createElement("script");
  8783. script2.type = "text/javascript";
  8784. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8785. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8786. const script3 = document.createElement("script");
  8787. script3.type = "text/javascript";
  8788. script3.charset = "UTF-8";
  8789. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8790. const script4 = document.createElement("script");
  8791. script4.type = "text/javascript";
  8792. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8793. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8794. if (_iframe) {
  8795. if (str == 'doc') {
  8796. _iframe = _formdiv.querySelector('iframe')
  8797. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8798. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8799. _iframe.contentWindow.document.body.appendChild(script1);
  8800. _iframe.contentWindow.document.body.appendChild(script2);
  8801. // _iframe.contentWindow.document.body.appendChild(script3);
  8802. _iframe.contentWindow.document.body.appendChild(script4);
  8803. })
  8804. if (onloadListener) {
  8805. _iframe.contentDocument.location.reload()
  8806. } else {
  8807. _iframe.contentDocument.location.reload()
  8808. }
  8809. } else if (str == 'mind') {
  8810. _iframe = _formdiv.querySelector('iframe')
  8811. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8812. _iframe.contentWindow.document.body.appendChild(script1);
  8813. _iframe.contentWindow.document.body.appendChild(script2);
  8814. _iframe.contentWindow.document.body.appendChild(script4);
  8815. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8816. })
  8817. if (onloadListener) {
  8818. _iframe.contentDocument.location.reload()
  8819. } else {
  8820. _iframe.contentDocument.location.reload()
  8821. }
  8822. } else {
  8823. _iframe.onload = () => {
  8824. _iframe.contentWindow.document.body.appendChild(script1);
  8825. _iframe.contentWindow.document.body.appendChild(script2);
  8826. // _iframe.contentWindow.document.body.appendChild(script3);
  8827. _iframe.contentWindow.document.body.appendChild(script4);
  8828. };
  8829. }
  8830. _jie.onclick = async () => {
  8831. let text = ''
  8832. if (aTool == 6) {
  8833. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8834. } else if (aTool == 3) {
  8835. text = await U.MD.D.I.getEditorContent(_iframe);
  8836. }
  8837. _loading.style.display = 'flex'
  8838. console.log(_loading);
  8839. var _ajs = _iframe.contentWindow.document.createElement("script");
  8840. _ajs.type = "text/javascript";
  8841. _ajs.innerHTML =
  8842. // 'console.log(' + _loading + ');\n' +
  8843. 'var _js = document.createElement("script");\n' +
  8844. '_js.type="text/javascript";\n' +
  8845. '_js.charset="UTF-8";\n' +
  8846. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8847. "_js.onload = function(){\n" +
  8848. ' var a = document.getElementsByTagName("img")\n' +
  8849. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8850. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8851. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8852. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8853. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8854. "beforeUpload_shishi(file," +
  8855. "'" +
  8856. _userid +
  8857. "'" +
  8858. ", " +
  8859. "'" +
  8860. _cid +
  8861. "'" +
  8862. ", " +
  8863. "'" +
  8864. _stage +
  8865. "'" +
  8866. ", " +
  8867. "'" +
  8868. _task +
  8869. "'" +
  8870. ", " +
  8871. "'" +
  8872. _tool +
  8873. "'" +
  8874. ", " +
  8875. "'" +
  8876. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8877. "'" +
  8878. ", " +
  8879. "'" +
  8880. aTool +
  8881. "'" +
  8882. ", " +
  8883. "`" +
  8884. text +
  8885. "`" +
  8886. ")\n" +
  8887. " });\n" +
  8888. "}\n" +
  8889. "document.head.appendChild(_js);\n";
  8890. _iframe.contentWindow.document.head.appendChild(_ajs);
  8891. }
  8892. }
  8893. //U.MD.D.I.openClick(str);
  8894. //如果有任务栏信息
  8895. // if (_taskbar) {
  8896. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8897. // }
  8898. }
  8899. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8900. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8901. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8902. _userinfo = US.userInfo, //登录用户信息
  8903. _userid = US.userInfo.userid //登录用户id
  8904. let _iframe;
  8905. let _cid = cid,
  8906. _stage = stage,
  8907. _task = task,
  8908. _tool = tool;
  8909. var _jie = $$("div", {
  8910. "style": {
  8911. "position": "absolute",
  8912. "bottom": "50px",
  8913. "right": "50px",
  8914. "zIndex": "9999",
  8915. "backgroundColor": "#2268bc",
  8916. "color": "#fff",
  8917. "padding": "12px 20px",
  8918. "cursor": "pointer",
  8919. "borderRadius": "4px",
  8920. },
  8921. "innerHTML": "上传模板"
  8922. })
  8923. let aTool = ''
  8924. let _loading = document.createElement('div')
  8925. _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;"
  8926. // _loading.id = "";
  8927. let _lchild = document.createElement('div')
  8928. let _limg = document.createElement('img')
  8929. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8930. _limg.style = "width: 26px;margin-right: 10px;"
  8931. _lchild.appendChild(_limg)
  8932. let _lspan = document.createElement('span')
  8933. _lspan.innerHTML = "上传中..."
  8934. _lchild.appendChild(_lspan)
  8935. _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%);"
  8936. _loading.appendChild(_lchild)
  8937. var _box = $$('div', {
  8938. "style": {
  8939. "position": "relative",
  8940. "width": "100%",
  8941. "height": "100%",
  8942. },
  8943. })
  8944. _box.appendChild(_loading)
  8945. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8946. switch (str) {
  8947. case "whiteboard":
  8948. aTool = 1;
  8949. _iframe = $$("iframe", {
  8950. "frameborder": "no",
  8951. "border": "0",
  8952. "scrolling ": "no",
  8953. "style": {
  8954. "cssText": "border:0;width:100%;height:100%"
  8955. },
  8956. "src": "https://beta.iwb.cocorobo.cn/"
  8957. })
  8958. _box.appendChild(_iframe);
  8959. _box.appendChild(_jie);
  8960. _formdiv = new U.UF.UI.form(
  8961. "电子白板",
  8962. _box, {
  8963. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8964. "style": {
  8965. "width": "90%",
  8966. "height": "90%",
  8967. "overflow": 'hidden'
  8968. },
  8969. "onresize": function () { }
  8970. }, {
  8971. closecallback: function () { }
  8972. }, {
  8973. "style": {
  8974. "height": "36px"
  8975. }
  8976. }).form; //创建窗体
  8977. _taskbar = {
  8978. "id": str + _formdiv.id,
  8979. "style": {
  8980. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8981. },
  8982. "name": "电子白板",
  8983. "forms": _formdiv,
  8984. "click": function () {
  8985. U.MD.D.I.openApplication(str, obj, info);
  8986. }
  8987. }
  8988. break;
  8989. case "mind":
  8990. aTool = 3;
  8991. _iframe = $$("iframe", {
  8992. "frameborder": "no",
  8993. "border": "0",
  8994. "scrolling ": "no",
  8995. "style": {
  8996. "cssText": "border:0;width:100%;height:100%"
  8997. },
  8998. "src": "/kityminder-editor/dist/index.html"
  8999. });
  9000. _box.appendChild(_iframe);
  9001. _box.appendChild(_jie);
  9002. _formdiv = new U.UF.UI.form(
  9003. "思维导图",
  9004. _box, { //"/jsmind/example/demo.html"
  9005. "id": "minds_Yu" + cid + stage + task + tool,
  9006. "style": {
  9007. "width": "90%",
  9008. "height": "90%",
  9009. "overflow": 'hidden'
  9010. },
  9011. "onresize": function () { }
  9012. }, {
  9013. closecallback: function () { }
  9014. }, {
  9015. "style": {
  9016. "height": "36px"
  9017. }
  9018. }).form; //创建窗体
  9019. _taskbar = {
  9020. "id": str + _formdiv.id,
  9021. "style": {
  9022. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9023. },
  9024. "name": "思维导图",
  9025. "forms": _formdiv,
  9026. "click": function () {
  9027. U.MD.D.I.openApplication(str, obj, info);
  9028. }
  9029. }
  9030. break;
  9031. case "doc":
  9032. aTool = 6;
  9033. _iframe = $$("iframe", {
  9034. "frameborder": "no",
  9035. "border": "0",
  9036. "scrolling ": "no",
  9037. "style": {
  9038. "cssText": "border:0;width:100%;height:100%"
  9039. },
  9040. "src": "/Office/Word/WordEditArea.htm"
  9041. })
  9042. _box.appendChild(_iframe);
  9043. _box.appendChild(_jie);
  9044. _formdiv = new U.UF.UI.form(
  9045. "协同文档",
  9046. _box, {
  9047. "id": "docs_Yu" + cid + stage + task + tool,
  9048. "style": {
  9049. "width": "90%",
  9050. "height": "90%",
  9051. "overflow": 'hidden'
  9052. },
  9053. "onresize": function () { }
  9054. }, {
  9055. closecallback: function () { }
  9056. }, {
  9057. "style": {
  9058. "height": "36px"
  9059. }
  9060. }).form; //创建窗体
  9061. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9062. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9063. })
  9064. _taskbar = {
  9065. "id": str + _formdiv.id,
  9066. "style": {
  9067. "backgroundImage": "url(/img/icon/doc.png)"
  9068. },
  9069. "name": "协同文档",
  9070. "forms": _formdiv,
  9071. "click": function () {
  9072. U.MD.D.I.openApplication(str, obj, info);
  9073. }
  9074. }
  9075. break;
  9076. case "CocoPi":
  9077. aTool = 57;
  9078. _iframe = $$("iframe", {
  9079. "allowpaymentrequest": "allowpaymentrequest",
  9080. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9081. "webkitallowfullscreen": "",
  9082. "mozallowfullscreen": "",
  9083. "frameborder": "no",
  9084. "border": "0",
  9085. "scrolling ": "no",
  9086. "style": {
  9087. "cssText": "border:0;width:100%;height:100%"
  9088. },
  9089. "src": "https://pi.cocorobo.cn/"
  9090. })
  9091. _box.appendChild(_iframe);
  9092. _box.appendChild(_jie);
  9093. _formdiv = new U.UF.UI.form(
  9094. "CocoPi",
  9095. _box, {
  9096. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9097. "style": {
  9098. "width": "90%",
  9099. "height": "90%",
  9100. "overflow": 'hidden'
  9101. },
  9102. "onresize": function () { }
  9103. }, {
  9104. closecallback: function () { }
  9105. }, {
  9106. "style": {
  9107. "height": "36px"
  9108. }
  9109. }).form; //创建窗体
  9110. _taskbar = {
  9111. "id": str + _formdiv.id,
  9112. "style": {
  9113. "backgroundImage": "url(/img/icon/cocopi.png)"
  9114. },
  9115. "name": "CocoPi",
  9116. "forms": _formdiv,
  9117. "click": function () {
  9118. U.MD.D.I.openApplication(str, obj, info);
  9119. }
  9120. }
  9121. break;
  9122. }
  9123. if (_iframe) {
  9124. if (str == 'doc') {
  9125. _iframe = _formdiv.querySelector('iframe')
  9126. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9127. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9128. })
  9129. if (onloadListener) {
  9130. _iframe.contentDocument.location.reload()
  9131. } else {
  9132. _iframe.contentDocument.location.reload()
  9133. }
  9134. } else if (str == 'mind') {
  9135. _iframe = _formdiv.querySelector('iframe')
  9136. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9137. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9138. })
  9139. if (onloadListener) {
  9140. _iframe.contentDocument.location.reload()
  9141. } else {
  9142. _iframe.contentDocument.location.reload()
  9143. }
  9144. } else if (str == 'whiteboard') {
  9145. _iframe = _formdiv.querySelector('iframe')
  9146. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9147. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9148. })
  9149. // if (onloadListener) {
  9150. // try {
  9151. // _iframe.src += "?cocorobo="+new Date().getTime()
  9152. // _iframe.contentWindow.document.location.reload()
  9153. // } catch (error) {
  9154. // }
  9155. // } else {
  9156. // _iframe.contentDocument.location.reload()
  9157. // }
  9158. } else if (str == 'CocoPi') {
  9159. _iframe = _formdiv.querySelector('iframe')
  9160. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9161. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9162. })
  9163. if (onloadListener) {
  9164. _iframe.contentDocument.location.reload()
  9165. } else {
  9166. _iframe.contentDocument.location.reload()
  9167. }
  9168. } else {
  9169. _iframe.onload = () => { };
  9170. }
  9171. _jie.onclick = async () => {
  9172. let text = ''
  9173. let type = '2'
  9174. if (aTool == 1) {
  9175. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9176. type = '3'
  9177. } else if (aTool == 6) {
  9178. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9179. type = '1'
  9180. } else if (aTool == 3) {
  9181. text = await U.MD.D.I.getEditorContent(_iframe);
  9182. type = '2'
  9183. } else if (aTool == 57) {
  9184. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9185. type = '4'
  9186. }
  9187. _loading.style.display = 'flex'
  9188. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9189. }
  9190. }
  9191. //U.MD.D.I.openClick(str);
  9192. //如果有任务栏信息
  9193. // if (_taskbar) {
  9194. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9195. // }
  9196. }
  9197. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9198. var xmlhttp;
  9199. var Mac, Sn, DeviceId
  9200. if (window.XMLHttpRequest) {
  9201. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9202. xmlhttp = new XMLHttpRequest();
  9203. } else {
  9204. // IE6, IE5 浏览器执行代码
  9205. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9206. }
  9207. xmlhttp.onreadystatechange = function () {
  9208. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9209. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9210. // resolve(res.value[0][0].text);
  9211. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9212. }
  9213. }
  9214. }
  9215. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9216. xmlhttp.send();
  9217. }
  9218. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9219. var xmlhttp;
  9220. var Mac, Sn, DeviceId
  9221. if (window.XMLHttpRequest) {
  9222. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9223. xmlhttp = new XMLHttpRequest();
  9224. } else {
  9225. // IE6, IE5 浏览器执行代码
  9226. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9227. }
  9228. xmlhttp.onreadystatechange = function () {
  9229. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9230. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9231. // resolve(res.value[0][0].text);
  9232. if (type == '2') {
  9233. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9234. } else if (type == '3') {
  9235. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9236. } else if (type == '4') {
  9237. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9238. }
  9239. } else {
  9240. if (type == '2') {
  9241. iframe.contentWindow.editor.minder.importData('json', '')
  9242. } else if (type == '3') {
  9243. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9244. } else if (type == '4') {
  9245. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9246. }
  9247. }
  9248. }
  9249. }
  9250. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9251. xmlhttp.send();
  9252. }
  9253. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9254. var xmlhttp;
  9255. var Mac, Sn, DeviceId
  9256. if (window.XMLHttpRequest) {
  9257. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9258. xmlhttp = new XMLHttpRequest();
  9259. } else {
  9260. // IE6, IE5 浏览器执行代码
  9261. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9262. }
  9263. xmlhttp.onreadystatechange = function () {
  9264. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9265. if (xmlhttp.response) {
  9266. // resolve(res.value[0][0].text);
  9267. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9268. // $(fileInput).val('');
  9269. // });
  9270. span.innerHTML = '上传成功'
  9271. setTimeout(() => {
  9272. loading.style.display = 'none'
  9273. }, 1000);
  9274. }
  9275. }
  9276. }
  9277. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9278. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9279. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9280. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9281. // 设置请求头,表示请求体的编码格式
  9282. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9283. // 设置请求体,使用url-encoded格式的数据
  9284. }
  9285. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9286. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9287. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9288. _userinfo = US.userInfo, //登录用户信息
  9289. _userid = US.userInfo.userid //登录用户id
  9290. let _iframe;
  9291. let _cid = cid,
  9292. _stage = stage,
  9293. _task = task,
  9294. _tool = tool;
  9295. var _jie = $$("div", {
  9296. "style": {
  9297. "position": "absolute",
  9298. "bottom": "50px",
  9299. "right": "50px",
  9300. "zIndex": "9999",
  9301. "backgroundColor": "#2268bc",
  9302. "color": "#fff",
  9303. "padding": "12px 20px",
  9304. "cursor": "pointer",
  9305. "borderRadius": "4px",
  9306. },
  9307. "innerHTML": "提交作业"
  9308. })
  9309. let aTool = ''
  9310. let _loading = document.createElement('div')
  9311. _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;"
  9312. // _loading.id = "";
  9313. let _lchild = document.createElement('div')
  9314. let _limg = document.createElement('img')
  9315. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9316. _limg.style = "width: 26px;margin-right: 10px;"
  9317. _lchild.appendChild(_limg)
  9318. let _lspan = document.createElement('span')
  9319. _lspan.innerHTML = "上传中..."
  9320. _lchild.appendChild(_lspan)
  9321. _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%);"
  9322. _loading.appendChild(_lchild)
  9323. var _box = $$('div', {
  9324. "style": {
  9325. "position": "relative",
  9326. "width": "100%",
  9327. "height": "100%",
  9328. },
  9329. })
  9330. _box.appendChild(_loading)
  9331. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9332. switch (str) {
  9333. case "CocoPi":
  9334. aTool = 57;
  9335. _iframe = $$("iframe", {
  9336. "allowpaymentrequest": "allowpaymentrequest",
  9337. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9338. "webkitallowfullscreen": "",
  9339. "mozallowfullscreen": "",
  9340. "frameborder": "no",
  9341. "border": "0",
  9342. "scrolling ": "no",
  9343. "style": {
  9344. "cssText": "border:0;width:100%;height:100%"
  9345. },
  9346. "src": "https://pi.cocorobo.cn/"
  9347. })
  9348. _box.appendChild(_iframe);
  9349. _box.appendChild(_jie);
  9350. _formdiv = new U.UF.UI.form(
  9351. "CocoPi",
  9352. _box, {
  9353. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9354. "style": {
  9355. "width": "90%",
  9356. "height": "90%",
  9357. "overflow": 'hidden'
  9358. },
  9359. "onresize": function () { }
  9360. }, {
  9361. closecallback: function () { }
  9362. }, {
  9363. "style": {
  9364. "height": "36px"
  9365. }
  9366. }).form; //创建窗体
  9367. _taskbar = {
  9368. "id": str + _formdiv.id,
  9369. "style": {
  9370. "backgroundImage": "url(/img/icon/cocopi.png)"
  9371. },
  9372. "name": "CocoPi",
  9373. "forms": _formdiv,
  9374. "click": function () {
  9375. U.MD.D.I.openApplication(str, obj, info);
  9376. }
  9377. }
  9378. break;
  9379. }
  9380. if (_iframe) {
  9381. if (str == 'CocoPi') {
  9382. _iframe = _formdiv.querySelector('iframe')
  9383. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9384. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9385. })
  9386. if (onloadListener) {
  9387. _iframe.contentDocument.location.reload()
  9388. } else {
  9389. _iframe.contentDocument.location.reload()
  9390. }
  9391. }
  9392. _jie.onclick = async () => {
  9393. let text = ''
  9394. if (aTool == 57) {
  9395. text = _iframe.contentWindow.getLoadXmlStr()
  9396. }
  9397. _loading.style.display = 'flex'
  9398. console.log(_loading);
  9399. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9400. _loading.style.display = 'none'
  9401. let _div = document.createElement('div')
  9402. _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;"
  9403. let _inner = document.createElement('div')
  9404. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9405. _inner.innerHTML = "上传成功"
  9406. _div.appendChild(_inner)
  9407. _iframe.contentWindow.window.document.body.appendChild(_div)
  9408. _div.onclick = () => {
  9409. _iframe.contentWindow.window.document.body.removeChild(_div)
  9410. }
  9411. setTimeout(() => {
  9412. _iframe.contentWindow.window.document.body.removeChild(_div)
  9413. }, 1000);
  9414. }, [], { "type": "POST", "withCredentials": true });
  9415. }
  9416. }
  9417. }
  9418. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9419. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9420. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9421. _userid = student.userid, //登录用户id
  9422. _username = student.student //用户名字
  9423. let _iframe;
  9424. let _cid = cid,
  9425. _stage = stage,
  9426. _task = task,
  9427. _tool = tool;
  9428. var _jie = $$("div", {
  9429. "style": {
  9430. "position": "absolute",
  9431. "bottom": "50px",
  9432. "right": "50px",
  9433. "zIndex": "9999",
  9434. "backgroundColor": "#2268bc",
  9435. "color": "#fff",
  9436. "padding": "12px 20px",
  9437. "cursor": "pointer",
  9438. "borderRadius": "4px",
  9439. },
  9440. "innerHTML": "提交作业"
  9441. })
  9442. let aTool = ''
  9443. let _loading = document.createElement('div')
  9444. _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;"
  9445. // _loading.id = "";
  9446. let _lchild = document.createElement('div')
  9447. let _limg = document.createElement('img')
  9448. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9449. _limg.style = "width: 26px;margin-right: 10px;"
  9450. _lchild.appendChild(_limg)
  9451. let _lspan = document.createElement('span')
  9452. _lspan.innerHTML = "上传中..."
  9453. _lchild.appendChild(_lspan)
  9454. _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%);"
  9455. _loading.appendChild(_lchild)
  9456. var _box = $$('div', {
  9457. "style": {
  9458. "position": "relative",
  9459. "width": "100%",
  9460. "height": "100%",
  9461. },
  9462. })
  9463. _box.appendChild(_loading)
  9464. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9465. switch (str) {
  9466. case "CocoPi":
  9467. aTool = 57;
  9468. _iframe = $$("iframe", {
  9469. "allowpaymentrequest": "allowpaymentrequest",
  9470. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9471. "webkitallowfullscreen": "",
  9472. "mozallowfullscreen": "",
  9473. "frameborder": "no",
  9474. "border": "0",
  9475. "scrolling ": "no",
  9476. "style": {
  9477. "cssText": "border:0;width:100%;height:100%"
  9478. },
  9479. "src": "https://pi.cocorobo.cn/"
  9480. })
  9481. _box.appendChild(_iframe);
  9482. _box.appendChild(_jie);
  9483. _formdiv = new U.UF.UI.form(
  9484. "CocoPi-" + _username,
  9485. _box, {
  9486. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9487. "style": {
  9488. "width": "90%",
  9489. "height": "90%",
  9490. "overflow": 'hidden'
  9491. },
  9492. "onresize": function () { }
  9493. }, {
  9494. closecallback: function () { }
  9495. }, {
  9496. "style": {
  9497. "height": "36px"
  9498. }
  9499. }).form; //创建窗体
  9500. _taskbar = {
  9501. "id": str + _formdiv.id,
  9502. "style": {
  9503. "backgroundImage": "url(/img/icon/cocopi.png)"
  9504. },
  9505. "name": "CocoPi",
  9506. "forms": _formdiv,
  9507. "click": function () {
  9508. U.MD.D.I.openApplication(str, obj, info);
  9509. }
  9510. }
  9511. break;
  9512. }
  9513. if (_iframe) {
  9514. if (str == 'CocoPi') {
  9515. _iframe = _formdiv.querySelector('iframe')
  9516. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9517. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9518. })
  9519. if (onloadListener) {
  9520. _iframe.contentDocument.location.reload()
  9521. } else {
  9522. _iframe.contentDocument.location.reload()
  9523. }
  9524. }
  9525. _jie.onclick = async () => {
  9526. let text = ''
  9527. if (aTool == 57) {
  9528. text = _iframe.contentWindow.getLoadXmlStr()
  9529. }
  9530. _loading.style.display = 'flex'
  9531. console.log(_loading);
  9532. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9533. _loading.style.display = 'none'
  9534. let _div = document.createElement('div')
  9535. _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;"
  9536. let _inner = document.createElement('div')
  9537. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9538. _inner.innerHTML = "上传成功"
  9539. _div.appendChild(_inner)
  9540. _iframe.contentWindow.window.document.body.appendChild(_div)
  9541. _div.onclick = () => {
  9542. _iframe.contentWindow.window.document.body.removeChild(_div)
  9543. }
  9544. setTimeout(() => {
  9545. _iframe.contentWindow.window.document.body.removeChild(_div)
  9546. }, 1000);
  9547. }, [], { "type": "POST", "withCredentials": true });
  9548. }
  9549. }
  9550. }
  9551. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9552. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9553. if (res.value[0].length > 0) {
  9554. if (atool == 57) {
  9555. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9556. }
  9557. } else {
  9558. if (atool == 57) {
  9559. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9560. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9561. }
  9562. }
  9563. }, [], { "type": "POST", "withCredentials": true });
  9564. }