DeskTop.js 637 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503StudentDeskIcon = [
  1522. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //SPROUT Lab
  1528. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1529. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1535. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. ];
  1545. //010204
  1546. U.MD.D.I.x010204TeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //010204
  1551. U.MD.D.I.x010204StudentDeskIcon = [
  1552. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. ];
  1557. //trail
  1558. U.MD.D.I.trailTeacherDeskIcon = [
  1559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //trail
  1563. U.MD.D.I.trailStudentDeskIcon = [
  1564. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010504
  1570. U.MD.D.I.x010504TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1574. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1575. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1578. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //010504
  1581. U.MD.D.I.x010504StudentDeskIcon = [
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //SCNUET
  1588. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1594. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1595. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1600. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1601. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1602. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1606. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1607. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1608. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1609. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1610. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1611. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1612. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1613. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETAdminDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETStudentDeskIcon = [
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //#region 桌面初始化a
  1651. /**
  1652. * 初始化桌面的起始函数
  1653. *
  1654. */
  1655. U.MD.D.I.init = function () {
  1656. if ($("#U_MD_D_K")[0]) {
  1657. //初始化桌面图标
  1658. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1659. // var clickUrl = ':12588/requestIp.php';
  1660. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1661. // U.MD.D.I.Ip = data;
  1662. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1663. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1664. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1665. // })
  1666. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1667. // })
  1668. }
  1669. }
  1670. /**
  1671. * 模式切换
  1672. *
  1673. */
  1674. U.MD.D.I.ModeCheck = function (type) {
  1675. if (US.Config.type == type) {
  1676. return
  1677. }
  1678. US.Config.type = type
  1679. $('.U_PBL_Check .active')[0].className = ''
  1680. if (type == 1) {
  1681. $('.U_PBL_Check div')[0].className = 'active'
  1682. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1683. } else {
  1684. $('.U_PBL_Check div')[1].className = 'active'
  1685. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1686. }
  1687. //初始化桌面图标
  1688. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1689. if (type == 2) {
  1690. U.MD.D.I.openApplication("project")
  1691. }
  1692. }
  1693. /**
  1694. * 隐藏任务栏
  1695. *
  1696. * @param {element} 桌面元素
  1697. */
  1698. U.MD.D.I.hiddenTaskbar = function (el) {
  1699. //任务栏位置变小
  1700. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1701. //桌面的位置变大
  1702. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1703. }
  1704. /**
  1705. * 隐藏任务栏
  1706. *
  1707. * @param {element} 桌面元素
  1708. */
  1709. U.MD.D.I.hiddenTaskbarout = function (el) {
  1710. //任务栏位置变小
  1711. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1712. //任务栏位置变化
  1713. U.selectEl(el).css({ "bottom": "-60px" });
  1714. //桌面的位置变大
  1715. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1716. }
  1717. }
  1718. /**
  1719. * 初始化打印桌面图标
  1720. *
  1721. * @param {element} 桌面元素
  1722. */
  1723. U.MD.D.I.initDesktopIcons = function (el, type) {
  1724. var i, //用于循环
  1725. _content, //桌面图标元素
  1726. _iconcontent, //桌面图标元素
  1727. _frag = $$("frag"), //定义一个碎片元素
  1728. _type = US.userInfo.type,
  1729. _org = US.userInfo.org,
  1730. _oid = US.userInfo.organizeid,
  1731. _role = US.userInfo.role,
  1732. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1733. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1734. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1735. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1736. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1737. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1738. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1739. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1740. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1741. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1742. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1743. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1744. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1745. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1746. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1747. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1748. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1749. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1750. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1751. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1752. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1753. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1754. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1755. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1756. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1757. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1758. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1759. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1760. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1761. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1762. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1763. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1764. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1765. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1766. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1767. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1768. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1769. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1770. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1771. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1772. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1773. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1774. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1775. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1776. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1777. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1778. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1779. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1780. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1781. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1782. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1783. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1784. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1785. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1786. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1787. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1788. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1789. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1790. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1791. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1792. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1793. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1794. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1795. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1796. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1797. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1798. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1799. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1800. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1801. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1802. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1803. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1804. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1805. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1806. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1807. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1808. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1809. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1810. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1811. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1812. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1813. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1814. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1815. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1816. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1817. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1818. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1819. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1820. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1821. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1822. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1823. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1824. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1825. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1826. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1827. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1828. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1829. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1830. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1831. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1832. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1833. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1834. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1835. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1836. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5'];
  1837. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3'];
  1838. //清楚桌面图标
  1839. el.innerHTML = "";
  1840. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1841. _teacherDesktopIconInfo.push(
  1842. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1843. { "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)" } },
  1844. )
  1845. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1846. }
  1847. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1848. _teacherDesktopIconInfo.push(
  1849. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1850. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1851. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1852. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1853. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1856. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1857. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1858. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1859. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1860. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1861. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1862. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1863. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1864. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1865. )
  1866. }
  1867. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1868. _teacherDesktopIconInfo.push(
  1869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1870. )
  1871. }
  1872. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1873. // _teacherDesktopIconInfo.push(
  1874. // )
  1875. // }
  1876. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1877. _teacherDesktopIconInfo.push(
  1878. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1879. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1880. )
  1881. }
  1882. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1883. _teacherDesktopIconInfo.push(
  1884. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1885. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1886. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1887. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1888. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1889. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1890. )
  1891. _studentDesktopIconInfo.push(
  1892. )
  1893. }
  1894. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1895. _teacherDesktopIconInfo.push(
  1896. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1897. )
  1898. _studentDesktopIconInfo.push(
  1899. )
  1900. }
  1901. //010606 组织
  1902. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1903. _teacherDesktopIconInfo.push(
  1904. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1905. )
  1906. _studentDesktopIconInfo.push(
  1907. )
  1908. }
  1909. //麒麟二中 和 民新小学
  1910. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1911. _teacherDesktopIconInfo.push(
  1912. )
  1913. }
  1914. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1915. _teacherDesktopIconInfo.push(
  1916. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1917. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1918. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1919. )
  1920. }
  1921. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1922. _hkTeacherDeskIconInfo.push(
  1923. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1924. )
  1925. }
  1926. //北师大附中(010601)
  1927. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1928. // _teacherDesktopIconInfo.push(
  1929. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. // )
  1931. // _studentDesktopIconInfo.push(
  1932. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. // )
  1934. // }
  1935. //樂善堂余近卿中學
  1936. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1937. _teacherDesktopIconInfo.push(
  1938. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1939. )
  1940. }
  1941. // Education Artificial Intelligence
  1942. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1943. _teacherDesktopIconInfo.push(
  1944. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1945. )
  1946. }
  1947. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1948. _teacherDesktopIconInfo.push(
  1949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1950. )
  1951. }
  1952. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1953. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1954. _teacherDesktopIconInfo.push(
  1955. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. )
  1958. }
  1959. //麒麟二中
  1960. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1961. _studentDesktopIconInfo.push(
  1962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1964. )
  1965. }
  1966. //万科双语
  1967. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1968. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1969. if (el.Name == '项目管理') {
  1970. el.Name = 'PBL项目'
  1971. }
  1972. return el
  1973. })
  1974. _studentDesktopIconInfo3.push(
  1975. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1976. )
  1977. }
  1978. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1979. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1980. return el.Name != '魔盒识字' && el.Name != '24点'
  1981. })
  1982. }
  1983. 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) {
  1984. _studentDesktopIconInfo.push(
  1985. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1986. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1987. )
  1988. }
  1989. //循环创建桌面图标
  1990. if (type == 1) {
  1991. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1992. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1993. _content = $$("div", {
  1994. className: "U_MD_D_KO",
  1995. "onmousedown": U.UF.C.closure(function (obj) {
  1996. //防止拖动图标即打开了桌面应用
  1997. U.MD.D.click(this, obj);
  1998. }, [_studentDesktopIconInfo[i]]),
  1999. "onclick": U.UF.C.closure(function (obj) {
  2000. //防止拖动图标即打开了桌面应用
  2001. U.MD.D.click(this, obj);
  2002. }, [_studentDesktopIconInfo[i]])
  2003. }, _frag); //
  2004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2007. }
  2008. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2009. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2010. _content = $$("div", {
  2011. className: "U_MD_D_KO",
  2012. "onmousedown": U.UF.C.closure(function (obj) {
  2013. //防止拖动图标即打开了桌面应用
  2014. U.MD.D.click(this, obj);
  2015. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2016. "onclick": U.UF.C.closure(function (obj) {
  2017. //防止拖动图标即打开了桌面应用
  2018. U.MD.D.click(this, obj);
  2019. }, [_hkZJLSStudentDeskIconInfo[i]])
  2020. }, _frag); //
  2021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2024. } //
  2025. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2026. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2027. _content = $$("div", {
  2028. className: "U_MD_D_KO",
  2029. "onmousedown": U.UF.C.closure(function (obj) {
  2030. //防止拖动图标即打开了桌面应用
  2031. U.MD.D.click(this, obj);
  2032. }, [_ytyStudentDeskIconInfo[i]]),
  2033. "onclick": U.UF.C.closure(function (obj) {
  2034. //防止拖动图标即打开了桌面应用
  2035. U.MD.D.click(this, obj);
  2036. }, [_ytyStudentDeskIconInfo[i]])
  2037. }, _frag); //
  2038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2041. } //
  2042. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2043. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2044. _content = $$("div", {
  2045. className: "U_MD_D_KO",
  2046. "onmousedown": U.UF.C.closure(function (obj) {
  2047. //防止拖动图标即打开了桌面应用
  2048. U.MD.D.click(this, obj);
  2049. }, [_jccssylStudentDeskIconInfo[i]]),
  2050. "onclick": U.UF.C.closure(function (obj) {
  2051. //防止拖动图标即打开了桌面应用
  2052. U.MD.D.click(this, obj);
  2053. }, [_jccssylStudentDeskIconInfo[i]])
  2054. }, _frag); //
  2055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2058. }
  2059. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2060. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2061. _content = $$("div", {
  2062. className: "U_MD_D_KO",
  2063. "onmousedown": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_scnuaiStudentDeskIconInfo[i]]),
  2067. "onclick": U.UF.C.closure(function (obj) {
  2068. //防止拖动图标即打开了桌面应用
  2069. U.MD.D.click(this, obj);
  2070. }, [_scnuaiStudentDeskIconInfo[i]])
  2071. }, _frag); //
  2072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2075. }
  2076. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2077. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2078. _content = $$("div", {
  2079. className: "U_MD_D_KO",
  2080. "onmousedown": U.UF.C.closure(function (obj) {
  2081. //防止拖动图标即打开了桌面应用
  2082. U.MD.D.click(this, obj);
  2083. }, [_caleStudentDeskIconInfo[i]]),
  2084. "onclick": U.UF.C.closure(function (obj) {
  2085. //防止拖动图标即打开了桌面应用
  2086. U.MD.D.click(this, obj);
  2087. }, [_caleStudentDeskIconInfo[i]])
  2088. }, _frag); //
  2089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2092. }
  2093. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2094. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2095. _content = $$("div", {
  2096. className: "U_MD_D_KO",
  2097. "onmousedown": U.UF.C.closure(function (obj) {
  2098. //防止拖动图标即打开了桌面应用
  2099. U.MD.D.click(this, obj);
  2100. }, [_thuioeStudentDeskIconInfo[i]]),
  2101. "onclick": U.UF.C.closure(function (obj) {
  2102. //防止拖动图标即打开了桌面应用
  2103. U.MD.D.click(this, obj);
  2104. }, [_thuioeStudentDeskIconInfo[i]])
  2105. }, _frag); //
  2106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2109. }
  2110. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2111. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2112. _content = $$("div", {
  2113. className: "U_MD_D_KO",
  2114. "onmousedown": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_tpcStudentDeskIconInfo[i]]),
  2118. "onclick": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_tpcStudentDeskIconInfo[i]])
  2122. }, _frag); //
  2123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2126. } //
  2127. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2128. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2129. _content = $$("div", {
  2130. className: "U_MD_D_KO",
  2131. "onmousedown": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_chjyjStudentDeskIconInfo[i]]),
  2135. "onclick": U.UF.C.closure(function (obj) {
  2136. //防止拖动图标即打开了桌面应用
  2137. U.MD.D.click(this, obj);
  2138. }, [_chjyjStudentDeskIconInfo[i]])
  2139. }, _frag); //
  2140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2143. }
  2144. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2145. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2146. _content = $$("div", {
  2147. className: "U_MD_D_KO",
  2148. "onmousedown": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_szjkyStudentDeskIconInfo[i]]),
  2152. "onclick": U.UF.C.closure(function (obj) {
  2153. //防止拖动图标即打开了桌面应用
  2154. U.MD.D.click(this, obj);
  2155. }, [_szjkyStudentDeskIconInfo[i]])
  2156. }, _frag); //
  2157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2160. }
  2161. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2162. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2163. _content = $$("div", {
  2164. className: "U_MD_D_KO",
  2165. "onmousedown": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_SCNUETStudentDeskIconInfo[i]]),
  2169. "onclick": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_SCNUETStudentDeskIconInfo[i]])
  2173. }, _frag); //
  2174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2177. }
  2178. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2179. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2180. _content = $$("div", {
  2181. className: "U_MD_D_KO",
  2182. "onmousedown": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_dseiStudentDeskIconInfo[i]]),
  2186. "onclick": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_dseiStudentDeskIconInfo[i]])
  2190. }, _frag); //
  2191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2194. }
  2195. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2196. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2197. _content = $$("div", {
  2198. className: "U_MD_D_KO",
  2199. "onmousedown": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2203. "onclick": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2207. }, _frag); //
  2208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2211. }
  2212. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2213. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2214. _content = $$("div", {
  2215. className: "U_MD_D_KO",
  2216. "onmousedown": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_nsfxStudentDeskIconInfo[i]]),
  2220. "onclick": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_nsfxStudentDeskIconInfo[i]])
  2224. }, _frag); //
  2225. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2226. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2227. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2228. }
  2229. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2230. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2231. _content = $$("div", {
  2232. className: "U_MD_D_KO",
  2233. "onmousedown": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_stiaStudentDeskIconInfo[i]]),
  2237. "onclick": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_stiaStudentDeskIconInfo[i]])
  2241. }, _frag); //
  2242. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2243. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2244. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2245. }
  2246. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2247. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2248. _content = $$("div", {
  2249. className: "U_MD_D_KO",
  2250. "onmousedown": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_szdjgStudentDeskIconInfo[i]]),
  2254. "onclick": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_szdjgStudentDeskIconInfo[i]])
  2258. }, _frag); //
  2259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2262. }
  2263. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2264. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2265. _content = $$("div", {
  2266. className: "U_MD_D_KO",
  2267. "onmousedown": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_x010607StudentDeskIconInfo[i]]),
  2271. "onclick": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_x010607StudentDeskIconInfo[i]])
  2275. }, _frag); //
  2276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2279. }
  2280. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2281. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_xhlyStudentDeskIconInfo[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_xhlyStudentDeskIconInfo[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2296. }
  2297. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2298. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2299. _content = $$("div", {
  2300. className: "U_MD_D_KO",
  2301. "onmousedown": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2305. "onclick": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2309. }, _frag); //
  2310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2313. }
  2314. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2315. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_x010503StudentDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_x010503StudentDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2332. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_x010504StudentDeskIconInfo[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_x010504StudentDeskIconInfo[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2347. }
  2348. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2349. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_x010204StudentDeskIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_x010204StudentDeskIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2366. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_trailStudentDeskIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_trailStudentDeskIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2383. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2398. }
  2399. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2400. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_x010608StudentDeskIconInfo[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_x010608StudentDeskIconInfo[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2415. }
  2416. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2417. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2418. _content = $$("div", {
  2419. className: "U_MD_D_KO",
  2420. "onmousedown": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_siesStudentDeskIconInfo[i]]),
  2424. "onclick": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_siesStudentDeskIconInfo[i]])
  2428. }, _frag); //
  2429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2432. }
  2433. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2434. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  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. }, [_guzmsStudentDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_guzmsStudentDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2451. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_hkStudentDeskIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_hkStudentDeskIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2468. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2469. _content = $$("div", {
  2470. className: "U_MD_D_KO",
  2471. "onmousedown": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_hkaceStudentDeskIconInfo[i]]),
  2475. "onclick": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_hkaceStudentDeskIconInfo[i]])
  2479. }, _frag); //
  2480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2483. }
  2484. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2485. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_BSDNSstudentDesktopIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2502. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_cocobizStudentDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_cocobizStudentDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2519. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2520. _content = $$("div", {
  2521. className: "U_MD_D_KO",
  2522. "onmousedown": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2526. "onclick": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_xxzjkyStudentDeskIconInfo[i]])
  2530. }, _frag); //
  2531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2534. }
  2535. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2536. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_studentDesktopIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_studentDesktopIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2553. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_tcStudentDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_tcStudentDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2570. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_szscStudentDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_szscStudentDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2587. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_studentDesktopIconInfo3[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_studentDesktopIconInfo3[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2602. }
  2603. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2604. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2605. _content = $$("div", {
  2606. className: "U_MD_D_KO",
  2607. "onmousedown": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_studentDesktopIconInfo2[i]]),
  2611. "onclick": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_studentDesktopIconInfo2[i]])
  2615. }, _frag); //
  2616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2619. }
  2620. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2621. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2622. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2623. continue
  2624. }
  2625. _content = $$("div", {
  2626. className: "U_MD_D_KO",
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_wanketeacherDesktopIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_wanketeacherDesktopIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2639. }
  2640. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2641. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2642. _content = $$("div", {
  2643. className: "U_MD_D_KO",
  2644. "onmousedown": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_wankeAdminDesktopIconInfo[i]]),
  2648. "onclick": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_wankeAdminDesktopIconInfo[i]])
  2652. }, _frag); //
  2653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2656. }
  2657. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2658. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2659. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2660. continue
  2661. }
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_scnuaiTeacherDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2678. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2679. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2680. continue
  2681. }
  2682. _content = $$("div", {
  2683. className: "U_MD_D_KO",
  2684. "onmousedown": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2688. "onclick": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_BSDNSteacherDesktopIconInfo[i]])
  2692. }, _frag); //
  2693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2696. }
  2697. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2698. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2699. _content = $$("div", {
  2700. className: "U_MD_D_KO",
  2701. "onmousedown": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_scnuaiAdminDeskIconInfo[i]]),
  2705. "onclick": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_scnuaiAdminDeskIconInfo[i]])
  2709. }, _frag); //
  2710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2713. }
  2714. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2715. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2716. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2717. continue
  2718. }
  2719. _content = $$("div", {
  2720. className: "U_MD_D_KO",
  2721. "onmousedown": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_jccssylTeacherDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_jccssylTeacherDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2735. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2736. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2737. continue
  2738. }
  2739. _content = $$("div", {
  2740. className: "U_MD_D_KO",
  2741. "onmousedown": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_caleTeacherDeskIconInfo[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_caleTeacherDeskIconInfo[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2753. }
  2754. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2755. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2756. _content = $$("div", {
  2757. className: "U_MD_D_KO",
  2758. "onmousedown": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_tpcOrganizerDeskIconInfo[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_tpcOrganizerDeskIconInfo[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2770. }
  2771. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2772. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2773. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2774. continue
  2775. }
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_tpcTeacherDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_tpcTeacherDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2792. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2793. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2794. continue
  2795. }
  2796. _content = $$("div", {
  2797. className: "U_MD_D_KO",
  2798. "onmousedown": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_teacherDesktopIconInfo2[i]]),
  2802. "onclick": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_teacherDesktopIconInfo2[i]])
  2806. }, _frag); //
  2807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2810. }
  2811. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2812. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2813. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2814. continue
  2815. }
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_thuioeTeacherDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_thuioeTeacherDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2832. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2833. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2834. continue
  2835. }
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_lotechTeacherDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_lotechTeacherDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2850. }//
  2851. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2852. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2853. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2854. continue
  2855. }
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2872. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2873. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2874. continue
  2875. }
  2876. _content = $$("div", {
  2877. className: "U_MD_D_KO",
  2878. "onmousedown": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_siesTeacherDeskIconInfo[i]]),
  2882. "onclick": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_siesTeacherDeskIconInfo[i]])
  2886. }, _frag); //
  2887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2890. }
  2891. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2892. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2893. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2894. continue
  2895. }
  2896. _content = $$("div", {
  2897. className: "U_MD_D_KO",
  2898. "onmousedown": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_guzmsTeacherDeskIconInfo[i]]),
  2902. "onclick": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_guzmsTeacherDeskIconInfo[i]])
  2906. }, _frag); //
  2907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2910. }
  2911. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2912. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2913. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2914. continue
  2915. }
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_longhuaTeacherDeskIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_longhuaTeacherDeskIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2932. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2933. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2934. continue
  2935. }
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_ytyTeacherDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_ytyTeacherDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2952. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2953. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2954. continue
  2955. }
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_yunhaiTeacherDeskIconInfo[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2970. } //_hkStudentDeskIconInfo
  2971. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2972. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2973. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2974. continue
  2975. }
  2976. _content = $$("div", {
  2977. className: "U_MD_D_KO",
  2978. "onmousedown": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2982. "onclick": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2986. }, _frag); //
  2987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2990. }
  2991. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2992. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2993. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2994. continue
  2995. }
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_hkTeacherDeskIconInfo[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_hkTeacherDeskIconInfo[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3010. }
  3011. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3012. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3013. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_hkaceTeacherDeskIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_hkaceTeacherDeskIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3032. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3033. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3034. continue
  3035. }
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_cocobizTeacherDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_cocobizTeacherDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3052. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3053. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3054. continue
  3055. }
  3056. _content = $$("div", {
  3057. className: "U_MD_D_KO",
  3058. "onmousedown": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3062. "onclick": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3066. }, _frag); //
  3067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3070. }
  3071. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3072. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_gdjgAdminDeskIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_gdjgAdminDeskIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3089. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3090. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3091. continue
  3092. }
  3093. _content = $$("div", {
  3094. className: "U_MD_D_KO",
  3095. "onmousedown": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_gdjgTeacherDeskIconInfo[i]]),
  3099. "onclick": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_gdjgTeacherDeskIconInfo[i]])
  3103. }, _frag); //
  3104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3107. }
  3108. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3109. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3110. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3111. continue
  3112. }
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_szherTeacherDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_szherTeacherDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3127. }
  3128. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3129. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_heyuannAdminDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_heyuannAdminDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3146. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3147. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3148. continue
  3149. }
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_heyuanTeacherDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_heyuanTeacherDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3164. } //
  3165. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3166. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_dseiAdminDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_dseiAdminDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3183. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3184. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_dseiTeacherDeskIconInfo[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_dseiTeacherDeskIconInfo[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3201. } //
  3202. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3203. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3204. _content = $$("div", {
  3205. className: "U_MD_D_KO",
  3206. "onmousedown": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_chjyjAdminDeskIconInfo[i]]),
  3210. "onclick": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_chjyjAdminDeskIconInfo[i]])
  3214. }, _frag); //
  3215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3218. }//
  3219. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3220. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3221. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3222. continue
  3223. }
  3224. _content = $$("div", {
  3225. className: "U_MD_D_KO",
  3226. "onmousedown": U.UF.C.closure(function (obj) {
  3227. //防止拖动图标即打开了桌面应用
  3228. U.MD.D.click(this, obj);
  3229. }, [_chjyjTeacherDeskIconInfo[i]]),
  3230. "onclick": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_chjyjTeacherDeskIconInfo[i]])
  3234. }, _frag); //
  3235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3238. }
  3239. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3240. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3241. _content = $$("div", {
  3242. className: "U_MD_D_KO",
  3243. "onmousedown": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_szjkyAdminDeskIconInfo[i]]),
  3247. "onclick": U.UF.C.closure(function (obj) {
  3248. //防止拖动图标即打开了桌面应用
  3249. U.MD.D.click(this, obj);
  3250. }, [_szjkyAdminDeskIconInfo[i]])
  3251. }, _frag); //
  3252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3255. }//
  3256. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3257. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3258. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3259. continue
  3260. }
  3261. _content = $$("div", {
  3262. className: "U_MD_D_KO",
  3263. "onmousedown": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_szjkyTeacherDeskIconInfo[i]]),
  3267. "onclick": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_szjkyTeacherDeskIconInfo[i]])
  3271. }, _frag); //
  3272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3275. }
  3276. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3277. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_SCNUETAdminDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_SCNUETAdminDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3292. }//
  3293. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3294. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3295. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_SCNUETTeacherDeskIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3314. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_futianAdminDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_futianAdminDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3331. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3332. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_futianTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_futianTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3351. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3352. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3353. continue
  3354. }
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_MingdeTeacherDeskIcon[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_MingdeTeacherDeskIcon[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3371. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_lhsAdminDesktopIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_lhsAdminDesktopIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3388. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3389. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_lhsteacherDesktopIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_lhsteacherDesktopIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3408. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3409. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_zhoujiateacherDesktopIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3428. for (i = 0; i < _hanDeskIcon.length; i++) {
  3429. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3430. continue
  3431. }
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_hanDeskIcon[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_hanDeskIcon[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3446. }
  3447. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3448. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3449. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_orgStemDeskIcon[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_orgStemDeskIcon[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3466. }
  3467. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3468. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3469. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3470. continue
  3471. }
  3472. _content = $$("div", {
  3473. className: "U_MD_D_KO",
  3474. "onmousedown": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_szulsDeskIcon[i]]),
  3478. "onclick": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_szulsDeskIcon[i]])
  3482. }, _frag); //
  3483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3486. }
  3487. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3488. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3489. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3490. continue
  3491. }
  3492. _content = $$("div", {
  3493. className: "U_MD_D_KO",
  3494. "onmousedown": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_orgDesktopIconInfo[i]]),
  3498. "onclick": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_orgDesktopIconInfo[i]])
  3502. }, _frag); //
  3503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3506. }
  3507. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3508. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3509. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3510. continue
  3511. }
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_schoolDesktopIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_schoolDesktopIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3528. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3529. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_GMteacherDesktopIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_GMteacherDesktopIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3548. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3549. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_SONGteacherDesktopIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_SONGteacherDesktopIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3568. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_GMstudentDesktopIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_GMstudentDesktopIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3585. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3586. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_tcTeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_tcTeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3605. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3606. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_tcOrganizerDeskIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_tcOrganizerDeskIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3625. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3626. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_szscTeacherDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_szscTeacherDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3645. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3646. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_szscOrganizerDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_szscOrganizerDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3665. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3666. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_nsfxTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_nsfxTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3685. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3686. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_stiaTeacherDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_stiaTeacherDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3705. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3706. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_szdjgTeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_szdjgTeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3725. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3726. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_x010607TeacherDeskIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_x010607TeacherDeskIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3745. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3746. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_xhlyTeacherDeskIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_xhlyTeacherDeskIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3765. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3766. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3785. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_x010503TeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_x010503TeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3805. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3806. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3807. continue
  3808. }
  3809. _content = $$("div", {
  3810. className: "U_MD_D_KO",
  3811. "onmousedown": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_x010504TeacherDeskIconInfo[i]]),
  3815. "onclick": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_x010504TeacherDeskIconInfo[i]])
  3819. }, _frag); //
  3820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3823. }
  3824. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3825. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3826. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3827. continue
  3828. }
  3829. _content = $$("div", {
  3830. className: "U_MD_D_KO",
  3831. "onmousedown": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_x010204TeacherDeskIconInfo[i]]),
  3835. "onclick": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_x010204TeacherDeskIconInfo[i]])
  3839. }, _frag); //
  3840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3843. }
  3844. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3845. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3846. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3847. continue
  3848. }
  3849. _content = $$("div", {
  3850. className: "U_MD_D_KO",
  3851. "onmousedown": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_trailTeacherDeskIconInfo[i]]),
  3855. "onclick": U.UF.C.closure(function (obj) {
  3856. //防止拖动图标即打开了桌面应用
  3857. U.MD.D.click(this, obj);
  3858. }, [_trailTeacherDeskIconInfo[i]])
  3859. }, _frag); //
  3860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3863. }
  3864. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3865. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3866. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3867. continue
  3868. }
  3869. _content = $$("div", {
  3870. className: "U_MD_D_KO",
  3871. "onmousedown": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3875. "onclick": U.UF.C.closure(function (obj) {
  3876. //防止拖动图标即打开了桌面应用
  3877. U.MD.D.click(this, obj);
  3878. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3879. }, _frag); //
  3880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3883. }
  3884. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3885. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3886. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3887. continue
  3888. }
  3889. _content = $$("div", {
  3890. className: "U_MD_D_KO",
  3891. "onmousedown": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_x010608TeacherDeskIconInfo[i]]),
  3895. "onclick": U.UF.C.closure(function (obj) {
  3896. //防止拖动图标即打开了桌面应用
  3897. U.MD.D.click(this, obj);
  3898. }, [_x010608TeacherDeskIconInfo[i]])
  3899. }, _frag); //
  3900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3903. }
  3904. } else {
  3905. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3906. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3907. continue
  3908. }
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_teacherDesktopIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_teacherDesktopIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. }
  3925. } else {
  3926. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3927. _content = $$("div", {
  3928. className: "U_MD_D_KO",
  3929. style: { 'width': '124px', 'height': '145px' },
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_easyDesktopIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_easyDesktopIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3942. }
  3943. }
  3944. if (type == 1) {
  3945. //加载好后给图标定位
  3946. U.MD.D.iconPostion($(_frag).Child());
  3947. } else {
  3948. //加载好后给图标定位
  3949. U.MD.D.iconPostion2($(_frag).Child());
  3950. }
  3951. //把图标加载到页面
  3952. el.appendChild(_frag);
  3953. }
  3954. /**
  3955. * 显示任务栏
  3956. *
  3957. * @param {element} 桌面元素
  3958. */
  3959. U.MD.D.I.displayTaskbar = function (el) {
  3960. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3961. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3962. //任务栏位置变化
  3963. U.selectEl(el).css({ "bottom": "0px" });
  3964. //桌面位置变话
  3965. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3966. }
  3967. }
  3968. //#region 桌面图标拖动逻辑
  3969. /**
  3970. * 桌面排列图标
  3971. *
  3972. * @param {element} 桌面元素
  3973. * @param {object} 上下相距的距离
  3974. * @param {object} 左右相距的距离
  3975. * @return {object} 命名空间
  3976. */
  3977. U.MD.D.iconPostion = function (childs, top, left) {
  3978. var i; //用于循环处理
  3979. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3980. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3981. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3982. for (i = 0; i < childs.length; i++) {
  3983. //如果竖排top超过了范围处理
  3984. if (top + 95 > US.height - 10) {
  3985. //left超过了页面范围处理,则向上重叠打印处理
  3986. if ((left + 180) > US.width) {
  3987. top -= 110;
  3988. left -= 90;
  3989. }
  3990. //没有超过范围,那么left+90添加到下一个竖排打印
  3991. else {
  3992. left += 90;
  3993. top = 15;
  3994. };
  3995. }
  3996. //给图标的位置赋值
  3997. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3998. if (i < childs.length - 1) {
  3999. //页面图标每次向下加95
  4000. top += 95;
  4001. }
  4002. }
  4003. //返回最后调用的图标的位置
  4004. return [top, left];
  4005. }
  4006. /**
  4007. * 桌面排列图标
  4008. *
  4009. * @param {element} 桌面元素
  4010. * @param {object} 上下相距的距离
  4011. * @param {object} 左右相距的距离
  4012. * @return {object} 命名空间
  4013. */
  4014. U.MD.D.iconPostion2 = function (childs, top, left) {
  4015. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4016. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4017. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4018. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4019. for (i = 0; i < childs.length; i++) {
  4020. //如果竖排top超过了范围处理
  4021. if (left + 150 > US.width - 10) {
  4022. //left超过了页面范围处理,则向上重叠打印处理
  4023. if ((top + 180) > US.Height) {
  4024. top -= 150;
  4025. left -= 150;
  4026. }
  4027. //没有超过范围,那么left+90添加到下一个竖排打印
  4028. else {
  4029. top += 150;
  4030. left = ol;
  4031. };
  4032. }
  4033. //给图标的位置赋值
  4034. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4035. if (i < childs.length - 1) {
  4036. //页面图标每次向下加95
  4037. left += 150;
  4038. }
  4039. }
  4040. //返回最后调用的图标的位置
  4041. return [top, left];
  4042. }
  4043. /**
  4044. * 桌面点击事件逻辑
  4045. *
  4046. * @param {element} 桌面元素
  4047. * @param {object} 上下相距的距离
  4048. * @param {object} 左右相距的距离
  4049. * @return {object} 命名空间
  4050. */
  4051. U.MD.D.click = function (el, obj) {
  4052. var _buttonnumber = event.button; //点击的按钮的事件值
  4053. var _userinfo = US.userInfo;
  4054. U.UF.EV.stopBubble(); //阻止向上冒泡
  4055. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4056. if (_buttonnumber < 2) {
  4057. //如果是click事件的处理
  4058. if (event.type == "click") {
  4059. //如果元素在mousemove事件中没有移动则出发click事件
  4060. if (!U.MD.D.I.IsDrag) {
  4061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4062. U.alert("请先登录您的账号!");
  4063. setTimeout(() => {
  4064. U.MD.U.L.login();
  4065. }, 2000);
  4066. } else {
  4067. //打开应用处理
  4068. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4069. }
  4070. }
  4071. }
  4072. //如果是mouse事件的处理
  4073. else {
  4074. if (US.Config.type == '1') {
  4075. //拖动处理,添加拖动和拖动结束事件
  4076. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4077. }
  4078. }
  4079. U.MD.D.I.IsDrag = false;
  4080. }
  4081. }
  4082. /**
  4083. * 拖动的处理
  4084. *
  4085. */
  4086. U.MD.D.iconMove = function () {
  4087. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4088. U.MD.D.I.IsDrag = true;
  4089. }
  4090. /**
  4091. * 拖动结束后,这里是定位处理,以网状的形式定位
  4092. *
  4093. * @param {element} 拖动的元素
  4094. * @return {object} 命名空间
  4095. */
  4096. U.MD.D.iconUp = function (el) {
  4097. var _top = 15,
  4098. _left = 20,
  4099. _margin,
  4100. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4101. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4102. if (_positioninfo["OT"] > 15) {
  4103. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4104. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4105. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4106. }
  4107. if (_positioninfo["OL"] > 20) {
  4108. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4109. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4110. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4111. }
  4112. //while循环判断么一个重叠的元素
  4113. do {
  4114. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4115. _top = _positioninfo[0] + 95; //得到定位后的top
  4116. _left = _positioninfo[1]; //得到定位后的left
  4117. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4118. }
  4119. /**
  4120. * 判断拖动后图标是否重叠
  4121. *
  4122. * @param {element} 拖动的元素
  4123. * @param {element} 桌面所有的元素
  4124. * @param {array} 拖动元素的位置
  4125. ----------[0] 上 top
  4126. ----------[1] 左 left
  4127. * @return {object} 命名空间
  4128. */
  4129. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4130. //循环所有的图标
  4131. for (var i = 0; i < childs.length; i++) {
  4132. //判断有没有和该图标诶子重叠的元素
  4133. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4134. return childs[i]; //如果有返回
  4135. }
  4136. }
  4137. }
  4138. //#endregion
  4139. //#endregion
  4140. //#region 桌面应用
  4141. /**
  4142. * 打开应用
  4143. *
  4144. * @param {string} 类型
  4145. -----------------Disk 网盘系统
  4146. -----------------PDisk 学习系统网盘
  4147. -----------------Poto 图片
  4148. -----------------Video 视频
  4149. -----------------Music 音乐
  4150. -----------------Word word
  4151. -----------------Excel excel
  4152. -----------------Txt 记事本
  4153. -----------------PB 学习系统
  4154. -----------------Blog 朋友圈系统
  4155. -----------------FTP ftp系统
  4156. -----------------Group 好友群
  4157. -----------------SY 首页系统
  4158. -----------------Set 个人设置
  4159. -----------------XSet 系统设置
  4160. -----------------App 我们所有的app
  4161. -----------------BC c.1473.cn 平台
  4162. -----------------CWeb d.1473.cn 变成平台
  4163. -----------------其他的外联系统 我们统一用iframe打开
  4164. * @param {array} 类型
  4165. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4166. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4167. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4168. 如果第一个参数为其他,则无第二个参数
  4169. * @returns {array}
  4170. */
  4171. window.addEventListener('message', function (e) { // 监听 message 事件
  4172. // alert(e.data.type);
  4173. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4174. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4175. //3是展示全部阶段 2学生 1老师 4专家
  4176. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4177. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4178. //3是展示全部阶段 2学生 1老师 4专家
  4179. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4180. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4181. //3是展示全部阶段 2学生 1老师 4专家
  4182. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4183. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4184. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4185. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4186. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4187. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4188. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4189. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4190. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4191. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4192. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4193. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4194. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4195. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4196. //3是展示全部阶段 2学生 1老师 4专家
  4197. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4198. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4199. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4200. U.MD.D.I.selectUser();
  4201. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4202. var _formel = document.getElementById("study");
  4203. U.UF.F.windowZooming(_formel);
  4204. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4205. var _formel = document.getElementById("studyDetail");
  4206. U.UF.F.windowZooming(_formel);
  4207. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4208. var _formel = document.getElementById("studyDetail");
  4209. U.UF.F.windowZooming(_formel);
  4210. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4211. var _formel = document.getElementById("studentStudy");
  4212. U.UF.F.windowZooming(_formel);
  4213. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4214. // var _formel = document.getElementById("study");
  4215. //如果最大化了,那么就把他缩小
  4216. // if (_formel.ismaximize) {
  4217. // return;
  4218. // }
  4219. // U.UF.F.windowZooming(_formel);
  4220. // U.UF.F.topWindow(_formel);
  4221. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4222. // var _formel = document.getElementById("studyDetail");
  4223. //如果最大化了,那么就把他缩小
  4224. // if (_formel.ismaximize) {
  4225. // return;
  4226. // }
  4227. // U.UF.F.windowZooming(_formel);
  4228. // U.UF.F.topWindow(_formel);
  4229. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4230. // var _formel = document.getElementById("studentStudy");
  4231. // if (_formel.ismaximize) {
  4232. // return;
  4233. // }
  4234. // U.UF.F.windowZooming(_formel);
  4235. // U.UF.F.topWindow(_formel);
  4236. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4237. var _formel = document.getElementById("study");
  4238. // if (_formel.ismaximize) {
  4239. // return;
  4240. // }
  4241. // U.UF.F.windowZooming(_formel);
  4242. U.UF.F.topWindow(_formel);
  4243. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4244. var _formel = document.getElementById("studentIndex");
  4245. U.UF.F.windowZooming(_formel);
  4246. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4247. var _formel = document.getElementById("studyDetailS");
  4248. U.UF.F.windowZooming(_formel);
  4249. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4250. var _formel = document.getElementById("studioIndex");
  4251. U.UF.F.windowZooming(_formel);
  4252. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4253. var _formel = document.getElementById("studyDetailStudio");
  4254. U.UF.F.windowZooming(_formel);
  4255. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4256. var _formel = document.getElementById("studyDetailStudio");
  4257. U.UF.F.windowZooming(_formel);
  4258. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4259. var _formel = document.getElementById("studyDetailNT");
  4260. U.UF.F.windowZooming(_formel);
  4261. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4262. var _formel = document.getElementById("studyDetailS");
  4263. U.UF.F.windowZooming(_formel);
  4264. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4265. var _formel = document.getElementById("studyDetailS");
  4266. U.UF.F.topWindow(_formel);
  4267. } else if (e.data.tools && e.data.tools == "1") {
  4268. // U.MD.D.I.openApplication("whiteboard")
  4269. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4270. } else if (e.data.tools && e.data.tools == "2") {
  4271. U.MD.D.I.openApplication("note")
  4272. } else if (e.data.tools && e.data.tools == "3") {
  4273. // U.MD.D.I.openApplication("mind")
  4274. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4275. } else if (e.data.tools && e.data.tools == "4") {
  4276. U.MD.D.I.openApplication("investigation")
  4277. } else if (e.data.tools && e.data.tools == "6") {
  4278. // U.MD.D.I.openApplication("doc")
  4279. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4280. } else if (e.data.tools && e.data.tools == "7") {
  4281. // U.MD.D.I.openApplication("mindNetwork")
  4282. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4283. } else if (e.data.tools && e.data.tools == "8") {
  4284. U.MD.D.I.openApplication("library")
  4285. } else if (e.data.tools && e.data.tools == "17") {
  4286. U.MD.D.I.openApplication("stuLibrary")
  4287. } else if (e.data.tools && e.data.tools == "18") {
  4288. U.MD.D.I.openApplication("train")
  4289. } else if (e.data.tools && e.data.tools == "21") {
  4290. U.MD.D.I.openApplication("program")
  4291. } else if (e.data.tools && e.data.tools == "22") {
  4292. U.MD.D.I.openApplication("AIprogram2")
  4293. } else if (e.data.tools && e.data.tools == "23") {
  4294. U.MD.D.I.openApplication("Pythonprogram")
  4295. } else if (e.data.tools && e.data.tools == "24") {
  4296. U.MD.D.I.openApplication("AIprogram")
  4297. } else if (e.data.tools && e.data.tools == "25") {
  4298. U.MD.D.I.openApplication("sys")
  4299. } else if (e.data.tools && e.data.tools == "26") {
  4300. // U.MD.D.I.openApplication("courseDesign")
  4301. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4302. } else if (e.data.tools && e.data.tools == "31") {
  4303. U.MD.D.I.openApplication("netWorkPanel")
  4304. } else if (e.data.tools && e.data.tools == "32") {
  4305. U.MD.D.I.openApplication("codeEdit")
  4306. } else if (e.data.tools && e.data.tools == "57") {
  4307. U.MD.D.I.openApplication("CocoPi")
  4308. } else if (e.data.tools && e.data.tools == "63") {
  4309. U.MD.D.I.openApplication("Wood")
  4310. } else if (e.data.tools && e.data.tools == "58") {
  4311. U.MD.D.I.openApplication("car")
  4312. } else if (e.data.tools && e.data.tools == "59") {
  4313. U.MD.D.I.openApplication("lineSearch")
  4314. } else if (e.data.tools && e.data.tools == "60") {
  4315. U.MD.D.I.openApplication("deepLearning")
  4316. } else if (e.data.tools && e.data.tools == "61") {
  4317. U.MD.D.I.openApplication("allHistory")
  4318. } else if (e.data.tools && e.data.tools == "28") {
  4319. U.MD.D.I.openApplication("translation")
  4320. } else if (e.data.tools && e.data.tools == "37") {
  4321. U.MD.D.I.openApplication("mohe")
  4322. } else if (e.data.tools && e.data.tools == "38") {
  4323. U.MD.D.I.openApplication("24game")
  4324. } else if (e.data.tools && e.data.tools == "39") {
  4325. U.MD.D.I.openApplication("GeoGebra")
  4326. } else if (e.data.tools && e.data.tools == "43") {
  4327. U.MD.D.I.openApplication("studentEvaluate")
  4328. } else if (e.data.tools && e.data.tools == "44") {
  4329. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4330. } else if (e.data.tools && e.data.tools == "46") {
  4331. U.MD.D.I.openApplication("project")
  4332. } else if (e.data.tools && e.data.tools == "71") {
  4333. U.MD.D.I.openApplication("aigptCourse")
  4334. } else if (e.data.tools && e.data.tools == "1s") {
  4335. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4336. } else if (e.data.tools && e.data.tools == "3s") {
  4337. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4338. } else if (e.data.tools && e.data.tools == "6s") {
  4339. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4340. } else if (e.data.tools && e.data.tools == "1studio") {
  4341. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4342. } else if (e.data.tools && e.data.tools == "3studio") {
  4343. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4344. } else if (e.data.tools && e.data.tools == "6studio") {
  4345. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4346. } else if (e.data.tools && e.data.tools == "3y") {
  4347. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4348. } else if (e.data.tools && e.data.tools == "1y") {
  4349. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4350. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4351. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4352. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4353. U.MD.D.I.openApplication("AIAnalyse")
  4354. } else if (e.data.tools && e.data.tools == "1teacher") {
  4355. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4356. } else if (e.data.tools && e.data.tools == "3teacher") {
  4357. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4358. } else if (e.data.tools && e.data.tools == "7teacher") {
  4359. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4360. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4361. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4362. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4363. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4364. } else if (e.data.tools && e.data.tools == "1E") {
  4365. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4366. } else if (e.data.tools && e.data.tools == "3E") {
  4367. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4368. } else if (e.data.tools && e.data.tools == "57y") {
  4369. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4370. } else if (e.data.tools && e.data.tools == "57u") {
  4371. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4372. } else if (e.data.tools && e.data.tools == "57teacher") {
  4373. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4374. } else if (e.data.tools && e.data.tools == "64") {
  4375. U.MD.D.I.openApplication("AIChat")
  4376. } else if (e.data.tools && e.data.tools == "66") {
  4377. U.MD.D.I.openApplication("formulaEdi")
  4378. } else if (e.data.tools && e.data.tools == "67") {
  4379. U.MD.D.I.openApplication("molStr")
  4380. } else if (e.data.tools && e.data.tools == "68") {
  4381. U.MD.D.I.openApplication("timeAxis")
  4382. } else if (e.data.tools && e.data.tools == "openCourse") {
  4383. let _data = {
  4384. typea: e.data.typea || '',
  4385. typeb: e.data.typeb || '',
  4386. typed: e.data.typed || '',
  4387. }
  4388. U.MD.D.I.openInApplication("index", _data)
  4389. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4390. let _data = {
  4391. classid: e.data.classid || '',
  4392. }
  4393. U.MD.D.I.openInApplication("dataClass", _data)
  4394. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4395. let _data = {
  4396. cid: e.data.cid || '',
  4397. gid: e.data.gid || '',
  4398. }
  4399. U.MD.D.I.openInApplication("opencCscl", _data)
  4400. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4401. U.MD.D.I.openApplication("dataBoardTest")
  4402. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4403. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4404. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4405. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4406. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4407. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4408. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4409. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4410. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4411. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4412. }else if (e.data.tools && e.data.tools == "loginSz") {
  4413. U.MD.D.I.openInApplication("loginSz")
  4414. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4415. if($('#classroom_observation_board')[0]){
  4416. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4417. }
  4418. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4419. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4420. if($('#classroom_observation_ob_comment')[0]){
  4421. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4422. }
  4423. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4424. }
  4425. });
  4426. U.MD.D.I.selectUser = function () {
  4427. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4428. if (res.value[0].length > 0) {
  4429. US.userInfo = res.value[0][0];
  4430. $(".userName")[0].innerHTML = US.userInfo.username;
  4431. }
  4432. }, [], { "type": "GET", "withCredentials": true });
  4433. }
  4434. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4435. var _userinfo = US.userInfo, //登录用户信息
  4436. _userid = US.userInfo.userid, //登录用户id
  4437. _oid = _userinfo.organizeid,
  4438. _type = US.userInfo.type,
  4439. _org = US.userInfo.org,
  4440. _role = US.userInfo.role,
  4441. _classId = US.userInfo.classid;
  4442. if (_type == 4) {
  4443. tType = 4
  4444. }
  4445. switch (str) {
  4446. case "studyDetailNT": //无终端模式
  4447. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4448. setTimeout(() => {
  4449. U.MD.U.L.login();
  4450. }, 2000);
  4451. } else {
  4452. _formdiv = new U.UF.UI.form(
  4453. "课程详情",
  4454. $$("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 }), {
  4455. "id": "studyDetailNT",
  4456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4457. "onresize": function () { }
  4458. }, {
  4459. closecallback: function () { }
  4460. }, { "style": { "height": "36px" } }).form; //创建窗体
  4461. _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); } }
  4462. break;
  4463. }
  4464. case "studyDetail":
  4465. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4466. setTimeout(() => {
  4467. U.MD.U.L.login();
  4468. }, 2000);
  4469. } else {
  4470. _formdiv = new U.UF.UI.form(
  4471. "课程详情",
  4472. $$("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 }), {
  4473. "id": "studyDetail",
  4474. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4475. "onresize": function () { }
  4476. }, {
  4477. closecallback: function () { }
  4478. }, { "style": { "height": "36px" } }).form; //创建窗体
  4479. _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); } }
  4480. break;
  4481. }
  4482. case "studyDetailTrain":
  4483. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4484. setTimeout(() => {
  4485. U.MD.U.L.login();
  4486. }, 2000);
  4487. } else {
  4488. _formdiv = new U.UF.UI.form(
  4489. "培训详情",
  4490. $$("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 }), {
  4491. "id": "studyDetailTrain",
  4492. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4493. "onresize": function () { }
  4494. }, {
  4495. closecallback: function () { }
  4496. }, { "style": { "height": "36px" } }).form; //创建窗体
  4497. _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); } }
  4498. break;
  4499. }
  4500. case "studyDetailS":
  4501. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4502. setTimeout(() => {
  4503. U.MD.U.L.login();
  4504. }, 2000);
  4505. } else {
  4506. _formdiv = new U.UF.UI.form(
  4507. "项目详情",
  4508. $$("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 }), {
  4509. "id": "studyDetailS",
  4510. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4511. "onresize": function () { }
  4512. }, {
  4513. closecallback: function () { }
  4514. }, { "style": { "height": "36px" } }).form; //创建窗体
  4515. _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); } }
  4516. break;
  4517. }
  4518. case "studyDetailStudio":
  4519. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4520. setTimeout(() => {
  4521. U.MD.U.L.login();
  4522. }, 2000);
  4523. } else {
  4524. _formdiv = new U.UF.UI.form(
  4525. "工作详情",
  4526. $$("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 }), {
  4527. "id": "studyDetailStudio",
  4528. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4529. "onresize": function () { }
  4530. }, {
  4531. closecallback: function () { }
  4532. }, { "style": { "height": "36px" } }).form; //创建窗体
  4533. _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); } }
  4534. break;
  4535. }
  4536. case "studyDetailS5":
  4537. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4538. setTimeout(() => {
  4539. U.MD.U.L.login();
  4540. }, 2000);
  4541. } else {
  4542. _formdiv = new U.UF.UI.form(
  4543. "项目详情",
  4544. $$("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 }), {
  4545. "id": "studyDetailS",
  4546. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4547. "onresize": function () { }
  4548. }, {
  4549. closecallback: function () { }
  4550. }, { "style": { "height": "36px" } }).form; //创建窗体
  4551. _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); } }
  4552. break;
  4553. }
  4554. case "studyDetailGM":
  4555. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4556. setTimeout(() => {
  4557. U.MD.U.L.login();
  4558. }, 2000);
  4559. } else {
  4560. _formdiv = new U.UF.UI.form(
  4561. "课程详情",
  4562. $$("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 }), {
  4563. "id": "studyDetail",
  4564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4565. "onresize": function () { }
  4566. }, {
  4567. closecallback: function () { }
  4568. }, { "style": { "height": "36px" } }).form; //创建窗体
  4569. _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); } }
  4570. break;
  4571. }
  4572. case "hanUrl":
  4573. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4574. setTimeout(() => {
  4575. U.MD.U.L.login();
  4576. }, 2000);
  4577. } else {
  4578. _formdiv = new U.UF.UI.form(
  4579. "汉字宫",
  4580. $$("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" }), {
  4581. "id": "hanUrl",
  4582. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4583. "onresize": function () { }
  4584. }, {
  4585. closecallback: function () { }
  4586. }, { "style": { "height": "36px" } }).form; //创建窗体
  4587. _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); } }
  4588. break;
  4589. }
  4590. case "index":
  4591. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4592. setTimeout(() => {
  4593. U.MD.U.L.login();
  4594. }, 2000);
  4595. } else {
  4596. _formdiv = new U.UF.UI.form(
  4597. "课程中心",
  4598. $$("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 }), {
  4599. "id": "study",
  4600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4601. "onresize": function () { }
  4602. }, {
  4603. closecallback: function () { }
  4604. }, { "style": { "height": "36px" } }).form; //创建窗体
  4605. _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); } }
  4606. break;
  4607. }
  4608. case "dataClass":
  4609. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4610. setTimeout(() => {
  4611. U.MD.U.L.login();
  4612. }, 2000);
  4613. } else {
  4614. _formdiv = new U.UF.UI.form(
  4615. "数据报告",
  4616. $$("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 }), {
  4617. "id": "dataClass",
  4618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4619. "onresize": function () { }
  4620. }, {
  4621. closecallback: function () { }
  4622. }, { "style": { "height": "36px" } }).form; //创建窗体
  4623. _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); } }
  4624. break;
  4625. }
  4626. case "opencCscl":
  4627. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4628. setTimeout(() => {
  4629. U.MD.U.L.login();
  4630. }, 2000);
  4631. } else {
  4632. _formdiv = new U.UF.UI.form(
  4633. "协同建构",
  4634. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4635. "id": "futureClass",
  4636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4637. "onresize": function () { }
  4638. }, {
  4639. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4640. }, { "style": { "height": "36px" } }).form; //创建窗体
  4641. _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); } }
  4642. break;
  4643. }
  4644. case "openCourseUpdate":
  4645. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4646. setTimeout(() => {
  4647. U.MD.U.L.login();
  4648. }, 2000);
  4649. } else {
  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-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4653. "id": "openCourseUpdate",
  4654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4655. "onresize": function () { }
  4656. }, {
  4657. closecallback: function () { }
  4658. }, { "style": { "height": "36px" } }).form; //创建窗体
  4659. break;
  4660. }
  4661. case "openNewCourseUpdate":
  4662. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4663. setTimeout(() => {
  4664. U.MD.U.L.login();
  4665. }, 2000);
  4666. } else {
  4667. _formdiv = new U.UF.UI.form(
  4668. "课程管理",
  4669. $$("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 }), {
  4670. "id": "openCourseUpdate",
  4671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4672. "onresize": function () { }
  4673. }, {
  4674. closecallback: function () { }
  4675. }, { "style": { "height": "36px" } }).form; //创建窗体
  4676. break;
  4677. }
  4678. case "openCourseEUpdate":
  4679. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4680. setTimeout(() => {
  4681. U.MD.U.L.login();
  4682. }, 2000);
  4683. } else {
  4684. _formdiv = new U.UF.UI.form(
  4685. "课程管理",
  4686. $$("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 }), {
  4687. "id": "openCourseUpdate",
  4688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4689. "onresize": function () { }
  4690. }, {
  4691. closecallback: function () { }
  4692. }, { "style": { "height": "36px" } }).form; //创建窗体
  4693. break;
  4694. }
  4695. case "openCourseAiUpdate":
  4696. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4697. setTimeout(() => {
  4698. U.MD.U.L.login();
  4699. }, 2000);
  4700. } else {
  4701. _formdiv = new U.UF.UI.form(
  4702. "课程管理",
  4703. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4704. "id": "openCourseUpdate",
  4705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. break;
  4711. }
  4712. case "openCourseNewUpdate":
  4713. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4714. setTimeout(() => {
  4715. U.MD.U.L.login();
  4716. }, 2000);
  4717. } else {
  4718. _formdiv = new U.UF.UI.form(
  4719. "课程管理",
  4720. $$("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 }), {
  4721. "id": "openCourseUpdate",
  4722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4723. "onresize": function () { }
  4724. }, {
  4725. closecallback: function () { }
  4726. }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. break;
  4728. }
  4729. case "inviteLoginSz":
  4730. _formdiv = new U.UF.UI.form(
  4731. "随机码登录",
  4732. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4733. "id": "loginSz",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. break;
  4740. case "loginSz":
  4741. _formdiv = new U.UF.UI.form(
  4742. "教师登录",
  4743. $$("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" }), {
  4744. "id": "loginSz",
  4745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4746. "onresize": function () { }
  4747. }, {
  4748. closecallback: function () { }
  4749. }, { "style": { "height": "36px" } }).form; //创建窗体
  4750. break;
  4751. case "teacher":
  4752. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4753. setTimeout(() => {
  4754. U.MD.U.L.login();
  4755. }, 2000);
  4756. } else {
  4757. _formdiv = new U.UF.UI.form(
  4758. "教师管理",
  4759. $$("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 }), {
  4760. "id": "teacher",
  4761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4762. "onresize": function () { }
  4763. }, {
  4764. closecallback: function () { }
  4765. }, { "style": { "height": "36px" } }).form; //创建窗体
  4766. break;
  4767. }
  4768. case "dataBoardSZArea":
  4769. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4770. setTimeout(() => {
  4771. U.MD.U.L.login();
  4772. }, 2000);
  4773. } else {
  4774. _formdiv = new U.UF.UI.form(
  4775. "综合数据看板",
  4776. $$("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 }), {
  4777. "id": "dataBoardSZArea",
  4778. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. break;
  4784. }
  4785. case "dataBoardSZCity":
  4786. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4787. setTimeout(() => {
  4788. U.MD.U.L.login();
  4789. }, 2000);
  4790. } else {
  4791. _formdiv = new U.UF.UI.form(
  4792. "综合数据看板",
  4793. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4794. "id": "dataBoardSZCity",
  4795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //创建窗体
  4800. break;
  4801. }
  4802. case "classroom_observation_board":
  4803. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4804. setTimeout(() => {
  4805. U.MD.U.L.login();
  4806. }, 2000);
  4807. } else {
  4808. _formdiv = new U.UF.UI.form(
  4809. "课堂观察",
  4810. $$("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 }), {
  4811. "id": "classroom_observation_board",
  4812. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4813. "onresize": function () { }
  4814. }, {
  4815. closecallback: function () { }
  4816. }, { "style": { "height": "36px" } }).form; //创建窗体
  4817. break;
  4818. }
  4819. case "classroom_observation_ob_comment":
  4820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4821. setTimeout(() => {
  4822. U.MD.U.L.login();
  4823. }, 2000);
  4824. } else {
  4825. _formdiv = new U.UF.UI.form(
  4826. "课堂审核",
  4827. $$("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 }), {
  4828. "id": "classroom_observation_ob_comment",
  4829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. break;
  4835. }
  4836. }
  4837. }
  4838. U.MD.D.I.openApplication = function (str, obj, info) {
  4839. obj = obj || {};
  4840. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4841. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4842. _userinfo = US.userInfo, //登录用户信息
  4843. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4844. _oid = obj.organizeid || _userinfo.organizeid,
  4845. _type = US.userInfo.type,
  4846. _org = US.userInfo.org,
  4847. _role = US.userInfo.role,
  4848. _classId = US.userInfo.classid,
  4849. _TscreenType = 1
  4850. _screenType = 2,
  4851. _SscreenType = 3;
  4852. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4853. return;
  4854. }
  4855. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4856. switch (str) {
  4857. case "studnetProject": //好友打开
  4858. _formdiv = new U.UF.UI.form(
  4859. "我的项目",
  4860. $$("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 }), {
  4861. "id": "studnetProject",
  4862. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. _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); } }
  4868. break;
  4869. case "studentEvaluate": //好友打开
  4870. _formdiv = new U.UF.UI.form(
  4871. "我的评价",
  4872. $$("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 }), {
  4873. "id": "studentEvaluate",
  4874. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4875. "onresize": function () { }
  4876. }, {
  4877. closecallback: function () { }
  4878. }, { "style": { "height": "36px" } }).form; //创建窗体
  4879. _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); } }
  4880. break;
  4881. case "my":
  4882. _formdiv = new U.UF.UI.form(
  4883. "我的资料",
  4884. $$("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 }), {
  4885. "id": "my",
  4886. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4887. "onresize": function () { }
  4888. }, {
  4889. closecallback: function () { }
  4890. }, { "style": { "height": "36px" } }).form; //创建窗体
  4891. _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); } }
  4892. break;
  4893. case "program":
  4894. _formdiv = new U.UF.UI.form(
  4895. "编程平台",
  4896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4897. "id": "program",
  4898. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. _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); } }
  4904. break;
  4905. case "library":
  4906. _formdiv = new U.UF.UI.form(
  4907. "素材库",
  4908. $$("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 }), {
  4909. "id": "library",
  4910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4911. "onresize": function () { }
  4912. }, {
  4913. closecallback: function () { }
  4914. }, { "style": { "height": "36px" } }).form; //创建窗体
  4915. _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); } }
  4916. break;
  4917. case "whiteboard":
  4918. _formdiv = new U.UF.UI.form(
  4919. "电子白板",
  4920. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4921. "id": "whiteboard",
  4922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4923. "onresize": function () { }
  4924. }, {
  4925. closecallback: function () { }
  4926. }, { "style": { "height": "36px" } }).form; //创建窗体
  4927. _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); } }
  4928. break;
  4929. case "investigation":
  4930. _formdiv = new U.UF.UI.form(
  4931. "问卷调查",
  4932. $$("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 }), {
  4933. "id": "investigation",
  4934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. _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); } }
  4940. break;
  4941. case "note":
  4942. _formdiv = new U.UF.UI.form(
  4943. "便签分类",
  4944. $$("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 }), {
  4945. "id": "note",
  4946. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4947. "onresize": function () { }
  4948. }, {
  4949. closecallback: function () { }
  4950. }, { "style": { "height": "36px" } }).form; //创建窗体
  4951. _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); } }
  4952. break;
  4953. // case "score":
  4954. // _formdiv = new U.UF.UI.form(
  4955. // "量规评分",
  4956. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4957. // "id": "score",
  4958. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4959. // "onresize": function() {}
  4960. // }, {
  4961. // closecallback: function() {}
  4962. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4963. // _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); } }
  4964. // break;
  4965. case "mind":
  4966. _formdiv = new U.UF.UI.form(
  4967. "思维导图",
  4968. $$("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"
  4969. "id": "mind",
  4970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. _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); } }
  4976. break;
  4977. case "doc":
  4978. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4982. "id": "doc",
  4983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4984. "onresize": function () { }
  4985. }, {
  4986. closecallback: function () { }
  4987. }, { "style": { "height": "36px" } }).form; //创建窗体
  4988. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4989. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4990. // })
  4991. _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); } }
  4992. break;
  4993. case "studentStudy":
  4994. _formdiv = new U.UF.UI.form(
  4995. "课程中心",
  4996. $$("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
  4997. "id": "studentStudy",
  4998. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4999. "onresize": function () { }
  5000. }, {
  5001. closecallback: function () { }
  5002. }, { "style": { "height": "36px" } }).form; //创建窗体
  5003. _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); } }
  5004. break;
  5005. case "train": //好友打开
  5006. _formdiv = new U.UF.UI.form(
  5007. "训练平台",
  5008. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5009. "id": "train",
  5010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5011. "onresize": function () { }
  5012. }, {
  5013. closecallback: function () { }
  5014. }, { "style": { "height": "36px" } }).form; //创建窗体
  5015. _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); } }
  5016. break;
  5017. case "mindNetwork": //好友打开
  5018. _formdiv = new U.UF.UI.form(
  5019. "思维网格",
  5020. $$("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 }), {
  5021. "id": "mindNetwork",
  5022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. _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); } }
  5028. break;
  5029. case "studentClassRoom": //好友打开
  5030. _formdiv = new U.UF.UI.form(
  5031. "实时课堂",
  5032. $$("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 }), {
  5033. "id": "studentClassRoom",
  5034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. _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); } }
  5040. setTimeout(() => {
  5041. U.UF.F.windowZooming(_formdiv)
  5042. }, 0);
  5043. break;
  5044. }
  5045. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5046. switch (str) {
  5047. case "studnetProject": //好友打开
  5048. _formdiv = new U.UF.UI.form(
  5049. "我的项目",
  5050. $$("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 }), {
  5051. "id": "studnetProject",
  5052. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. _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); } }
  5058. break;
  5059. case "studentEvaluate": //好友打开
  5060. _formdiv = new U.UF.UI.form(
  5061. "我的评价",
  5062. $$("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 }), {
  5063. "id": "studentEvaluate",
  5064. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. _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); } }
  5070. break;
  5071. case "my":
  5072. _formdiv = new U.UF.UI.form(
  5073. "我的资料",
  5074. $$("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 }), {
  5075. "id": "my",
  5076. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _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); } }
  5082. break;
  5083. case "program":
  5084. _formdiv = new U.UF.UI.form(
  5085. "编程平台",
  5086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5087. "id": "program",
  5088. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "library":
  5096. _formdiv = new U.UF.UI.form(
  5097. "素材库",
  5098. $$("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 }), {
  5099. "id": "library",
  5100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "whiteboard":
  5108. _formdiv = new U.UF.UI.form(
  5109. "电子白板",
  5110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5111. "id": "whiteboard",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "investigation":
  5120. _formdiv = new U.UF.UI.form(
  5121. "问卷调查",
  5122. $$("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 }), {
  5123. "id": "investigation",
  5124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. case "note":
  5132. _formdiv = new U.UF.UI.form(
  5133. "便签分类",
  5134. $$("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 }), {
  5135. "id": "note",
  5136. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. break;
  5143. // case "score":
  5144. // _formdiv = new U.UF.UI.form(
  5145. // "量规评分",
  5146. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5147. // "id": "score",
  5148. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5149. // "onresize": function() {}
  5150. // }, {
  5151. // closecallback: function() {}
  5152. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. // _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); } }
  5154. // break;
  5155. case "mind":
  5156. _formdiv = new U.UF.UI.form(
  5157. "思维导图",
  5158. $$("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"
  5159. "id": "mind",
  5160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. case "doc":
  5168. // U.MD.D.I.isRoom();
  5169. _formdiv = new U.UF.UI.form(
  5170. "协同文档",
  5171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5172. "id": "doc",
  5173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5179. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5180. })
  5181. _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); } }
  5182. break;
  5183. case "train": //好友打开
  5184. _formdiv = new U.UF.UI.form(
  5185. "训练平台",
  5186. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5187. "id": "train",
  5188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "studentStudy":
  5196. _formdiv = new U.UF.UI.form(
  5197. "课程中心",
  5198. $$("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
  5199. "id": "studentStudy",
  5200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. _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); } }
  5206. break;
  5207. case "mindNetwork": //好友打开
  5208. _formdiv = new U.UF.UI.form(
  5209. "思维网格",
  5210. $$("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 }), {
  5211. "id": "mindNetwork",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _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); } }
  5218. break;
  5219. case "studentClassRoom": //好友打开
  5220. _formdiv = new U.UF.UI.form(
  5221. "实时课堂",
  5222. $$("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 }), {
  5223. "id": "studentClassRoom",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _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); } }
  5230. setTimeout(() => {
  5231. U.UF.F.windowZooming(_formdiv)
  5232. }, 0);
  5233. break;
  5234. }
  5235. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5236. //选择应用处理
  5237. switch (str) {
  5238. case "project": //好友打开
  5239. _formdiv = new U.UF.UI.form(
  5240. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5241. $$("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 }), {
  5242. "id": "project",
  5243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "student":
  5251. _formdiv = new U.UF.UI.form(
  5252. "学生管理",
  5253. $$("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 }), {
  5254. "id": "student",
  5255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. _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); } }
  5261. break;
  5262. case "evaluate":
  5263. _formdiv = new U.UF.UI.form(
  5264. "学生评价",
  5265. $$("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 }), {
  5266. "id": "evaluate",
  5267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. case "sys":
  5275. _formdiv = new U.UF.UI.form(
  5276. "目标管理",
  5277. $$("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 }), {
  5278. "id": "sys",
  5279. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "courseDesign":
  5287. _formdiv = new U.UF.UI.form(
  5288. "项目设计",
  5289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5290. "id": "courseDesign",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "program":
  5299. _formdiv = new U.UF.UI.form(
  5300. "编程平台",
  5301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5302. "id": "program",
  5303. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. break;
  5310. case "class":
  5311. _formdiv = new U.UF.UI.form(
  5312. "班级管理",
  5313. $$("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 }), {
  5314. "id": "class",
  5315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5316. "onresize": function () { }
  5317. }, {
  5318. closecallback: function () { }
  5319. }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. _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); } }
  5321. break;
  5322. case "Grade":
  5323. _formdiv = new U.UF.UI.form(
  5324. "年级管理",
  5325. $$("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 }), {
  5326. "id": "Grade",
  5327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "teacherOffice":
  5335. _formdiv = new U.UF.UI.form(
  5336. "教研室",
  5337. $$("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 }), {
  5338. "id": "teacherOffice",
  5339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _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); } }
  5345. break;
  5346. case "my":
  5347. _formdiv = new U.UF.UI.form(
  5348. "我的资料",
  5349. $$("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 }), {
  5350. "id": "my",
  5351. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. case "notice":
  5359. _formdiv = new U.UF.UI.form(
  5360. "通知公告",
  5361. $$("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 }), {
  5362. "id": "notice",
  5363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5369. break;
  5370. case "library":
  5371. _formdiv = new U.UF.UI.form(
  5372. "素材库",
  5373. $$("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 }), {
  5374. "id": "library",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5381. break;
  5382. case "whiteboard":
  5383. _formdiv = new U.UF.UI.form(
  5384. "电子白板",
  5385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5386. "id": "whiteboard",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5393. break;
  5394. case "investigation":
  5395. _formdiv = new U.UF.UI.form(
  5396. "问卷调查",
  5397. $$("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 }), {
  5398. "id": "investigation",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5405. break;
  5406. case "note":
  5407. _formdiv = new U.UF.UI.form(
  5408. "便签分类",
  5409. $$("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 }), {
  5410. "id": "note",
  5411. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. _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); } }
  5417. break;
  5418. // case "score":
  5419. // _formdiv = new U.UF.UI.form(
  5420. // "量规评分",
  5421. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5422. // "id": "score",
  5423. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5424. // "onresize": function() {}
  5425. // }, {
  5426. // closecallback: function() {}
  5427. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. // _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); } }
  5429. // break;
  5430. case "mind":
  5431. _formdiv = new U.UF.UI.form(
  5432. "思维导图",
  5433. $$("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"
  5434. "id": "mind",
  5435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "doc":
  5443. // U.MD.D.I.isRoom();
  5444. _formdiv = new U.UF.UI.form(
  5445. "协同文档",
  5446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5447. "id": "doc",
  5448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5449. "onresize": function () { }
  5450. }, {
  5451. closecallback: function () { }
  5452. }, { "style": { "height": "36px" } }).form; //创建窗体
  5453. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5454. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5455. })
  5456. _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); } }
  5457. break;
  5458. case "study":
  5459. _formdiv = new U.UF.UI.form(
  5460. "课程中心",
  5461. $$("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
  5462. "id": "study",
  5463. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //创建窗体
  5468. _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); } }
  5469. break;
  5470. case "mindNetwork": //好友打开
  5471. _formdiv = new U.UF.UI.form(
  5472. "思维网格",
  5473. $$("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 }), {
  5474. "id": "mindNetwork",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "train": //好友打开
  5483. _formdiv = new U.UF.UI.form(
  5484. "训练平台",
  5485. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5486. "id": "mindNetwork",
  5487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "teacherClassRoom": //好友打开
  5495. _formdiv = new U.UF.UI.form(
  5496. "实时课堂",
  5497. $$("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 }), {
  5498. "id": "teacherClassRoom",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. setTimeout(() => {
  5506. U.UF.F.windowZooming(_formdiv)
  5507. }, 0);
  5508. break;
  5509. }
  5510. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5511. switch (str) {
  5512. case "project": //好友打开
  5513. _formdiv = new U.UF.UI.form(
  5514. "课程管理",
  5515. $$("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 }), {
  5516. "id": "project",
  5517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //创建窗体
  5522. _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); } }
  5523. break;
  5524. case "evaluate":
  5525. _formdiv = new U.UF.UI.form(
  5526. "学生评价",
  5527. $$("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 }), {
  5528. "id": "evaluate",
  5529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5530. "onresize": function () { }
  5531. }, {
  5532. closecallback: function () { }
  5533. }, { "style": { "height": "36px" } }).form; //创建窗体
  5534. _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); } }
  5535. break;
  5536. case "notice":
  5537. _formdiv = new U.UF.UI.form(
  5538. "通知公告",
  5539. $$("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 }), {
  5540. "id": "notice",
  5541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "stuLibrary":
  5549. _formdiv = new U.UF.UI.form(
  5550. "学习资料",
  5551. $$("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 }), {
  5552. "id": "stuLibrary",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5559. break;
  5560. case "program":
  5561. _formdiv = new U.UF.UI.form(
  5562. "编程平台",
  5563. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5564. "id": "program",
  5565. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5571. break;
  5572. case "whiteboard":
  5573. _formdiv = new U.UF.UI.form(
  5574. "电子白板",
  5575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5576. "id": "whiteboard",
  5577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5583. break;
  5584. case "investigation":
  5585. _formdiv = new U.UF.UI.form(
  5586. "问卷调查",
  5587. $$("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 }), {
  5588. "id": "investigation",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5595. break;
  5596. case "mind":
  5597. _formdiv = new U.UF.UI.form(
  5598. "思维导图",
  5599. $$("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"
  5600. "id": "mind",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "doc":
  5609. // U.MD.D.I.isRoom();
  5610. _formdiv = new U.UF.UI.form(
  5611. "协同文档",
  5612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5613. "id": "doc",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5620. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5621. })
  5622. _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); } }
  5623. break;
  5624. case "study":
  5625. _formdiv = new U.UF.UI.form(
  5626. "课程中心",
  5627. $$("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
  5628. "id": "study",
  5629. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5630. "onresize": function () { }
  5631. }, {
  5632. closecallback: function () { }
  5633. }, { "style": { "height": "36px" } }).form; //创建窗体
  5634. _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); } }
  5635. break;
  5636. case "mindNetwork": //好友打开
  5637. _formdiv = new U.UF.UI.form(
  5638. "思维网格",
  5639. $$("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 }), {
  5640. "id": "mindNetwork",
  5641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5642. "onresize": function () { }
  5643. }, {
  5644. closecallback: function () { }
  5645. }, { "style": { "height": "36px" } }).form; //创建窗体
  5646. _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); } }
  5647. break;
  5648. case "train": //好友打开
  5649. _formdiv = new U.UF.UI.form(
  5650. "训练平台",
  5651. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5652. "id": "train",
  5653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5654. "onresize": function () { }
  5655. }, {
  5656. closecallback: function () { }
  5657. }, { "style": { "height": "36px" } }).form; //创建窗体
  5658. _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); } }
  5659. break;
  5660. case "sys":
  5661. _formdiv = new U.UF.UI.form(
  5662. "目标管理",
  5663. $$("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 }), {
  5664. "id": "sys",
  5665. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5666. "onresize": function () { }
  5667. }, {
  5668. closecallback: function () { }
  5669. }, { "style": { "height": "36px" } }).form; //创建窗体
  5670. _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); } }
  5671. break;
  5672. case "courseDesign":
  5673. _formdiv = new U.UF.UI.form(
  5674. "项目设计",
  5675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5676. "id": "courseDesign",
  5677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. _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); } }
  5683. break;
  5684. }
  5685. } else if (!_type) {
  5686. switch (str) {
  5687. case "my":
  5688. _formdiv = new U.UF.UI.form(
  5689. "我的资料",
  5690. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5691. "id": "my",
  5692. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5698. break;
  5699. }
  5700. }
  5701. switch (str) {
  5702. // AIprogram2 AI体验 aihub.cocorobo.cn
  5703. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5704. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5705. case "formulaEdi": //公式编辑
  5706. _formdiv = new U.UF.UI.form(
  5707. "公式编辑",
  5708. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5709. "id": "formulaEdi",
  5710. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5711. "onresize": function () { }
  5712. }, {
  5713. closecallback: function () { }
  5714. }, { "style": { "height": "36px" } }).form; //创建窗体
  5715. _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); } }
  5716. break;
  5717. case "molStr": //分子结构
  5718. _formdiv = new U.UF.UI.form(
  5719. "分子结构",
  5720. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5721. "id": "molStr",
  5722. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //创建窗体
  5727. _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); } }
  5728. break;
  5729. case "timeAxis": //时间轴
  5730. _formdiv = new U.UF.UI.form(
  5731. "时间轴",
  5732. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5733. "id": "timeAxis",
  5734. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. case "AIprogram2": //AI体验
  5742. _formdiv = new U.UF.UI.form(
  5743. "AI体验",
  5744. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5745. "id": "AIprogram2",
  5746. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _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); } }
  5752. break;
  5753. case "Pythonprogram": //python编程
  5754. _formdiv = new U.UF.UI.form(
  5755. "Python编程",
  5756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5757. "id": "Pythonprogram",
  5758. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _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); } }
  5764. break;
  5765. case "AIprogram": //ai编程
  5766. _formdiv = new U.UF.UI.form(
  5767. "AI编程平台",
  5768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5769. "id": "AIprogram",
  5770. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _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); } }
  5776. break;
  5777. case "CocoPi": //CocoPi
  5778. _formdiv = new U.UF.UI.form(
  5779. "CocoPi",
  5780. $$("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" }), {
  5781. "id": "CocoPi",
  5782. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5783. "onresize": function () { }
  5784. }, {
  5785. closecallback: function () { }
  5786. }, { "style": { "height": "36px" } }).form; //创建窗体
  5787. _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); } }
  5788. break;
  5789. case "Wood": //Wood
  5790. _formdiv = new U.UF.UI.form(
  5791. "海龟编程",
  5792. $$("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/" }), {
  5793. "id": "Wood",
  5794. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5800. break;
  5801. case "car": //模拟驾驶
  5802. _formdiv = new U.UF.UI.form(
  5803. "模拟驾驶",
  5804. $$("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/" }), {
  5805. "id": "car",
  5806. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5812. break;
  5813. case "lineSearch": //路径搜索
  5814. _formdiv = new U.UF.UI.form(
  5815. "路径搜索",
  5816. $$("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/" }), {
  5817. "id": "lineSearch",
  5818. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //创建窗体
  5823. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5824. break;
  5825. case "deepLearning": //深度学习
  5826. _formdiv = new U.UF.UI.form(
  5827. "深度学习",
  5828. $$("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/#" }), {
  5829. "id": "deepLearning",
  5830. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5831. "onresize": function () { }
  5832. }, {
  5833. closecallback: function () { }
  5834. }, { "style": { "height": "36px" } }).form; //创建窗体
  5835. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5836. break;
  5837. case "allHistory": //深度学习
  5838. _formdiv = new U.UF.UI.form(
  5839. "全历史",
  5840. $$("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/" }), {
  5841. "id": "allHistory",
  5842. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5848. break;
  5849. case "chatPDF": //ai编程
  5850. _formdiv = new U.UF.UI.form(
  5851. "chatPDF",
  5852. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5853. "id": "chatPDF",
  5854. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5860. break;
  5861. case "resources": //国家教育
  5862. _formdiv = new U.UF.UI.form(
  5863. "国家教育",
  5864. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5865. "id": "resources",
  5866. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5872. break;
  5873. case "codeEdit": //源码编辑
  5874. _formdiv = new U.UF.UI.form(
  5875. "源码编辑",
  5876. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5877. "id": "codeEdit",
  5878. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5884. break; //
  5885. case "MindMap": //MindMap
  5886. _formdiv = new U.UF.UI.form(
  5887. "MindMap",
  5888. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5889. "id": "MindMap",
  5890. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _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); } }
  5896. break;
  5897. case "netWorkPanel": //netWorkPanel
  5898. _formdiv = new U.UF.UI.form(
  5899. "netWorkPanel",
  5900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5901. "id": "netWorkPanel",
  5902. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _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); } }
  5908. break;
  5909. case "GeoGebra": //GeoGebra
  5910. _formdiv = new U.UF.UI.form(
  5911. "GeoGebra",
  5912. $$("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" }), {
  5913. "id": "GeoGebra",
  5914. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5915. "onresize": function () { }
  5916. }, {
  5917. closecallback: function () { }
  5918. }, { "style": { "height": "36px" } }).form; //创建窗体
  5919. _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); } }
  5920. break;
  5921. case "translation": //翻译
  5922. _formdiv = new U.UF.UI.form(
  5923. "翻译",
  5924. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5925. "id": "translation",
  5926. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. _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); } }
  5932. break;
  5933. case "mohe": //魔盒
  5934. _formdiv = new U.UF.UI.form(
  5935. "魔盒识字",
  5936. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5937. "id": "mohe",
  5938. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5939. "onresize": function () { }
  5940. }, {
  5941. closecallback: function () { }
  5942. }, { "style": { "height": "36px" } }).form; //创建窗体
  5943. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5944. break;
  5945. case "24game": //24点
  5946. _formdiv = new U.UF.UI.form(
  5947. "24点",
  5948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5949. "id": "24game",
  5950. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5956. break;
  5957. case "case":
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程进展",
  5960. $$("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 }), {
  5961. "id": "case",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5968. break;
  5969. case "snf":
  5970. _formdiv = new U.UF.UI.form(
  5971. "赛诺梵",
  5972. $$("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" }), {
  5973. "id": "snf",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5980. break;
  5981. case "hanFamily":
  5982. _formdiv = new U.UF.UI.form(
  5983. "汉字家族",
  5984. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5985. "id": "hanFamily",
  5986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5992. break;
  5993. case "hanClassics":
  5994. _formdiv = new U.UF.UI.form(
  5995. "国学经典",
  5996. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5997. "id": "hanClassics",
  5998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6004. break;
  6005. case "hanTraining":
  6006. _formdiv = new U.UF.UI.form(
  6007. "笔画训练",
  6008. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6009. "id": "hanTraining",
  6010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6016. break;
  6017. case "hanClass":
  6018. _formdiv = new U.UF.UI.form(
  6019. "书法课堂",
  6020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6021. "id": "hanClass",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6028. break;
  6029. case "han":
  6030. _formdiv = new U.UF.UI.form(
  6031. "汉字宫",
  6032. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6033. "id": "han",
  6034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6040. break;
  6041. case "projectGM": //课程管理
  6042. _formdiv = new U.UF.UI.form(
  6043. "课程管理",
  6044. $$("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 }), {
  6045. "id": "projectGM",
  6046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6052. break;
  6053. case "studyGM": //课程中心
  6054. _formdiv = new U.UF.UI.form(
  6055. "课程中心",
  6056. $$("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
  6057. "id": "study",
  6058. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6064. break;
  6065. // studentGM
  6066. case "studentGM": //学生管理
  6067. _formdiv = new U.UF.UI.form(
  6068. "学生管理",
  6069. $$("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 }), {
  6070. "id": "studentGM",
  6071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6077. break;
  6078. case "evaluateGM": //学生评价
  6079. _formdiv = new U.UF.UI.form(
  6080. "学生评价",
  6081. $$("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 }), {
  6082. "id": "evaluateGM",
  6083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6089. break;
  6090. // classGM
  6091. case "classGM": //班级管理
  6092. _formdiv = new U.UF.UI.form(
  6093. "班级管理",
  6094. $$("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 }), {
  6095. "id": "classGM",
  6096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6097. "onresize": function () { }
  6098. }, {
  6099. closecallback: function () { }
  6100. }, { "style": { "height": "36px" } }).form; //创建窗体
  6101. _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); } }
  6102. break;
  6103. // dataGM
  6104. case "dataGM":
  6105. _formdiv = new U.UF.UI.form(
  6106. "我的资料",
  6107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6108. "id": "dataGM",
  6109. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6115. break;
  6116. // caseGM
  6117. case "caseGM": //课程进展
  6118. _formdiv = new U.UF.UI.form(
  6119. "课程进展",
  6120. $$("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 }), {
  6121. "id": "caseGM",
  6122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. // meterialGM
  6130. case "meterialGM": //素材库
  6131. _formdiv = new U.UF.UI.form(
  6132. "素材库",
  6133. $$("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 }), {
  6134. "id": "meterialGM",
  6135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6141. break;
  6142. // evaluateSGM
  6143. case "evaluateSGM": //我的评价
  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-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6147. "id": "evaluateSGM",
  6148. "style": { "width": "70%", "height": "90%", "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/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6154. break;
  6155. case "jupyter": //jupyter
  6156. _formdiv = new U.UF.UI.form(
  6157. "jupyter",
  6158. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6159. "id": "jupyter",
  6160. "style": { "width": "90%", "height": "90%", "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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6166. break;
  6167. case "number": //数字实验室
  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": "https://cocorobo.cn/cloud/iot/events" }), {
  6171. "id": "number",
  6172. "style": { "width": "90%", "height": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6178. break;
  6179. case "studentCourse": //项目管理 学生
  6180. _formdiv = new U.UF.UI.form(
  6181. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6182. $$("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 }), {
  6183. "id": "studentCourse",
  6184. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6190. break;
  6191. case "studentCourseS": //项目管理 老师
  6192. _formdiv = new U.UF.UI.form(
  6193. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6194. $$("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 }), {
  6195. "id": "studentCourseS",
  6196. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6202. break;
  6203. case "studentIndex": //项目中心
  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": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6207. "id": "studentIndex",
  6208. "style": { "width": "90%", "height": "90%", "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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6214. break;
  6215. case "CaseDesignS":
  6216. _formdiv = new U.UF.UI.form(
  6217. "项目进展",
  6218. $$("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 }), {
  6219. "id": "case",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "tcStudent": //腾讯学生管理
  6228. _formdiv = new U.UF.UI.form(
  6229. "学生管理",
  6230. $$("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 }), {
  6231. "id": "tcStudent",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "tcSchool": //腾讯学校管理
  6240. _formdiv = new U.UF.UI.form(
  6241. "学校管理",
  6242. $$("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 }), {
  6243. "id": "tcSchool",
  6244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break;
  6251. case "tcTeacher": //腾讯学校管理
  6252. _formdiv = new U.UF.UI.form(
  6253. "教师管理",
  6254. $$("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 }), {
  6255. "id": "tcTeacher",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "teacher":
  6264. _formdiv = new U.UF.UI.form(
  6265. "教师管理",
  6266. $$("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 }), {
  6267. "id": "teacher",
  6268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "tcData": //腾讯我的资料
  6276. _formdiv = new U.UF.UI.form(
  6277. "我的资料",
  6278. $$("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 }), {
  6279. "id": "tcData",
  6280. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "tcNotice": //腾讯消息通知
  6288. _formdiv = new U.UF.UI.form(
  6289. "消息通知",
  6290. $$("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 }), {
  6291. "id": "tcNotice",
  6292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _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); } }
  6298. break;
  6299. case "myReport": //好友打开
  6300. _formdiv = new U.UF.UI.form(
  6301. "我的评价",
  6302. $$("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 }), {
  6303. "id": "myReport",
  6304. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _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); } }
  6310. break;
  6311. case "learnAna": //好友打开
  6312. _formdiv = new U.UF.UI.form(
  6313. "学习分析",
  6314. $$("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 }), {
  6315. "id": "learnAna",
  6316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. break;
  6323. case "AIChat": //AI共创
  6324. _formdiv = new U.UF.UI.form(
  6325. "AI共创",
  6326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6327. "id": "AIChat",
  6328. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. istop: true,
  6332. closecallback: function () { $("#aichat_icon").remove(); },
  6333. narrowcallback: function () {
  6334. if (!$("#aichat_icon")[0]) {
  6335. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6336. }
  6337. },
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. case "ainew": //AI共创
  6342. _formdiv = new U.UF.UI.form(
  6343. "AI协同",
  6344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6345. "id": "ainew",
  6346. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "gpt4": //gpt4
  6354. _formdiv = new U.UF.UI.form(
  6355. "AI助手",
  6356. $$("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 }), {
  6357. "id": "gpt4",
  6358. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. case "aigpt": //gpt4
  6366. _formdiv = new U.UF.UI.form(
  6367. "AI助手+",
  6368. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6369. "id": "aigpt",
  6370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () {
  6374. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6375. }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6379. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6380. })
  6381. break;
  6382. case "aiKnowledge": //aiKnowledge
  6383. _formdiv = new U.UF.UI.form(
  6384. "知识建构",
  6385. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6386. "id": "aiKnowledge",
  6387. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6388. "onresize": function () { }
  6389. }, {
  6390. closecallback: function () { }
  6391. }, { "style": { "height": "36px" } }).form; //创建窗体
  6392. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6393. break;
  6394. case "futureClass": //AI共创
  6395. _formdiv = new U.UF.UI.form(
  6396. "协同建构",
  6397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6398. "id": "synergyCourse",
  6399. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () {
  6403. $("iframe", _formdiv)[0].contentWindow.loginout();
  6404. }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _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); } }
  6407. break;
  6408. case "aiagent": //ai agent
  6409. _formdiv = new U.UF.UI.form(
  6410. "AI Agent",
  6411. $$("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" }), {
  6412. "id": "AIAgent",
  6413. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _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); } }
  6419. break;
  6420. case "dataBoard": //数据看板
  6421. _formdiv = new U.UF.UI.form(
  6422. "数据看板",
  6423. $$("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 }), {
  6424. "id": "dataBoard",
  6425. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6431. break;
  6432. case "dataBoardSies": //数据融合
  6433. _formdiv = new U.UF.UI.form(
  6434. "数据融合",
  6435. $$("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 }), {
  6436. "id": "dataBoardSies",
  6437. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6443. break;
  6444. case "dataBoardNew": //数据看板
  6445. _formdiv = new U.UF.UI.form(
  6446. "综合看板",
  6447. $$("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 }), {
  6448. "id": "dataBoardNew",
  6449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6455. break;
  6456. case "dataBoardTest": //数据看板
  6457. _formdiv = new U.UF.UI.form(
  6458. "评测看板",
  6459. $$("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 }), {
  6460. "id": "dataBoardTest",
  6461. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6467. break;
  6468. case "AIAnalyse": //AI共创
  6469. _formdiv = new U.UF.UI.form(
  6470. "AI分析",
  6471. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6472. "id": "AIAnalyse",
  6473. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6479. break;
  6480. case "studioCourse": //AI共创
  6481. _formdiv = new U.UF.UI.form(
  6482. "工作管理",
  6483. $$("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 }), {
  6484. "id": "studioCourse",
  6485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6491. break;
  6492. case "studioIndex": //AI共创
  6493. _formdiv = new U.UF.UI.form(
  6494. "工作中心",
  6495. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6496. "id": "studioIndex",
  6497. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6503. break;
  6504. case "source":
  6505. _formdiv = new U.UF.UI.form(
  6506. "教学资源",
  6507. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6508. "id": "source",
  6509. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6515. break;
  6516. case "testTeacher":
  6517. _formdiv = new U.UF.UI.form(
  6518. "教师管理",
  6519. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6520. "id": "testTeacher",
  6521. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6527. break;
  6528. case "testStudent":
  6529. _formdiv = new U.UF.UI.form(
  6530. "教师中心",
  6531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6532. "id": "testStudent",
  6533. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6539. break;
  6540. case "testTeacherSies":
  6541. _formdiv = new U.UF.UI.form(
  6542. "教师管理",
  6543. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6544. "id": "testTeacherSies",
  6545. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6551. break;
  6552. case "testStudentSies":
  6553. _formdiv = new U.UF.UI.form(
  6554. "教师中心",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6556. "id": "testStudentSies",
  6557. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6563. break;
  6564. case "ytpbl": //消息通知
  6565. _formdiv = new U.UF.UI.form(
  6566. "案例征集",
  6567. $$("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 }), {
  6568. "id": "ytpbl",
  6569. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6575. // 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");
  6576. break;
  6577. case "aiCourseResource": //人工智能窗体
  6578. _formdiv = new U.UF.UI.form(
  6579. false,
  6580. $$("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 }), {
  6581. "id": "aiCourseResource",
  6582. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6583. "onresize": function () { },
  6584. "isdrag": false,
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _taskbar = ''
  6589. break;
  6590. case "szdjgCocooroboX": //图形化编程
  6591. _formdiv = new U.UF.UI.form(
  6592. "图形化编程",
  6593. $$("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" }), {
  6594. "id": "szdjgCocooroboX",
  6595. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _taskbar = ''
  6601. break;
  6602. case "szdjgPython": //python编程
  6603. _formdiv = new U.UF.UI.form(
  6604. "Python编程",
  6605. $$("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" }), {
  6606. "id": "szdjgPython",
  6607. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _taskbar = ''
  6613. break;
  6614. case "Record":
  6615. _formdiv = new U.UF.UI.form(
  6616. "观察记录",
  6617. $$("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 }), {
  6618. "id": "Record",
  6619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "aigptCourse":
  6627. _formdiv = new U.UF.UI.form(
  6628. "AI智能体",
  6629. $$("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' }), {
  6630. "id": "aigptCourse",
  6631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _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); } }
  6637. break;
  6638. case "classroomObservation":
  6639. _formdiv = new U.UF.UI.form(
  6640. "课堂观察",
  6641. $$("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 }), {
  6642. "id": "classroomObservation",
  6643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. break;
  6650. case "pblCourse":
  6651. _formdiv = new U.UF.UI.form(
  6652. "学生PBL",
  6653. $$("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 }), {
  6654. "id": "pblCourse",
  6655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. }
  6663. //U.MD.D.I.openClick(str);
  6664. //如果有任务栏信息
  6665. if (_taskbar) {
  6666. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6667. }
  6668. }
  6669. // U.MD.D.I.openClick = function(str){
  6670. // var click = '';
  6671. // switch(str){
  6672. // case 'friend':
  6673. // click = '我的好友';
  6674. // break;
  6675. // case 'domain':
  6676. // click = '域名管理';
  6677. // break;
  6678. // case 'disk':
  6679. // click = '我的云盘';
  6680. // break;
  6681. // case 'word':
  6682. // click = 'Word';
  6683. // break;
  6684. // case 'excel':
  6685. // click = 'Execl';
  6686. // break;
  6687. // case 'txt':
  6688. // click = '文本文件';
  6689. // break;
  6690. // case 'lookupFriend':
  6691. // click = '查找好友';
  6692. // break;
  6693. // case 'ftp':
  6694. // click = 'FTP';
  6695. // break;
  6696. // case 'group':
  6697. // click = '群组';
  6698. // break;
  6699. // case 'set':
  6700. // click = '我的设置';
  6701. // break;
  6702. // case 'systemSet':
  6703. // click = '系统设置';
  6704. // break;
  6705. // case 'boomYun':
  6706. // click = '互联办公';
  6707. // break;
  6708. // case 'xz':
  6709. // click = '云端下载';
  6710. // break;
  6711. // case 'client':
  6712. // click = '有思浏览器';
  6713. // break;
  6714. // case 'backEndProgramming':
  6715. // click = '在线后台编程';
  6716. // break;
  6717. // case 'frontEndProgramming':
  6718. // click = '在线前端编程';
  6719. // break;
  6720. // default: break;
  6721. // }
  6722. // if(U.MD.D.I.Ip && click){
  6723. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6724. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6725. // })
  6726. // }
  6727. // }
  6728. /**
  6729. *函数作用:ajax简易函数,使用post格式
  6730. *@param url {data} 后台地址
  6731. *@param data {data} 参数json
  6732. *@param fn {data} 回调函数
  6733. *
  6734. */
  6735. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6736. // var xhr = new XMLHttpRequest();
  6737. // xhr.open("GET",url,true);
  6738. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6739. // xhr.onreadystatechange = function(){
  6740. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6741. // fn.call(this,xhr.responseText);
  6742. // }
  6743. // };
  6744. // xhr.send();
  6745. // }
  6746. /*判断是否是内网IP*/
  6747. // U.MD.D.I.isInnerIPFn = function(str){
  6748. // var curPageUrl = str;
  6749. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6750. // curPageUrl =curPageUrl.replace(reg1,'');
  6751. // // console.log('curPageUrl-1 '+curPageUrl);
  6752. // var reg2 = /\:+/g;//替换冒号为一点
  6753. // curPageUrl =curPageUrl.replace(reg2,'.');
  6754. // // console.log('curPageUrl-2 '+curPageUrl);
  6755. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6756. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6757. // if(curPageUrl[2] != '16'){
  6758. // return ipAddress;
  6759. // }else{
  6760. // return false;
  6761. // }
  6762. // }
  6763. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6764. // //compatibility for firefox and chrome
  6765. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6766. // var pc = new myPeerConnection({
  6767. // iceServers: []
  6768. // }),
  6769. // noop = function() {},
  6770. // localIPs = {},
  6771. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6772. // key;
  6773. // function iterateIP(ip) {
  6774. // if (!localIPs[ip]) onNewIP(ip);
  6775. // localIPs[ip] = true;
  6776. // }
  6777. // //create a bogus data channel
  6778. // pc.createDataChannel("");
  6779. // // create offer and set local description
  6780. // pc.createOffer().then(function(sdp) {
  6781. // sdp.sdp.split('\n').forEach(function(line) {
  6782. // if (line.indexOf('candidate') < 0) return;
  6783. // line.match(ipRegex).forEach(iterateIP);
  6784. // });
  6785. // pc.setLocalDescription(sdp, noop, noop);
  6786. // }).catch(function(reason) {
  6787. // // An error occurred, so handle the failure to connect
  6788. // });
  6789. // //sten for candidate events
  6790. // pc.onicecandidate = function(ice) {
  6791. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6792. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6793. // };
  6794. // }
  6795. // U.MD.D.I.getUserIpBool = function(callback){
  6796. // U.MD.D.I.getUserIP(function(ip){
  6797. // alert("Got IP! :" + ip);
  6798. // });
  6799. //}
  6800. //#endregion
  6801. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6802. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6803. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6804. _userinfo = US.userInfo, //登录用户信息
  6805. _userid = US.userInfo.userid //登录用户id
  6806. let _iframe;
  6807. let _cid = cid,
  6808. _stage = stage,
  6809. _task = task,
  6810. _tool = tool;
  6811. var _jie = $$("div", {
  6812. "style": {
  6813. "position": "absolute",
  6814. "bottom": "50px",
  6815. "right": "50px",
  6816. "zIndex": "9999",
  6817. "backgroundColor": "#2268bc",
  6818. "color": "#fff",
  6819. "padding": "12px 20px",
  6820. "cursor": "pointer",
  6821. "borderRadius": "4px",
  6822. },
  6823. "innerHTML": "提交作业"
  6824. })
  6825. let aTool = ''
  6826. let _loading = document.createElement('div')
  6827. _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;"
  6828. // _loading.id = "";
  6829. let _lchild = document.createElement('div')
  6830. let _limg = document.createElement('img')
  6831. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6832. _limg.style = "width: 26px;margin-right: 10px;"
  6833. _lchild.appendChild(_limg)
  6834. let _lspan = document.createElement('span')
  6835. _lspan.innerHTML = "上传中..."
  6836. _lchild.appendChild(_lspan)
  6837. _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%);"
  6838. _loading.appendChild(_lchild)
  6839. var _box = $$('div', {
  6840. "style": {
  6841. "position": "relative",
  6842. "width": "100%",
  6843. "height": "100%",
  6844. },
  6845. })
  6846. _box.appendChild(_loading)
  6847. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6848. switch (str) {
  6849. case "whiteboard":
  6850. aTool = 1;
  6851. _iframe = $$("iframe", {
  6852. "frameborder": "no",
  6853. "border": "0",
  6854. "scrolling ": "no",
  6855. "style": {
  6856. "cssText": "border:0;width:100%;height:100%"
  6857. },
  6858. "src": "https://beta.iwb.cocorobo.cn/"
  6859. })
  6860. _box.appendChild(_iframe);
  6861. _box.appendChild(_jie);
  6862. _formdiv = new U.UF.UI.form(
  6863. "电子白板",
  6864. _box, {
  6865. "id": "whiteboard" + cid + stage + task + tool,
  6866. "style": {
  6867. "width": "90%",
  6868. "height": "90%",
  6869. "overflow": 'hidden'
  6870. },
  6871. "onresize": function () { }
  6872. }, {
  6873. closecallback: function () { }
  6874. }, {
  6875. "style": {
  6876. "height": "36px"
  6877. }
  6878. }).form; //创建窗体
  6879. _taskbar = {
  6880. "id": str + _formdiv.id,
  6881. "style": {
  6882. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6883. },
  6884. "name": "电子白板",
  6885. "forms": _formdiv,
  6886. "click": function () {
  6887. U.MD.D.I.openApplication(str, obj, info);
  6888. }
  6889. }
  6890. break;
  6891. case "mind":
  6892. aTool = 3;
  6893. _iframe = $$("iframe", {
  6894. "frameborder": "no",
  6895. "border": "0",
  6896. "scrolling ": "no",
  6897. "style": {
  6898. "cssText": "border:0;width:100%;height:100%"
  6899. },
  6900. "src": "/kityminder-editor/dist/index.html"
  6901. })
  6902. _box.appendChild(_iframe);
  6903. _box.appendChild(_jie);
  6904. _formdiv = new U.UF.UI.form(
  6905. "思维导图",
  6906. _box, { //"/jsmind/example/demo.html"
  6907. "id": "mind" + cid + stage + task + tool,
  6908. "style": {
  6909. "width": "90%",
  6910. "height": "90%",
  6911. "overflow": 'hidden'
  6912. },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, {
  6917. "style": {
  6918. "height": "36px"
  6919. }
  6920. }).form; //创建窗体
  6921. _taskbar = {
  6922. "id": str + _formdiv.id,
  6923. "style": {
  6924. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6925. },
  6926. "name": "思维导图",
  6927. "forms": _formdiv,
  6928. "click": function () {
  6929. U.MD.D.I.openApplication(str, obj, info);
  6930. }
  6931. }
  6932. break;
  6933. case "MindMap":
  6934. aTool = 3;
  6935. _iframe = $$("iframe", {
  6936. "frameborder": "no",
  6937. "border": "0",
  6938. "scrolling ": "no",
  6939. "style": {
  6940. "cssText": "border:0;width:100%;height:100%"
  6941. },
  6942. "src": "//cloud.cocorobo.cn/mind/"
  6943. })
  6944. _box.appendChild(_iframe);
  6945. _box.appendChild(_jie);
  6946. _formdiv = new U.UF.UI.form(
  6947. "思维导图",
  6948. _box, { //"/jsmind/example/demo.html"
  6949. "id": "mind" + cid + stage + task + tool,
  6950. "style": {
  6951. "width": "90%",
  6952. "height": "90%",
  6953. "overflow": 'hidden'
  6954. },
  6955. "onresize": function () { }
  6956. }, {
  6957. closecallback: function () { }
  6958. }, {
  6959. "style": {
  6960. "height": "36px"
  6961. }
  6962. }).form; //创建窗体
  6963. _taskbar = {
  6964. "id": str + _formdiv.id,
  6965. "style": {
  6966. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6967. },
  6968. "name": "思维导图",
  6969. "forms": _formdiv,
  6970. "click": function () {
  6971. U.MD.D.I.openApplication(str, obj, info);
  6972. }
  6973. }
  6974. break;
  6975. case "doc":
  6976. aTool = 6;
  6977. _iframe = $$("iframe", {
  6978. "frameborder": "no",
  6979. "border": "0",
  6980. "scrolling ": "no",
  6981. "style": {
  6982. "cssText": "border:0;width:100%;height:100%"
  6983. },
  6984. "src": "/Office/Word/WordEditArea.htm"
  6985. })
  6986. _box.appendChild(_iframe);
  6987. _box.appendChild(_jie);
  6988. _formdiv = new U.UF.UI.form(
  6989. "协同文档",
  6990. _box, {
  6991. "id": "doc" + cid + stage + task + tool,
  6992. "style": {
  6993. "width": "90%",
  6994. "height": "90%",
  6995. "overflow": 'hidden'
  6996. },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, {
  7001. "style": {
  7002. "height": "36px"
  7003. }
  7004. }).form; //创建窗体
  7005. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7006. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7007. })
  7008. _taskbar = {
  7009. "id": str + _formdiv.id,
  7010. "style": {
  7011. "backgroundImage": "url(/img/icon/doc.png)"
  7012. },
  7013. "name": "协同文档",
  7014. "forms": _formdiv,
  7015. "click": function () {
  7016. U.MD.D.I.openApplication(str, obj, info);
  7017. }
  7018. }
  7019. break;
  7020. case "mindNetwork": //好友打开
  7021. aTool = 7;
  7022. _iframe = $$("iframe", {
  7023. "webkitallowfullscreen": "",
  7024. "mozallowfullscreen": "",
  7025. "allowfullscreen": "",
  7026. "frameborder": "no",
  7027. "border": "0",
  7028. "scrolling ": "no",
  7029. "style": {
  7030. "cssText": "border:0; width:100%; height:100%;"
  7031. },
  7032. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7033. })
  7034. _box.appendChild(_iframe);
  7035. _box.appendChild(_jie);
  7036. _formdiv = new U.UF.UI.form(
  7037. "思维网格",
  7038. _box, {
  7039. "id": "mindNetwork" + cid + stage + task + tool,
  7040. "style": {
  7041. "width": "90%",
  7042. "height": "90%",
  7043. "overflow": 'hidden'
  7044. },
  7045. "onresize": function () { }
  7046. }, {
  7047. closecallback: function () { }
  7048. }, {
  7049. "style": {
  7050. "height": "36px"
  7051. }
  7052. }).form; //创建窗体
  7053. _taskbar = {
  7054. "id": str + _formdiv.id,
  7055. "style": {
  7056. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7057. },
  7058. "name": "思维网格",
  7059. "forms": _formdiv,
  7060. "click": function () {
  7061. U.MD.D.I.openApplication(str, obj, info);
  7062. }
  7063. }
  7064. break;
  7065. case "courseDesign":
  7066. _iframe = $$("iframe", {
  7067. "webkitallowfullscreen": "",
  7068. "mozallowfullscreen": "",
  7069. "allowfullscreen": "",
  7070. "frameborder": "no",
  7071. "border": "0",
  7072. "scrolling ": "no",
  7073. "style": {
  7074. "cssText": "border:0; width:100%; height:100%;"
  7075. },
  7076. "src": "/course-design-vue"
  7077. })
  7078. _box.appendChild(_iframe);
  7079. _box.appendChild(_jie);
  7080. _formdiv = new U.UF.UI.form(
  7081. "项目设计",
  7082. _box, {
  7083. "id": "courseDesign" + cid + stage + task + tool,
  7084. "style": {
  7085. "width": "90%",
  7086. "height": "90%",
  7087. "overflow": 'hidden'
  7088. },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, {
  7093. "style": {
  7094. "height": "36px"
  7095. }
  7096. }).form; //创建窗体
  7097. _taskbar = {
  7098. "id": str + _formdiv.id,
  7099. "style": {
  7100. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7101. },
  7102. "name": "项目设计",
  7103. "forms": _formdiv,
  7104. "click": function () {
  7105. U.MD.D.I.openApplication(str, obj, info);
  7106. }
  7107. }
  7108. break;
  7109. }
  7110. const script1 = document.createElement("script");
  7111. script1.type = "text/javascript";
  7112. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7113. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7114. const script2 = document.createElement("script");
  7115. script2.type = "text/javascript";
  7116. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7117. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7118. const script3 = document.createElement("script");
  7119. script3.type = "text/javascript";
  7120. script3.charset = "UTF-8";
  7121. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7122. const script4 = document.createElement("script");
  7123. script4.type = "text/javascript";
  7124. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7125. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7126. if (_iframe) {
  7127. if (str == 'doc') {
  7128. _iframe = _formdiv.querySelector('iframe')
  7129. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7130. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7131. _iframe.contentWindow.document.body.appendChild(script1);
  7132. _iframe.contentWindow.document.body.appendChild(script2);
  7133. // _iframe.contentWindow.document.body.appendChild(script3);
  7134. _iframe.contentWindow.document.body.appendChild(script4);
  7135. })
  7136. if (onloadListener) {
  7137. _iframe.contentDocument.location.reload()
  7138. } else {
  7139. _iframe.contentDocument.location.reload()
  7140. }
  7141. } else if (str == 'courseDesign') {
  7142. U.UF.DL.iframeLoad(_iframe, function () {
  7143. // _iframe.contentWindow.U.MD.O.W.load();
  7144. // _iframe.contentWindow.document.body.appendChild(script1);
  7145. _iframe.contentWindow.document.body.appendChild(script2);
  7146. _iframe.contentWindow.document.body.appendChild(script4);
  7147. })
  7148. } else if (str == 'mind') {
  7149. _iframe = _formdiv.querySelector('iframe')
  7150. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7151. //
  7152. _iframe.contentWindow.document.body.appendChild(script1);
  7153. _iframe.contentWindow.document.body.appendChild(script2);
  7154. _iframe.contentWindow.document.body.appendChild(script4);
  7155. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7156. })
  7157. if (onloadListener) {
  7158. _iframe.contentDocument.location.reload()
  7159. } else {
  7160. _iframe.contentDocument.location.reload()
  7161. }
  7162. } else if (str == 'whiteboard') {
  7163. _iframe = _formdiv.querySelector('iframe')
  7164. let onloadListener = _iframe.onload = () => {
  7165. _iframe.contentWindow.document.body.appendChild(script1);
  7166. _iframe.contentWindow.document.body.appendChild(script2);
  7167. _iframe.contentWindow.document.body.appendChild(script4);
  7168. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7169. };
  7170. // if (onloadListener) {
  7171. // try {
  7172. // _iframe.src += "?cocorobo="+new Date().getTime()
  7173. // _iframe.contentWindow.document.location.reload()
  7174. // } catch (error) {
  7175. // }
  7176. // } else {
  7177. // _iframe.contentDocument.location.reload()
  7178. // }
  7179. } else {
  7180. _iframe.onload = () => {
  7181. _iframe.contentWindow.document.body.appendChild(script1);
  7182. _iframe.contentWindow.document.body.appendChild(script2);
  7183. // _iframe.contentWindow.document.body.appendChild(script3);
  7184. _iframe.contentWindow.document.body.appendChild(script4);
  7185. };
  7186. }
  7187. _jie.onclick = async () => {
  7188. let text = ''
  7189. if (aTool == 1) {
  7190. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7191. } else if (aTool == 6) {
  7192. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7193. } else if (aTool == 3) {
  7194. text = await U.MD.D.I.getEditorContent(_iframe);
  7195. }
  7196. _loading.style.display = 'flex'
  7197. console.log(_loading);
  7198. var _ajs = _iframe.contentWindow.document.createElement("script");
  7199. _ajs.type = "text/javascript";
  7200. _ajs.innerHTML =
  7201. // 'console.log(' + _loading + ');\n' +
  7202. 'var _js = document.createElement("script");\n' +
  7203. '_js.type="text/javascript";\n' +
  7204. '_js.charset="UTF-8";\n' +
  7205. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7206. "_js.onload = function(){\n" +
  7207. ' var a = document.getElementsByTagName("img")\n' +
  7208. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7209. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7210. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7211. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7212. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7213. "beforeUpload_shishi(file," +
  7214. "'" +
  7215. _userid +
  7216. "'" +
  7217. ", " +
  7218. "'" +
  7219. _cid +
  7220. "'" +
  7221. ", " +
  7222. "'" +
  7223. _stage +
  7224. "'" +
  7225. ", " +
  7226. "'" +
  7227. _task +
  7228. "'" +
  7229. ", " +
  7230. "'" +
  7231. _tool +
  7232. "'" +
  7233. ", " +
  7234. "'" +
  7235. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7236. "'" +
  7237. ", " +
  7238. "'" +
  7239. aTool +
  7240. "'" +
  7241. ", " +
  7242. "`" +
  7243. text +
  7244. "`" +
  7245. ")\n" +
  7246. " });\n" +
  7247. "}\n" +
  7248. "document.head.appendChild(_js);\n";
  7249. _iframe.contentWindow.document.head.appendChild(_ajs);
  7250. }
  7251. }
  7252. //U.MD.D.I.openClick(str);
  7253. //如果有任务栏信息
  7254. // if (_taskbar) {
  7255. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7256. // }
  7257. }
  7258. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7259. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7260. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7261. _userinfo = US.userInfo, //登录用户信息
  7262. _userid = US.userInfo.userid //登录用户id
  7263. let _iframe;
  7264. let _cid = cid,
  7265. _stage = stage,
  7266. _task = task,
  7267. _tool = tool;
  7268. var _jie = $$("div", {
  7269. "style": {
  7270. "position": "absolute",
  7271. "bottom": "50px",
  7272. "right": "50px",
  7273. "zIndex": "9999",
  7274. "backgroundColor": "#2268bc",
  7275. "color": "#fff",
  7276. "padding": "12px 20px",
  7277. "cursor": "pointer",
  7278. "borderRadius": "4px",
  7279. },
  7280. "innerHTML": "提交作业"
  7281. })
  7282. let aTool = ''
  7283. let _loading = document.createElement('div')
  7284. _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;"
  7285. // _loading.id = "";
  7286. let _lchild = document.createElement('div')
  7287. let _limg = document.createElement('img')
  7288. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7289. _limg.style = "width: 26px;margin-right: 10px;"
  7290. _lchild.appendChild(_limg)
  7291. let _lspan = document.createElement('span')
  7292. _lspan.innerHTML = "上传中..."
  7293. _lchild.appendChild(_lspan)
  7294. _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%);"
  7295. _loading.appendChild(_lchild)
  7296. let _box = $$('div', {
  7297. "style": {
  7298. "position": "relative",
  7299. "width": "100%",
  7300. "height": "100%",
  7301. },
  7302. })
  7303. _box.appendChild(_loading)
  7304. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7305. switch (str) {
  7306. case "whiteboard":
  7307. aTool = 1;
  7308. _iframe = $$("iframe", {
  7309. "frameborder": "no",
  7310. "border": "0",
  7311. "scrolling ": "no",
  7312. "style": {
  7313. "cssText": "border:0;width:100%;height:100%"
  7314. },
  7315. "src": "https://beta.iwb.cocorobo.cn/"
  7316. })
  7317. _box.appendChild(_iframe);
  7318. _box.appendChild(_jie);
  7319. _formdiv = new U.UF.UI.form(
  7320. "电子白板",
  7321. _box, {
  7322. "id": "whiteboard" + cid + stage + task + tool,
  7323. "style": {
  7324. "width": "90%",
  7325. "height": "90%",
  7326. "overflow": 'hidden'
  7327. },
  7328. "onresize": function () { }
  7329. }, {
  7330. closecallback: function () { }
  7331. }, {
  7332. "style": {
  7333. "height": "36px"
  7334. }
  7335. }).form; //创建窗体
  7336. _taskbar = {
  7337. "id": str + _formdiv.id,
  7338. "style": {
  7339. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7340. },
  7341. "name": "电子白板",
  7342. "forms": _formdiv,
  7343. "click": function () {
  7344. U.MD.D.I.openApplication(str, obj, info);
  7345. }
  7346. }
  7347. break;
  7348. case "mind":
  7349. aTool = 3;
  7350. _iframe = $$("iframe", {
  7351. "frameborder": "no",
  7352. "border": "0",
  7353. "scrolling ": "no",
  7354. "style": {
  7355. "cssText": "border:0;width:100%;height:100%"
  7356. },
  7357. "src": "/kityminder-editor/dist/index.html"
  7358. })
  7359. _box.appendChild(_iframe);
  7360. _box.appendChild(_jie);
  7361. _formdiv = new U.UF.UI.form(
  7362. "思维导图",
  7363. _box, { //"/jsmind/example/demo.html"
  7364. "id": "mind" + cid + stage + task + tool,
  7365. "style": {
  7366. "width": "90%",
  7367. "height": "90%",
  7368. "overflow": 'hidden'
  7369. },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, {
  7374. "style": {
  7375. "height": "36px"
  7376. }
  7377. }).form; //创建窗体
  7378. _taskbar = {
  7379. "id": str + _formdiv.id,
  7380. "style": {
  7381. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7382. },
  7383. "name": "思维导图",
  7384. "forms": _formdiv,
  7385. "click": function () {
  7386. U.MD.D.I.openApplication(str, obj, info);
  7387. }
  7388. }
  7389. break;
  7390. case "MindMap":
  7391. aTool = 3;
  7392. _iframe = $$("iframe", {
  7393. "frameborder": "no",
  7394. "border": "0",
  7395. "scrolling ": "no",
  7396. "style": {
  7397. "cssText": "border:0;width:100%;height:100%"
  7398. },
  7399. "src": "//cloud.cocorobo.cn/mind/"
  7400. })
  7401. _box.appendChild(_iframe);
  7402. _box.appendChild(_jie);
  7403. _formdiv = new U.UF.UI.form(
  7404. "思维导图",
  7405. _box, { //"/jsmind/example/demo.html"
  7406. "id": "mind" + cid + stage + task + tool,
  7407. "style": {
  7408. "width": "90%",
  7409. "height": "90%",
  7410. "overflow": 'hidden'
  7411. },
  7412. "onresize": function () { }
  7413. }, {
  7414. closecallback: function () { }
  7415. }, {
  7416. "style": {
  7417. "height": "36px"
  7418. }
  7419. }).form; //创建窗体
  7420. _taskbar = {
  7421. "id": str + _formdiv.id,
  7422. "style": {
  7423. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7424. },
  7425. "name": "思维导图",
  7426. "forms": _formdiv,
  7427. "click": function () {
  7428. U.MD.D.I.openApplication(str, obj, info);
  7429. }
  7430. }
  7431. break;
  7432. case "doc":
  7433. aTool = 6;
  7434. _iframe = $$("iframe", {
  7435. "frameborder": "no",
  7436. "border": "0",
  7437. "scrolling ": "no",
  7438. "style": {
  7439. "cssText": "border:0;width:100%;height:100%"
  7440. },
  7441. "src": "/Office/Word/WordEditArea.htm"
  7442. })
  7443. _box.appendChild(_iframe);
  7444. _box.appendChild(_jie);
  7445. _formdiv = new U.UF.UI.form(
  7446. "协同文档",
  7447. _box, {
  7448. "id": "doc" + cid + stage + task + tool,
  7449. "style": {
  7450. "width": "90%",
  7451. "height": "90%",
  7452. "overflow": 'hidden'
  7453. },
  7454. "onresize": function () { }
  7455. }, {
  7456. closecallback: function () { }
  7457. }, {
  7458. "style": {
  7459. "height": "36px"
  7460. }
  7461. }).form; //创建窗体
  7462. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7463. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7464. })
  7465. _taskbar = {
  7466. "id": str + _formdiv.id,
  7467. "style": {
  7468. "backgroundImage": "url(/img/icon/doc.png)"
  7469. },
  7470. "name": "协同文档",
  7471. "forms": _formdiv,
  7472. "click": function () {
  7473. U.MD.D.I.openApplication(str, obj, info);
  7474. }
  7475. }
  7476. break;
  7477. case "mindNetwork": //好友打开
  7478. aTool = 7;
  7479. _iframe = $$("iframe", {
  7480. "webkitallowfullscreen": "",
  7481. "mozallowfullscreen": "",
  7482. "allowfullscreen": "",
  7483. "frameborder": "no",
  7484. "border": "0",
  7485. "scrolling ": "no",
  7486. "style": {
  7487. "cssText": "border:0; width:100%; height:100%;"
  7488. },
  7489. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7490. })
  7491. _box.appendChild(_iframe);
  7492. _box.appendChild(_jie);
  7493. _formdiv = new U.UF.UI.form(
  7494. "思维网格",
  7495. _box, {
  7496. "id": "mindNetwork" + cid + stage + task + tool,
  7497. "style": {
  7498. "width": "90%",
  7499. "height": "90%",
  7500. "overflow": 'hidden'
  7501. },
  7502. "onresize": function () { }
  7503. }, {
  7504. closecallback: function () { }
  7505. }, {
  7506. "style": {
  7507. "height": "36px"
  7508. }
  7509. }).form; //创建窗体
  7510. _taskbar = {
  7511. "id": str + _formdiv.id,
  7512. "style": {
  7513. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7514. },
  7515. "name": "思维网格",
  7516. "forms": _formdiv,
  7517. "click": function () {
  7518. U.MD.D.I.openApplication(str, obj, info);
  7519. }
  7520. }
  7521. break;
  7522. case "courseDesign":
  7523. _iframe = $$("iframe", {
  7524. "webkitallowfullscreen": "",
  7525. "mozallowfullscreen": "",
  7526. "allowfullscreen": "",
  7527. "frameborder": "no",
  7528. "border": "0",
  7529. "scrolling ": "no",
  7530. "style": {
  7531. "cssText": "border:0; width:100%; height:100%;"
  7532. },
  7533. "src": "/course-design-vue"
  7534. })
  7535. _box.appendChild(_iframe);
  7536. _box.appendChild(_jie);
  7537. _formdiv = new U.UF.UI.form(
  7538. "项目设计",
  7539. _box, {
  7540. "id": "courseDesign" + cid + stage + task + tool,
  7541. "style": {
  7542. "width": "90%",
  7543. "height": "90%",
  7544. "overflow": 'hidden'
  7545. },
  7546. "onresize": function () { }
  7547. }, {
  7548. closecallback: function () { }
  7549. }, {
  7550. "style": {
  7551. "height": "36px"
  7552. }
  7553. }).form; //创建窗体
  7554. _taskbar = {
  7555. "id": str + _formdiv.id,
  7556. "style": {
  7557. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7558. },
  7559. "name": "项目设计",
  7560. "forms": _formdiv,
  7561. "click": function () {
  7562. U.MD.D.I.openApplication(str, obj, info);
  7563. }
  7564. }
  7565. break;
  7566. }
  7567. const script1 = document.createElement("script");
  7568. script1.type = "text/javascript";
  7569. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7570. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7571. const script2 = document.createElement("script");
  7572. script2.type = "text/javascript";
  7573. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7574. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7575. const script3 = document.createElement("script");
  7576. script3.type = "text/javascript";
  7577. script3.charset = "UTF-8";
  7578. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7579. const script4 = document.createElement("script");
  7580. script4.type = "text/javascript";
  7581. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7582. script4.src = window.origin + "/js/Common/jietu2E.js";
  7583. if (_iframe) {
  7584. if (str == 'doc') {
  7585. _iframe = _formdiv.querySelector('iframe')
  7586. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7587. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7588. _iframe.contentWindow.document.body.appendChild(script1);
  7589. _iframe.contentWindow.document.body.appendChild(script2);
  7590. // _iframe.contentWindow.document.body.appendChild(script3);
  7591. _iframe.contentWindow.document.body.appendChild(script4);
  7592. })
  7593. if (onloadListener) {
  7594. _iframe.contentDocument.location.reload()
  7595. } else {
  7596. _iframe.contentDocument.location.reload()
  7597. }
  7598. } else if (str == 'courseDesign') {
  7599. U.UF.DL.iframeLoad(_iframe, function () {
  7600. // _iframe.contentWindow.U.MD.O.W.load();
  7601. // _iframe.contentWindow.document.body.appendChild(script1);
  7602. _iframe.contentWindow.document.body.appendChild(script2);
  7603. _iframe.contentWindow.document.body.appendChild(script4);
  7604. })
  7605. } else if (str == 'mind') {
  7606. _iframe = _formdiv.querySelector('iframe')
  7607. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7608. //
  7609. _iframe.contentWindow.document.body.appendChild(script1);
  7610. _iframe.contentWindow.document.body.appendChild(script2);
  7611. _iframe.contentWindow.document.body.appendChild(script4);
  7612. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7613. })
  7614. if (onloadListener) {
  7615. _iframe.contentDocument.location.reload()
  7616. } else {
  7617. _iframe.contentDocument.location.reload()
  7618. }
  7619. } else if (str == 'whiteboard') {
  7620. _iframe = _formdiv.querySelector('iframe')
  7621. let onloadListener = _iframe.onload = () => {
  7622. _iframe.contentWindow.document.body.appendChild(script1);
  7623. _iframe.contentWindow.document.body.appendChild(script2);
  7624. _iframe.contentWindow.document.body.appendChild(script4);
  7625. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7626. };
  7627. // if (onloadListener) {
  7628. // try {
  7629. // _iframe.src += "?cocorobo="+new Date().getTime()
  7630. // _iframe.contentWindow.document.location.reload()
  7631. // } catch (error) {
  7632. // }
  7633. // } else {
  7634. // _iframe.contentDocument.location.reload()
  7635. // }
  7636. } else {
  7637. _iframe.onload = () => {
  7638. _iframe.contentWindow.document.body.appendChild(script1);
  7639. _iframe.contentWindow.document.body.appendChild(script2);
  7640. // _iframe.contentWindow.document.body.appendChild(script3);
  7641. _iframe.contentWindow.document.body.appendChild(script4);
  7642. };
  7643. }
  7644. _jie.onclick = async () => {
  7645. let text = ''
  7646. if (aTool == 1) {
  7647. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7648. } else if (aTool == 6) {
  7649. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7650. } else if (aTool == 3) {
  7651. text = await U.MD.D.I.getEditorContent(_iframe);
  7652. }
  7653. _loading.style.display = 'flex'
  7654. console.log(_loading);
  7655. var _ajs = _iframe.contentWindow.document.createElement("script");
  7656. _ajs.type = "text/javascript";
  7657. _ajs.innerHTML =
  7658. // 'console.log(' + _loading + ');\n' +
  7659. 'var _js = document.createElement("script");\n' +
  7660. '_js.type="text/javascript";\n' +
  7661. '_js.charset="UTF-8";\n' +
  7662. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7663. "_js.onload = function(){\n" +
  7664. ' var a = document.getElementsByTagName("img")\n' +
  7665. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7666. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7667. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7668. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7669. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7670. "beforeUpload_shishi(file," +
  7671. "'" +
  7672. _userid +
  7673. "'" +
  7674. ", " +
  7675. "'" +
  7676. _cid +
  7677. "'" +
  7678. ", " +
  7679. "'" +
  7680. _stage +
  7681. "'" +
  7682. ", " +
  7683. "'" +
  7684. _task +
  7685. "'" +
  7686. ", " +
  7687. "'" +
  7688. _tool +
  7689. "'" +
  7690. ", " +
  7691. "'" +
  7692. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7693. "'" +
  7694. ", " +
  7695. "'" +
  7696. aTool +
  7697. "'" +
  7698. ", " +
  7699. "`" +
  7700. text +
  7701. "`" +
  7702. ")\n" +
  7703. " });\n" +
  7704. "}\n" +
  7705. "document.head.appendChild(_js);\n";
  7706. _iframe.contentWindow.document.head.appendChild(_ajs);
  7707. }
  7708. }
  7709. //U.MD.D.I.openClick(str);
  7710. //如果有任务栏信息
  7711. // if (_taskbar) {
  7712. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7713. // }
  7714. }
  7715. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7716. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7717. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7718. _userid = student.userid, //登录用户id
  7719. _username = student.student //用户名字
  7720. let _iframe;
  7721. let _cid = cid,
  7722. _stage = stage,
  7723. _task = task,
  7724. _tool = tool;
  7725. var _jie = $$("div", {
  7726. "style": {
  7727. "position": "absolute",
  7728. "bottom": "50px",
  7729. "right": "50px",
  7730. "zIndex": "9999",
  7731. "backgroundColor": "#2268bc",
  7732. "color": "#fff",
  7733. "padding": "12px 20px",
  7734. "cursor": "pointer",
  7735. "borderRadius": "4px",
  7736. },
  7737. "innerHTML": "提交作业"
  7738. })
  7739. let aTool = ''
  7740. let _loading = document.createElement('div')
  7741. _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;"
  7742. // _loading.id = "";
  7743. let _lchild = document.createElement('div')
  7744. let _limg = document.createElement('img')
  7745. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7746. _limg.style = "width: 26px;margin-right: 10px;"
  7747. _lchild.appendChild(_limg)
  7748. let _lspan = document.createElement('span')
  7749. _lspan.innerHTML = "上传中..."
  7750. _lchild.appendChild(_lspan)
  7751. _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%);"
  7752. _loading.appendChild(_lchild)
  7753. var _box = $$('div', {
  7754. "style": {
  7755. "position": "relative",
  7756. "width": "100%",
  7757. "height": "100%",
  7758. },
  7759. })
  7760. _box.appendChild(_loading)
  7761. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7762. switch (str) {
  7763. case "whiteboard":
  7764. aTool = 1;
  7765. _iframe = $$("iframe", {
  7766. "frameborder": "no",
  7767. "border": "0",
  7768. "scrolling ": "no",
  7769. "style": {
  7770. "cssText": "border:0;width:100%;height:100%"
  7771. },
  7772. "src": "https://beta.iwb.cocorobo.cn/"
  7773. })
  7774. _box.appendChild(_iframe);
  7775. _box.appendChild(_jie);
  7776. _formdiv = new U.UF.UI.form(
  7777. "电子白板-" + _username,
  7778. _box, {
  7779. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7780. "style": {
  7781. "width": "90%",
  7782. "height": "90%",
  7783. "overflow": 'hidden'
  7784. },
  7785. "onresize": function () { }
  7786. }, {
  7787. closecallback: function () { }
  7788. }, {
  7789. "style": {
  7790. "height": "36px"
  7791. }
  7792. }).form; //创建窗体
  7793. _taskbar = {
  7794. "id": str + _formdiv.id,
  7795. "style": {
  7796. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7797. },
  7798. "name": "电子白板",
  7799. "forms": _formdiv,
  7800. "click": function () {
  7801. U.MD.D.I.openApplication(str, obj, info);
  7802. }
  7803. }
  7804. break;
  7805. case "mind":
  7806. aTool = 3;
  7807. _iframe = $$("iframe", {
  7808. "frameborder": "no",
  7809. "border": "0",
  7810. "scrolling ": "no",
  7811. "style": {
  7812. "cssText": "border:0;width:100%;height:100%"
  7813. },
  7814. "src": "/kityminder-editor/dist/index.html"
  7815. })
  7816. _box.appendChild(_iframe);
  7817. _box.appendChild(_jie);
  7818. _formdiv = new U.UF.UI.form(
  7819. "思维导图-" + _username,
  7820. _box, { //"/jsmind/example/demo.html"
  7821. "id": "mind" + cid + stage + task + tool + _userid,
  7822. "style": {
  7823. "width": "90%",
  7824. "height": "90%",
  7825. "overflow": 'hidden'
  7826. },
  7827. "onresize": function () { }
  7828. }, {
  7829. closecallback: function () { }
  7830. }, {
  7831. "style": {
  7832. "height": "36px"
  7833. }
  7834. }).form; //创建窗体
  7835. _taskbar = {
  7836. "id": str + _formdiv.id,
  7837. "style": {
  7838. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7839. },
  7840. "name": "思维导图",
  7841. "forms": _formdiv,
  7842. "click": function () {
  7843. U.MD.D.I.openApplication(str, obj, info);
  7844. }
  7845. }
  7846. break;
  7847. case "MindMap":
  7848. aTool = 3;
  7849. _iframe = $$("iframe", {
  7850. "frameborder": "no",
  7851. "border": "0",
  7852. "scrolling ": "no",
  7853. "style": {
  7854. "cssText": "border:0;width:100%;height:100%"
  7855. },
  7856. "src": "//cloud.cocorobo.cn/mind/"
  7857. })
  7858. _box.appendChild(_iframe);
  7859. _box.appendChild(_jie);
  7860. _formdiv = new U.UF.UI.form(
  7861. "思维导图-" + _username,
  7862. _box, { //"/jsmind/example/demo.html"
  7863. "id": "mind" + cid + stage + task + tool + _userid,
  7864. "style": {
  7865. "width": "90%",
  7866. "height": "90%",
  7867. "overflow": 'hidden'
  7868. },
  7869. "onresize": function () { }
  7870. }, {
  7871. closecallback: function () { }
  7872. }, {
  7873. "style": {
  7874. "height": "36px"
  7875. }
  7876. }).form; //创建窗体
  7877. _taskbar = {
  7878. "id": str + _formdiv.id,
  7879. "style": {
  7880. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7881. },
  7882. "name": "思维导图",
  7883. "forms": _formdiv,
  7884. "click": function () {
  7885. U.MD.D.I.openApplication(str, obj, info);
  7886. }
  7887. }
  7888. break;
  7889. case "doc":
  7890. aTool = 6;
  7891. _iframe = $$("iframe", {
  7892. "frameborder": "no",
  7893. "border": "0",
  7894. "scrolling ": "no",
  7895. "style": {
  7896. "cssText": "border:0;width:100%;height:100%"
  7897. },
  7898. "src": "/Office/Word/WordEditArea.htm"
  7899. })
  7900. _box.appendChild(_iframe);
  7901. _box.appendChild(_jie);
  7902. _formdiv = new U.UF.UI.form(
  7903. "协同文档-" + _username,
  7904. _box, {
  7905. "id": "doc" + cid + stage + task + tool + _userid,
  7906. "style": {
  7907. "width": "90%",
  7908. "height": "90%",
  7909. "overflow": 'hidden'
  7910. },
  7911. "onresize": function () { }
  7912. }, {
  7913. closecallback: function () { }
  7914. }, {
  7915. "style": {
  7916. "height": "36px"
  7917. }
  7918. }).form; //创建窗体
  7919. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7920. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7921. })
  7922. _taskbar = {
  7923. "id": str + _formdiv.id,
  7924. "style": {
  7925. "backgroundImage": "url(/img/icon/doc.png)"
  7926. },
  7927. "name": "协同文档",
  7928. "forms": _formdiv,
  7929. "click": function () {
  7930. U.MD.D.I.openApplication(str, obj, info);
  7931. }
  7932. }
  7933. break;
  7934. case "mindNetwork": //好友打开
  7935. aTool = 7;
  7936. _iframe = $$("iframe", {
  7937. "webkitallowfullscreen": "",
  7938. "mozallowfullscreen": "",
  7939. "allowfullscreen": "",
  7940. "frameborder": "no",
  7941. "border": "0",
  7942. "scrolling ": "no",
  7943. "style": {
  7944. "cssText": "border:0; width:100%; height:100%;"
  7945. },
  7946. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7947. })
  7948. _box.appendChild(_iframe);
  7949. _box.appendChild(_jie);
  7950. _formdiv = new U.UF.UI.form(
  7951. "思维网格-" + _username,
  7952. _box, {
  7953. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7954. "style": {
  7955. "width": "90%",
  7956. "height": "90%",
  7957. "overflow": 'hidden'
  7958. },
  7959. "onresize": function () { }
  7960. }, {
  7961. closecallback: function () { }
  7962. }, {
  7963. "style": {
  7964. "height": "36px"
  7965. }
  7966. }).form; //创建窗体
  7967. _taskbar = {
  7968. "id": str + _formdiv.id,
  7969. "style": {
  7970. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7971. },
  7972. "name": "思维网格",
  7973. "forms": _formdiv,
  7974. "click": function () {
  7975. U.MD.D.I.openApplication(str, obj, info);
  7976. }
  7977. }
  7978. break;
  7979. case "courseDesign":
  7980. _iframe = $$("iframe", {
  7981. "webkitallowfullscreen": "",
  7982. "mozallowfullscreen": "",
  7983. "allowfullscreen": "",
  7984. "frameborder": "no",
  7985. "border": "0",
  7986. "scrolling ": "no",
  7987. "style": {
  7988. "cssText": "border:0; width:100%; height:100%;"
  7989. },
  7990. "src": "/course-design-vue"
  7991. })
  7992. _box.appendChild(_iframe);
  7993. _box.appendChild(_jie);
  7994. _formdiv = new U.UF.UI.form(
  7995. "项目设计-" + _username,
  7996. _box, {
  7997. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7998. "style": {
  7999. "width": "90%",
  8000. "height": "90%",
  8001. "overflow": 'hidden'
  8002. },
  8003. "onresize": function () { }
  8004. }, {
  8005. closecallback: function () { }
  8006. }, {
  8007. "style": {
  8008. "height": "36px"
  8009. }
  8010. }).form; //创建窗体
  8011. _taskbar = {
  8012. "id": str + _formdiv.id,
  8013. "style": {
  8014. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8015. },
  8016. "name": "项目设计",
  8017. "forms": _formdiv,
  8018. "click": function () {
  8019. U.MD.D.I.openApplication(str, obj, info);
  8020. }
  8021. }
  8022. break;
  8023. }
  8024. const script1 = document.createElement("script");
  8025. script1.type = "text/javascript";
  8026. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8027. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8028. const script2 = document.createElement("script");
  8029. script2.type = "text/javascript";
  8030. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8031. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8032. const script3 = document.createElement("script");
  8033. script3.type = "text/javascript";
  8034. script3.charset = "UTF-8";
  8035. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8036. const script4 = document.createElement("script");
  8037. script4.type = "text/javascript";
  8038. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8039. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8040. if (_iframe) {
  8041. if (str == 'doc') {
  8042. _iframe = _formdiv.querySelector('iframe')
  8043. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8044. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8045. _iframe.contentWindow.document.body.appendChild(script1);
  8046. _iframe.contentWindow.document.body.appendChild(script2);
  8047. // _iframe.contentWindow.document.body.appendChild(script3);
  8048. _iframe.contentWindow.document.body.appendChild(script4);
  8049. })
  8050. if (onloadListener) {
  8051. _iframe.contentDocument.location.reload()
  8052. } else {
  8053. _iframe.contentDocument.location.reload()
  8054. }
  8055. } else if (str == 'courseDesign') {
  8056. U.UF.DL.iframeLoad(_iframe, function () {
  8057. // _iframe.contentWindow.U.MD.O.W.load();
  8058. // _iframe.contentWindow.document.body.appendChild(script1);
  8059. _iframe.contentWindow.document.body.appendChild(script2);
  8060. _iframe.contentWindow.document.body.appendChild(script4);
  8061. })
  8062. } else if (str == 'mind') {
  8063. _iframe = _formdiv.querySelector('iframe')
  8064. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8065. //
  8066. _iframe.contentWindow.document.body.appendChild(script1);
  8067. _iframe.contentWindow.document.body.appendChild(script2);
  8068. _iframe.contentWindow.document.body.appendChild(script4);
  8069. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8070. })
  8071. if (onloadListener) {
  8072. _iframe.contentDocument.location.reload()
  8073. } else {
  8074. _iframe.contentDocument.location.reload()
  8075. }
  8076. } else if (str == 'whiteboard') {
  8077. _iframe = _formdiv.querySelector('iframe')
  8078. let onloadListener = _iframe.onload = () => {
  8079. _iframe.contentWindow.document.body.appendChild(script1);
  8080. _iframe.contentWindow.document.body.appendChild(script2);
  8081. _iframe.contentWindow.document.body.appendChild(script4);
  8082. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8083. };
  8084. // if (onloadListener) {
  8085. // try {
  8086. // _iframe.src += "?cocorobo="+new Date().getTime()
  8087. // _iframe.contentWindow.document.location.reload()
  8088. // } catch (error) {
  8089. // }
  8090. // } else {
  8091. // _iframe.contentDocument.location.reload()
  8092. // }
  8093. } else {
  8094. _iframe.onload = () => {
  8095. _iframe.contentWindow.document.body.appendChild(script1);
  8096. _iframe.contentWindow.document.body.appendChild(script2);
  8097. // _iframe.contentWindow.document.body.appendChild(script3);
  8098. _iframe.contentWindow.document.body.appendChild(script4);
  8099. };
  8100. }
  8101. _jie.onclick = async () => {
  8102. let text = ''
  8103. if (aTool == 1) {
  8104. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8105. } else if (aTool == 6) {
  8106. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8107. } else if (aTool == 3) {
  8108. text = await U.MD.D.I.getEditorContent(_iframe);
  8109. }
  8110. _loading.style.display = 'flex'
  8111. console.log(_loading);
  8112. var _ajs = _iframe.contentWindow.document.createElement("script");
  8113. _ajs.type = "text/javascript";
  8114. _ajs.innerHTML =
  8115. // 'console.log(' + _loading + ');\n' +
  8116. 'var _js = document.createElement("script");\n' +
  8117. '_js.type="text/javascript";\n' +
  8118. '_js.charset="UTF-8";\n' +
  8119. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8120. "_js.onload = function(){\n" +
  8121. ' var a = document.getElementsByTagName("img")\n' +
  8122. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8123. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8124. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8125. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8126. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8127. "beforeUpload_shishi(file," +
  8128. "'" +
  8129. _userid +
  8130. "'" +
  8131. ", " +
  8132. "'" +
  8133. _cid +
  8134. "'" +
  8135. ", " +
  8136. "'" +
  8137. _stage +
  8138. "'" +
  8139. ", " +
  8140. "'" +
  8141. _task +
  8142. "'" +
  8143. ", " +
  8144. "'" +
  8145. _tool +
  8146. "'" +
  8147. ", " +
  8148. "'" +
  8149. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8150. "'" +
  8151. ", " +
  8152. "'" +
  8153. aTool +
  8154. "'" +
  8155. ", " +
  8156. "`" +
  8157. text +
  8158. "`" +
  8159. ")\n" +
  8160. " });\n" +
  8161. "}\n" +
  8162. "document.head.appendChild(_js);\n";
  8163. _iframe.contentWindow.document.head.appendChild(_ajs);
  8164. }
  8165. }
  8166. }
  8167. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8168. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8169. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8170. _userid = student.userid, //登录用户id
  8171. _username = student.student //用户名字
  8172. let _iframe;
  8173. let _cid = cid,
  8174. _stage = stage,
  8175. _task = task,
  8176. _tool = tool;
  8177. var _jie = $$("div", {
  8178. "style": {
  8179. "position": "absolute",
  8180. "bottom": "50px",
  8181. "right": "50px",
  8182. "zIndex": "9999",
  8183. "backgroundColor": "#2268bc",
  8184. "color": "#fff",
  8185. "padding": "12px 20px",
  8186. "cursor": "pointer",
  8187. "borderRadius": "4px",
  8188. },
  8189. "innerHTML": "提交作业"
  8190. })
  8191. let aTool = ''
  8192. let _loading = document.createElement('div')
  8193. _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;"
  8194. // _loading.id = "";
  8195. let _lchild = document.createElement('div')
  8196. let _limg = document.createElement('img')
  8197. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8198. _limg.style = "width: 26px;margin-right: 10px;"
  8199. _lchild.appendChild(_limg)
  8200. let _lspan = document.createElement('span')
  8201. _lspan.innerHTML = "上传中..."
  8202. _lchild.appendChild(_lspan)
  8203. _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%);"
  8204. _loading.appendChild(_lchild)
  8205. var _box = $$('div', {
  8206. "style": {
  8207. "position": "relative",
  8208. "width": "100%",
  8209. "height": "100%",
  8210. },
  8211. })
  8212. _box.appendChild(_loading)
  8213. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8214. switch (str) {
  8215. case "whiteboard":
  8216. aTool = 1;
  8217. _iframe = $$("iframe", {
  8218. "frameborder": "no",
  8219. "border": "0",
  8220. "scrolling ": "no",
  8221. "style": {
  8222. "cssText": "border:0;width:100%;height:100%"
  8223. },
  8224. "src": "https://beta.iwb.cocorobo.cn/"
  8225. })
  8226. _box.appendChild(_iframe);
  8227. _box.appendChild(_jie);
  8228. _formdiv = new U.UF.UI.form(
  8229. "电子白板-" + _username,
  8230. _box, {
  8231. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8232. "style": {
  8233. "width": "90%",
  8234. "height": "90%",
  8235. "overflow": 'hidden'
  8236. },
  8237. "onresize": function () { }
  8238. }, {
  8239. closecallback: function () { }
  8240. }, {
  8241. "style": {
  8242. "height": "36px"
  8243. }
  8244. }).form; //创建窗体
  8245. _taskbar = {
  8246. "id": str + _formdiv.id,
  8247. "style": {
  8248. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8249. },
  8250. "name": "电子白板",
  8251. "forms": _formdiv,
  8252. "click": function () {
  8253. U.MD.D.I.openApplication(str, obj, info);
  8254. }
  8255. }
  8256. break;
  8257. case "mind":
  8258. aTool = 3;
  8259. _iframe = $$("iframe", {
  8260. "frameborder": "no",
  8261. "border": "0",
  8262. "scrolling ": "no",
  8263. "style": {
  8264. "cssText": "border:0;width:100%;height:100%"
  8265. },
  8266. "src": "/kityminder-editor/dist/index.html"
  8267. })
  8268. _box.appendChild(_iframe);
  8269. _box.appendChild(_jie);
  8270. _formdiv = new U.UF.UI.form(
  8271. "思维导图-" + _username,
  8272. _box, { //"/jsmind/example/demo.html"
  8273. "id": "mind" + cid + stage + task + tool + _userid,
  8274. "style": {
  8275. "width": "90%",
  8276. "height": "90%",
  8277. "overflow": 'hidden'
  8278. },
  8279. "onresize": function () { }
  8280. }, {
  8281. closecallback: function () { }
  8282. }, {
  8283. "style": {
  8284. "height": "36px"
  8285. }
  8286. }).form; //创建窗体
  8287. _taskbar = {
  8288. "id": str + _formdiv.id,
  8289. "style": {
  8290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8291. },
  8292. "name": "思维导图",
  8293. "forms": _formdiv,
  8294. "click": function () {
  8295. U.MD.D.I.openApplication(str, obj, info);
  8296. }
  8297. }
  8298. break;
  8299. case "MindMap":
  8300. aTool = 3;
  8301. _iframe = $$("iframe", {
  8302. "frameborder": "no",
  8303. "border": "0",
  8304. "scrolling ": "no",
  8305. "style": {
  8306. "cssText": "border:0;width:100%;height:100%"
  8307. },
  8308. "src": "//cloud.cocorobo.cn/mind/"
  8309. })
  8310. _box.appendChild(_iframe);
  8311. _box.appendChild(_jie);
  8312. _formdiv = new U.UF.UI.form(
  8313. "思维导图-" + _username,
  8314. _box, { //"/jsmind/example/demo.html"
  8315. "id": "mind" + cid + stage + task + tool + _userid,
  8316. "style": {
  8317. "width": "90%",
  8318. "height": "90%",
  8319. "overflow": 'hidden'
  8320. },
  8321. "onresize": function () { }
  8322. }, {
  8323. closecallback: function () { }
  8324. }, {
  8325. "style": {
  8326. "height": "36px"
  8327. }
  8328. }).form; //创建窗体
  8329. _taskbar = {
  8330. "id": str + _formdiv.id,
  8331. "style": {
  8332. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8333. },
  8334. "name": "思维导图",
  8335. "forms": _formdiv,
  8336. "click": function () {
  8337. U.MD.D.I.openApplication(str, obj, info);
  8338. }
  8339. }
  8340. break;
  8341. case "doc":
  8342. aTool = 6;
  8343. _iframe = $$("iframe", {
  8344. "frameborder": "no",
  8345. "border": "0",
  8346. "scrolling ": "no",
  8347. "style": {
  8348. "cssText": "border:0;width:100%;height:100%"
  8349. },
  8350. "src": "/Office/Word/WordEditArea.htm"
  8351. })
  8352. _box.appendChild(_iframe);
  8353. _box.appendChild(_jie);
  8354. _formdiv = new U.UF.UI.form(
  8355. "协同文档-" + _username,
  8356. _box, {
  8357. "id": "doc" + cid + stage + task + tool + _userid,
  8358. "style": {
  8359. "width": "90%",
  8360. "height": "90%",
  8361. "overflow": 'hidden'
  8362. },
  8363. "onresize": function () { }
  8364. }, {
  8365. closecallback: function () { }
  8366. }, {
  8367. "style": {
  8368. "height": "36px"
  8369. }
  8370. }).form; //创建窗体
  8371. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8372. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8373. })
  8374. _taskbar = {
  8375. "id": str + _formdiv.id,
  8376. "style": {
  8377. "backgroundImage": "url(/img/icon/doc.png)"
  8378. },
  8379. "name": "协同文档",
  8380. "forms": _formdiv,
  8381. "click": function () {
  8382. U.MD.D.I.openApplication(str, obj, info);
  8383. }
  8384. }
  8385. break;
  8386. case "mindNetwork": //好友打开
  8387. aTool = 7;
  8388. _iframe = $$("iframe", {
  8389. "webkitallowfullscreen": "",
  8390. "mozallowfullscreen": "",
  8391. "allowfullscreen": "",
  8392. "frameborder": "no",
  8393. "border": "0",
  8394. "scrolling ": "no",
  8395. "style": {
  8396. "cssText": "border:0; width:100%; height:100%;"
  8397. },
  8398. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8399. })
  8400. _box.appendChild(_iframe);
  8401. _box.appendChild(_jie);
  8402. _formdiv = new U.UF.UI.form(
  8403. "思维网格-" + _username,
  8404. _box, {
  8405. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8406. "style": {
  8407. "width": "90%",
  8408. "height": "90%",
  8409. "overflow": 'hidden'
  8410. },
  8411. "onresize": function () { }
  8412. }, {
  8413. closecallback: function () { }
  8414. }, {
  8415. "style": {
  8416. "height": "36px"
  8417. }
  8418. }).form; //创建窗体
  8419. _taskbar = {
  8420. "id": str + _formdiv.id,
  8421. "style": {
  8422. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8423. },
  8424. "name": "思维网格",
  8425. "forms": _formdiv,
  8426. "click": function () {
  8427. U.MD.D.I.openApplication(str, obj, info);
  8428. }
  8429. }
  8430. break;
  8431. case "courseDesign":
  8432. _iframe = $$("iframe", {
  8433. "webkitallowfullscreen": "",
  8434. "mozallowfullscreen": "",
  8435. "allowfullscreen": "",
  8436. "frameborder": "no",
  8437. "border": "0",
  8438. "scrolling ": "no",
  8439. "style": {
  8440. "cssText": "border:0; width:100%; height:100%;"
  8441. },
  8442. "src": "/course-design-vue"
  8443. })
  8444. _box.appendChild(_iframe);
  8445. _box.appendChild(_jie);
  8446. _formdiv = new U.UF.UI.form(
  8447. "项目设计-" + _username,
  8448. _box, {
  8449. "id": "courseDesign" + cid + stage + task + tool + _userid,
  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. _taskbar = {
  8464. "id": str + _formdiv.id,
  8465. "style": {
  8466. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8467. },
  8468. "name": "项目设计",
  8469. "forms": _formdiv,
  8470. "click": function () {
  8471. U.MD.D.I.openApplication(str, obj, info);
  8472. }
  8473. }
  8474. break;
  8475. }
  8476. const script1 = document.createElement("script");
  8477. script1.type = "text/javascript";
  8478. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8479. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8480. const script2 = document.createElement("script");
  8481. script2.type = "text/javascript";
  8482. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8483. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8484. const script3 = document.createElement("script");
  8485. script3.type = "text/javascript";
  8486. script3.charset = "UTF-8";
  8487. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8488. const script4 = document.createElement("script");
  8489. script4.type = "text/javascript";
  8490. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8491. script4.src = window.origin + "/js/Common/jietu2E.js";
  8492. if (_iframe) {
  8493. if (str == 'doc') {
  8494. _iframe = _formdiv.querySelector('iframe')
  8495. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8496. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8497. _iframe.contentWindow.document.body.appendChild(script1);
  8498. _iframe.contentWindow.document.body.appendChild(script2);
  8499. // _iframe.contentWindow.document.body.appendChild(script3);
  8500. _iframe.contentWindow.document.body.appendChild(script4);
  8501. })
  8502. if (onloadListener) {
  8503. _iframe.contentDocument.location.reload()
  8504. } else {
  8505. _iframe.contentDocument.location.reload()
  8506. }
  8507. } else if (str == 'courseDesign') {
  8508. U.UF.DL.iframeLoad(_iframe, function () {
  8509. // _iframe.contentWindow.U.MD.O.W.load();
  8510. // _iframe.contentWindow.document.body.appendChild(script1);
  8511. _iframe.contentWindow.document.body.appendChild(script2);
  8512. _iframe.contentWindow.document.body.appendChild(script4);
  8513. })
  8514. } else if (str == 'mind') {
  8515. _iframe = _formdiv.querySelector('iframe')
  8516. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8517. //
  8518. _iframe.contentWindow.document.body.appendChild(script1);
  8519. _iframe.contentWindow.document.body.appendChild(script2);
  8520. _iframe.contentWindow.document.body.appendChild(script4);
  8521. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8522. })
  8523. if (onloadListener) {
  8524. _iframe.contentDocument.location.reload()
  8525. } else {
  8526. _iframe.contentDocument.location.reload()
  8527. }
  8528. } else if (str == 'whiteboard') {
  8529. _iframe = _formdiv.querySelector('iframe')
  8530. let onloadListener = _iframe.onload = () => {
  8531. _iframe.contentWindow.document.body.appendChild(script1);
  8532. _iframe.contentWindow.document.body.appendChild(script2);
  8533. _iframe.contentWindow.document.body.appendChild(script4);
  8534. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8535. };
  8536. // if (onloadListener) {
  8537. // try {
  8538. // _iframe.src += "?cocorobo="+new Date().getTime()
  8539. // _iframe.contentWindow.document.location.reload()
  8540. // } catch (error) {
  8541. // }
  8542. // } else {
  8543. // _iframe.contentDocument.location.reload()
  8544. // }
  8545. } else {
  8546. _iframe.onload = () => {
  8547. _iframe.contentWindow.document.body.appendChild(script1);
  8548. _iframe.contentWindow.document.body.appendChild(script2);
  8549. // _iframe.contentWindow.document.body.appendChild(script3);
  8550. _iframe.contentWindow.document.body.appendChild(script4);
  8551. };
  8552. }
  8553. _jie.onclick = async () => {
  8554. let text = ''
  8555. if (aTool == 1) {
  8556. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8557. } else if (aTool == 6) {
  8558. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8559. } else if (aTool == 3) {
  8560. text = await U.MD.D.I.getEditorContent(_iframe);
  8561. }
  8562. _loading.style.display = 'flex'
  8563. console.log(_loading);
  8564. var _ajs = _iframe.contentWindow.document.createElement("script");
  8565. _ajs.type = "text/javascript";
  8566. _ajs.innerHTML =
  8567. // 'console.log(' + _loading + ');\n' +
  8568. 'var _js = document.createElement("script");\n' +
  8569. '_js.type="text/javascript";\n' +
  8570. '_js.charset="UTF-8";\n' +
  8571. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8572. "_js.onload = function(){\n" +
  8573. ' var a = document.getElementsByTagName("img")\n' +
  8574. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8575. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8576. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8577. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8578. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8579. "beforeUpload_shishi(file," +
  8580. "'" +
  8581. _userid +
  8582. "'" +
  8583. ", " +
  8584. "'" +
  8585. _cid +
  8586. "'" +
  8587. ", " +
  8588. "'" +
  8589. _stage +
  8590. "'" +
  8591. ", " +
  8592. "'" +
  8593. _task +
  8594. "'" +
  8595. ", " +
  8596. "'" +
  8597. _tool +
  8598. "'" +
  8599. ", " +
  8600. "'" +
  8601. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8602. "'" +
  8603. ", " +
  8604. "'" +
  8605. aTool +
  8606. "'" +
  8607. ", " +
  8608. "`" +
  8609. text +
  8610. "`" +
  8611. ")\n" +
  8612. " });\n" +
  8613. "}\n" +
  8614. "document.head.appendChild(_js);\n";
  8615. _iframe.contentWindow.document.head.appendChild(_ajs);
  8616. }
  8617. }
  8618. }
  8619. U.MD.D.I.getEditorContent = function (iframe) {
  8620. return new Promise((resolve, reject) => {
  8621. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8622. console.log(content);
  8623. resolve(content)
  8624. });
  8625. });
  8626. }
  8627. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8628. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8629. // if (res.value[0].length > 0) {
  8630. // // resolve(res.value[0][0].text);
  8631. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8632. // $(fileInput).val('');
  8633. // });
  8634. // }
  8635. // }, [], { "type": "GET", "withCredentials": true });
  8636. var xmlhttp;
  8637. var Mac, Sn, DeviceId
  8638. if (window.XMLHttpRequest) {
  8639. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8640. xmlhttp = new XMLHttpRequest();
  8641. } else {
  8642. // IE6, IE5 浏览器执行代码
  8643. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8644. }
  8645. xmlhttp.onreadystatechange = function () {
  8646. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8647. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8648. // resolve(res.value[0][0].text);
  8649. if (type == '2') {
  8650. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8651. } else if (type == '3') {
  8652. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8653. }
  8654. } else {
  8655. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8656. }
  8657. }
  8658. }
  8659. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8660. xmlhttp.send();
  8661. }
  8662. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8663. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8664. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8665. _userinfo = US.userInfo, //登录用户信息
  8666. _userid = US.userInfo.userid //登录用户id
  8667. let _iframe;
  8668. let _cid = cid,
  8669. _stage = stage,
  8670. _task = task,
  8671. _tool = tool;
  8672. var _jie = $$("div", {
  8673. "style": {
  8674. "position": "absolute",
  8675. "bottom": "50px",
  8676. "right": "50px",
  8677. "zIndex": "9999",
  8678. "backgroundColor": "#2268bc",
  8679. "color": "#fff",
  8680. "padding": "12px 20px",
  8681. "cursor": "pointer",
  8682. "borderRadius": "4px",
  8683. },
  8684. "innerHTML": "确认并提交"
  8685. })
  8686. let aTool = ''
  8687. let _loading = document.createElement('div')
  8688. _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;"
  8689. // _loading.id = "";
  8690. let _lchild = document.createElement('div')
  8691. let _limg = document.createElement('img')
  8692. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8693. _limg.style = "width: 26px;margin-right: 10px;"
  8694. _lchild.appendChild(_limg)
  8695. let _lspan = document.createElement('span')
  8696. _lspan.innerHTML = "上传中..."
  8697. _lchild.appendChild(_lspan)
  8698. _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%);"
  8699. _loading.appendChild(_lchild)
  8700. var _box = $$('div', {
  8701. "style": {
  8702. "position": "relative",
  8703. "width": "100%",
  8704. "height": "100%",
  8705. },
  8706. })
  8707. _box.appendChild(_loading)
  8708. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8709. switch (str) {
  8710. case "whiteboard":
  8711. aTool = 1;
  8712. _iframe = $$("iframe", {
  8713. "frameborder": "no",
  8714. "border": "0",
  8715. "scrolling ": "no",
  8716. "style": {
  8717. "cssText": "border:0;width:100%;height:100%"
  8718. },
  8719. "src": "https://beta.iwb.cocorobo.cn/"
  8720. })
  8721. _box.appendChild(_iframe);
  8722. _box.appendChild(_jie);
  8723. _formdiv = new U.UF.UI.form(
  8724. "电子白板",
  8725. _box, {
  8726. "id": "whiteboards" + cid + stage + task + tool,
  8727. "style": {
  8728. "width": "90%",
  8729. "height": "90%",
  8730. "overflow": 'hidden'
  8731. },
  8732. "onresize": function () { }
  8733. }, {
  8734. closecallback: function () { }
  8735. }, {
  8736. "style": {
  8737. "height": "36px"
  8738. }
  8739. }).form; //创建窗体
  8740. _taskbar = {
  8741. "id": str + _formdiv.id,
  8742. "style": {
  8743. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8744. },
  8745. "name": "电子白板",
  8746. "forms": _formdiv,
  8747. "click": function () {
  8748. U.MD.D.I.openApplication(str, obj, info);
  8749. }
  8750. }
  8751. break;
  8752. case "mind":
  8753. aTool = 3;
  8754. _iframe = $$("iframe", {
  8755. "frameborder": "no",
  8756. "border": "0",
  8757. "scrolling ": "no",
  8758. "style": {
  8759. "cssText": "border:0;width:100%;height:100%"
  8760. },
  8761. "src": "/kityminder-editor/dist/index.html"
  8762. });
  8763. _box.appendChild(_iframe);
  8764. _box.appendChild(_jie);
  8765. _formdiv = new U.UF.UI.form(
  8766. "思维导图",
  8767. _box, { //"/jsmind/example/demo.html"
  8768. "id": "minds" + cid + stage + task + tool,
  8769. "style": {
  8770. "width": "90%",
  8771. "height": "90%",
  8772. "overflow": 'hidden'
  8773. },
  8774. "onresize": function () { }
  8775. }, {
  8776. closecallback: function () { }
  8777. }, {
  8778. "style": {
  8779. "height": "36px"
  8780. }
  8781. }).form; //创建窗体
  8782. _taskbar = {
  8783. "id": str + _formdiv.id,
  8784. "style": {
  8785. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8786. },
  8787. "name": "思维导图",
  8788. "forms": _formdiv,
  8789. "click": function () {
  8790. U.MD.D.I.openApplication(str, obj, info);
  8791. }
  8792. }
  8793. break;
  8794. case "doc":
  8795. aTool = 6;
  8796. _iframe = $$("iframe", {
  8797. "frameborder": "no",
  8798. "border": "0",
  8799. "scrolling ": "no",
  8800. "style": {
  8801. "cssText": "border:0;width:100%;height:100%"
  8802. },
  8803. "src": "/Office/Word/WordEditArea.htm"
  8804. })
  8805. _box.appendChild(_iframe);
  8806. _box.appendChild(_jie);
  8807. _formdiv = new U.UF.UI.form(
  8808. "协同文档",
  8809. _box, {
  8810. "id": "docs" + cid + stage + task + tool,
  8811. "style": {
  8812. "width": "90%",
  8813. "height": "90%",
  8814. "overflow": 'hidden'
  8815. },
  8816. "onresize": function () { }
  8817. }, {
  8818. closecallback: function () { }
  8819. }, {
  8820. "style": {
  8821. "height": "36px"
  8822. }
  8823. }).form; //创建窗体
  8824. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8825. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8826. })
  8827. _taskbar = {
  8828. "id": str + _formdiv.id,
  8829. "style": {
  8830. "backgroundImage": "url(/img/icon/doc.png)"
  8831. },
  8832. "name": "协同文档",
  8833. "forms": _formdiv,
  8834. "click": function () {
  8835. U.MD.D.I.openApplication(str, obj, info);
  8836. }
  8837. }
  8838. break;
  8839. }
  8840. const script1 = document.createElement("script");
  8841. script1.type = "text/javascript";
  8842. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8843. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8844. const script2 = document.createElement("script");
  8845. script2.type = "text/javascript";
  8846. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8847. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8848. const script3 = document.createElement("script");
  8849. script3.type = "text/javascript";
  8850. script3.charset = "UTF-8";
  8851. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8852. const script4 = document.createElement("script");
  8853. script4.type = "text/javascript";
  8854. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8855. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8856. if (_iframe) {
  8857. if (str == 'doc') {
  8858. _iframe = _formdiv.querySelector('iframe')
  8859. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8860. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8861. _iframe.contentWindow.document.body.appendChild(script1);
  8862. _iframe.contentWindow.document.body.appendChild(script2);
  8863. // _iframe.contentWindow.document.body.appendChild(script3);
  8864. _iframe.contentWindow.document.body.appendChild(script4);
  8865. })
  8866. if (onloadListener) {
  8867. _iframe.contentDocument.location.reload()
  8868. } else {
  8869. _iframe.contentDocument.location.reload()
  8870. }
  8871. } else if (str == 'mind') {
  8872. _iframe = _formdiv.querySelector('iframe')
  8873. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8874. _iframe.contentWindow.document.body.appendChild(script1);
  8875. _iframe.contentWindow.document.body.appendChild(script2);
  8876. _iframe.contentWindow.document.body.appendChild(script4);
  8877. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8878. })
  8879. if (onloadListener) {
  8880. _iframe.contentDocument.location.reload()
  8881. } else {
  8882. _iframe.contentDocument.location.reload()
  8883. }
  8884. } else {
  8885. _iframe.onload = () => {
  8886. _iframe.contentWindow.document.body.appendChild(script1);
  8887. _iframe.contentWindow.document.body.appendChild(script2);
  8888. // _iframe.contentWindow.document.body.appendChild(script3);
  8889. _iframe.contentWindow.document.body.appendChild(script4);
  8890. };
  8891. }
  8892. _jie.onclick = async () => {
  8893. let text = ''
  8894. if (aTool == 6) {
  8895. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8896. } else if (aTool == 3) {
  8897. text = await U.MD.D.I.getEditorContent(_iframe);
  8898. }
  8899. _loading.style.display = 'flex'
  8900. console.log(_loading);
  8901. var _ajs = _iframe.contentWindow.document.createElement("script");
  8902. _ajs.type = "text/javascript";
  8903. _ajs.innerHTML =
  8904. // 'console.log(' + _loading + ');\n' +
  8905. 'var _js = document.createElement("script");\n' +
  8906. '_js.type="text/javascript";\n' +
  8907. '_js.charset="UTF-8";\n' +
  8908. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8909. "_js.onload = function(){\n" +
  8910. ' var a = document.getElementsByTagName("img")\n' +
  8911. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8912. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8913. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8914. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8915. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8916. "beforeUpload_shishi(file," +
  8917. "'" +
  8918. _userid +
  8919. "'" +
  8920. ", " +
  8921. "'" +
  8922. _cid +
  8923. "'" +
  8924. ", " +
  8925. "'" +
  8926. _stage +
  8927. "'" +
  8928. ", " +
  8929. "'" +
  8930. _task +
  8931. "'" +
  8932. ", " +
  8933. "'" +
  8934. _tool +
  8935. "'" +
  8936. ", " +
  8937. "'" +
  8938. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8939. "'" +
  8940. ", " +
  8941. "'" +
  8942. aTool +
  8943. "'" +
  8944. ", " +
  8945. "`" +
  8946. text +
  8947. "`" +
  8948. ")\n" +
  8949. " });\n" +
  8950. "}\n" +
  8951. "document.head.appendChild(_js);\n";
  8952. _iframe.contentWindow.document.head.appendChild(_ajs);
  8953. }
  8954. }
  8955. //U.MD.D.I.openClick(str);
  8956. //如果有任务栏信息
  8957. // if (_taskbar) {
  8958. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8959. // }
  8960. }
  8961. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8962. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8963. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8964. _userinfo = US.userInfo, //登录用户信息
  8965. _userid = US.userInfo.userid //登录用户id
  8966. let _iframe;
  8967. let _cid = cid,
  8968. _stage = stage,
  8969. _task = task,
  8970. _tool = tool;
  8971. var _jie = $$("div", {
  8972. "style": {
  8973. "position": "absolute",
  8974. "bottom": "50px",
  8975. "right": "50px",
  8976. "zIndex": "9999",
  8977. "backgroundColor": "#2268bc",
  8978. "color": "#fff",
  8979. "padding": "12px 20px",
  8980. "cursor": "pointer",
  8981. "borderRadius": "4px",
  8982. },
  8983. "innerHTML": "确认并提交"
  8984. })
  8985. let aTool = ''
  8986. let _loading = document.createElement('div')
  8987. _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;"
  8988. // _loading.id = "";
  8989. let _lchild = document.createElement('div')
  8990. let _limg = document.createElement('img')
  8991. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8992. _limg.style = "width: 26px;margin-right: 10px;"
  8993. _lchild.appendChild(_limg)
  8994. let _lspan = document.createElement('span')
  8995. _lspan.innerHTML = "上传中..."
  8996. _lchild.appendChild(_lspan)
  8997. _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%);"
  8998. _loading.appendChild(_lchild)
  8999. var _box = $$('div', {
  9000. "style": {
  9001. "position": "relative",
  9002. "width": "100%",
  9003. "height": "100%",
  9004. },
  9005. })
  9006. _box.appendChild(_loading)
  9007. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9008. switch (str) {
  9009. case "whiteboard":
  9010. aTool = 1;
  9011. _iframe = $$("iframe", {
  9012. "frameborder": "no",
  9013. "border": "0",
  9014. "scrolling ": "no",
  9015. "style": {
  9016. "cssText": "border:0;width:100%;height:100%"
  9017. },
  9018. "src": "https://beta.iwb.cocorobo.cn/"
  9019. })
  9020. _box.appendChild(_iframe);
  9021. _box.appendChild(_jie);
  9022. _formdiv = new U.UF.UI.form(
  9023. "电子白板",
  9024. _box, {
  9025. "id": "whiteboards" + cid + stage + task + tool,
  9026. "style": {
  9027. "width": "90%",
  9028. "height": "90%",
  9029. "overflow": 'hidden'
  9030. },
  9031. "onresize": function () { }
  9032. }, {
  9033. closecallback: function () { }
  9034. }, {
  9035. "style": {
  9036. "height": "36px"
  9037. }
  9038. }).form; //创建窗体
  9039. _taskbar = {
  9040. "id": str + _formdiv.id,
  9041. "style": {
  9042. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9043. },
  9044. "name": "电子白板",
  9045. "forms": _formdiv,
  9046. "click": function () {
  9047. U.MD.D.I.openApplication(str, obj, info);
  9048. }
  9049. }
  9050. break;
  9051. case "mind":
  9052. aTool = 3;
  9053. _iframe = $$("iframe", {
  9054. "frameborder": "no",
  9055. "border": "0",
  9056. "scrolling ": "no",
  9057. "style": {
  9058. "cssText": "border:0;width:100%;height:100%"
  9059. },
  9060. "src": "/kityminder-editor/dist/index.html"
  9061. });
  9062. _box.appendChild(_iframe);
  9063. _box.appendChild(_jie);
  9064. _formdiv = new U.UF.UI.form(
  9065. "思维导图",
  9066. _box, { //"/jsmind/example/demo.html"
  9067. "id": "minds" + cid + stage + task + tool,
  9068. "style": {
  9069. "width": "90%",
  9070. "height": "90%",
  9071. "overflow": 'hidden'
  9072. },
  9073. "onresize": function () { }
  9074. }, {
  9075. closecallback: function () { }
  9076. }, {
  9077. "style": {
  9078. "height": "36px"
  9079. }
  9080. }).form; //创建窗体
  9081. _taskbar = {
  9082. "id": str + _formdiv.id,
  9083. "style": {
  9084. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9085. },
  9086. "name": "思维导图",
  9087. "forms": _formdiv,
  9088. "click": function () {
  9089. U.MD.D.I.openApplication(str, obj, info);
  9090. }
  9091. }
  9092. break;
  9093. case "doc":
  9094. aTool = 6;
  9095. _iframe = $$("iframe", {
  9096. "frameborder": "no",
  9097. "border": "0",
  9098. "scrolling ": "no",
  9099. "style": {
  9100. "cssText": "border:0;width:100%;height:100%"
  9101. },
  9102. "src": "/Office/Word/WordEditArea.htm"
  9103. })
  9104. _box.appendChild(_iframe);
  9105. _box.appendChild(_jie);
  9106. _formdiv = new U.UF.UI.form(
  9107. "协同文档",
  9108. _box, {
  9109. "id": "docs" + cid + stage + task + tool,
  9110. "style": {
  9111. "width": "90%",
  9112. "height": "90%",
  9113. "overflow": 'hidden'
  9114. },
  9115. "onresize": function () { }
  9116. }, {
  9117. closecallback: function () { }
  9118. }, {
  9119. "style": {
  9120. "height": "36px"
  9121. }
  9122. }).form; //创建窗体
  9123. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9124. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9125. })
  9126. _taskbar = {
  9127. "id": str + _formdiv.id,
  9128. "style": {
  9129. "backgroundImage": "url(/img/icon/doc.png)"
  9130. },
  9131. "name": "协同文档",
  9132. "forms": _formdiv,
  9133. "click": function () {
  9134. U.MD.D.I.openApplication(str, obj, info);
  9135. }
  9136. }
  9137. break;
  9138. }
  9139. const script1 = document.createElement("script");
  9140. script1.type = "text/javascript";
  9141. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9142. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9143. const script2 = document.createElement("script");
  9144. script2.type = "text/javascript";
  9145. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9146. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9147. const script3 = document.createElement("script");
  9148. script3.type = "text/javascript";
  9149. script3.charset = "UTF-8";
  9150. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9151. const script4 = document.createElement("script");
  9152. script4.type = "text/javascript";
  9153. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9154. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9155. if (_iframe) {
  9156. if (str == 'doc') {
  9157. _iframe = _formdiv.querySelector('iframe')
  9158. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9159. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9160. _iframe.contentWindow.document.body.appendChild(script1);
  9161. _iframe.contentWindow.document.body.appendChild(script2);
  9162. // _iframe.contentWindow.document.body.appendChild(script3);
  9163. _iframe.contentWindow.document.body.appendChild(script4);
  9164. })
  9165. if (onloadListener) {
  9166. _iframe.contentDocument.location.reload()
  9167. } else {
  9168. _iframe.contentDocument.location.reload()
  9169. }
  9170. } else if (str == 'mind') {
  9171. _iframe = _formdiv.querySelector('iframe')
  9172. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9173. _iframe.contentWindow.document.body.appendChild(script1);
  9174. _iframe.contentWindow.document.body.appendChild(script2);
  9175. _iframe.contentWindow.document.body.appendChild(script4);
  9176. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9177. })
  9178. if (onloadListener) {
  9179. _iframe.contentDocument.location.reload()
  9180. } else {
  9181. _iframe.contentDocument.location.reload()
  9182. }
  9183. } else {
  9184. _iframe.onload = () => {
  9185. _iframe.contentWindow.document.body.appendChild(script1);
  9186. _iframe.contentWindow.document.body.appendChild(script2);
  9187. // _iframe.contentWindow.document.body.appendChild(script3);
  9188. _iframe.contentWindow.document.body.appendChild(script4);
  9189. };
  9190. }
  9191. _jie.onclick = async () => {
  9192. let text = ''
  9193. if (aTool == 6) {
  9194. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9195. } else if (aTool == 3) {
  9196. text = await U.MD.D.I.getEditorContent(_iframe);
  9197. }
  9198. _loading.style.display = 'flex'
  9199. console.log(_loading);
  9200. var _ajs = _iframe.contentWindow.document.createElement("script");
  9201. _ajs.type = "text/javascript";
  9202. _ajs.innerHTML =
  9203. // 'console.log(' + _loading + ');\n' +
  9204. 'var _js = document.createElement("script");\n' +
  9205. '_js.type="text/javascript";\n' +
  9206. '_js.charset="UTF-8";\n' +
  9207. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9208. "_js.onload = function(){\n" +
  9209. ' var a = document.getElementsByTagName("img")\n' +
  9210. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9211. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9212. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9213. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9214. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9215. "beforeUpload_shishi(file," +
  9216. "'" +
  9217. _userid +
  9218. "'" +
  9219. ", " +
  9220. "'" +
  9221. _cid +
  9222. "'" +
  9223. ", " +
  9224. "'" +
  9225. _stage +
  9226. "'" +
  9227. ", " +
  9228. "'" +
  9229. _task +
  9230. "'" +
  9231. ", " +
  9232. "'" +
  9233. _tool +
  9234. "'" +
  9235. ", " +
  9236. "'" +
  9237. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9238. "'" +
  9239. ", " +
  9240. "'" +
  9241. aTool +
  9242. "'" +
  9243. ", " +
  9244. "`" +
  9245. text +
  9246. "`" +
  9247. ")\n" +
  9248. " });\n" +
  9249. "}\n" +
  9250. "document.head.appendChild(_js);\n";
  9251. _iframe.contentWindow.document.head.appendChild(_ajs);
  9252. }
  9253. }
  9254. //U.MD.D.I.openClick(str);
  9255. //如果有任务栏信息
  9256. // if (_taskbar) {
  9257. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9258. // }
  9259. }
  9260. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9261. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9262. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9263. _userinfo = US.userInfo, //登录用户信息
  9264. _userid = US.userInfo.userid //登录用户id
  9265. let _iframe;
  9266. let _cid = cid,
  9267. _stage = stage,
  9268. _task = task,
  9269. _tool = tool;
  9270. var _jie = $$("div", {
  9271. "style": {
  9272. "position": "absolute",
  9273. "bottom": "50px",
  9274. "right": "50px",
  9275. "zIndex": "9999",
  9276. "backgroundColor": "#2268bc",
  9277. "color": "#fff",
  9278. "padding": "12px 20px",
  9279. "cursor": "pointer",
  9280. "borderRadius": "4px",
  9281. },
  9282. "innerHTML": "上传模板"
  9283. })
  9284. let aTool = ''
  9285. let _loading = document.createElement('div')
  9286. _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;"
  9287. // _loading.id = "";
  9288. let _lchild = document.createElement('div')
  9289. let _limg = document.createElement('img')
  9290. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9291. _limg.style = "width: 26px;margin-right: 10px;"
  9292. _lchild.appendChild(_limg)
  9293. let _lspan = document.createElement('span')
  9294. _lspan.innerHTML = "上传中..."
  9295. _lchild.appendChild(_lspan)
  9296. _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%);"
  9297. _loading.appendChild(_lchild)
  9298. var _box = $$('div', {
  9299. "style": {
  9300. "position": "relative",
  9301. "width": "100%",
  9302. "height": "100%",
  9303. },
  9304. })
  9305. _box.appendChild(_loading)
  9306. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9307. switch (str) {
  9308. case "whiteboard":
  9309. aTool = 1;
  9310. _iframe = $$("iframe", {
  9311. "frameborder": "no",
  9312. "border": "0",
  9313. "scrolling ": "no",
  9314. "style": {
  9315. "cssText": "border:0;width:100%;height:100%"
  9316. },
  9317. "src": "https://beta.iwb.cocorobo.cn/"
  9318. })
  9319. _box.appendChild(_iframe);
  9320. _box.appendChild(_jie);
  9321. _formdiv = new U.UF.UI.form(
  9322. "电子白板",
  9323. _box, {
  9324. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9325. "style": {
  9326. "width": "90%",
  9327. "height": "90%",
  9328. "overflow": 'hidden'
  9329. },
  9330. "onresize": function () { }
  9331. }, {
  9332. closecallback: function () { }
  9333. }, {
  9334. "style": {
  9335. "height": "36px"
  9336. }
  9337. }).form; //创建窗体
  9338. _taskbar = {
  9339. "id": str + _formdiv.id,
  9340. "style": {
  9341. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9342. },
  9343. "name": "电子白板",
  9344. "forms": _formdiv,
  9345. "click": function () {
  9346. U.MD.D.I.openApplication(str, obj, info);
  9347. }
  9348. }
  9349. break;
  9350. case "mind":
  9351. aTool = 3;
  9352. _iframe = $$("iframe", {
  9353. "frameborder": "no",
  9354. "border": "0",
  9355. "scrolling ": "no",
  9356. "style": {
  9357. "cssText": "border:0;width:100%;height:100%"
  9358. },
  9359. "src": "/kityminder-editor/dist/index.html"
  9360. });
  9361. _box.appendChild(_iframe);
  9362. _box.appendChild(_jie);
  9363. _formdiv = new U.UF.UI.form(
  9364. "思维导图",
  9365. _box, { //"/jsmind/example/demo.html"
  9366. "id": "minds_Yu" + cid + stage + task + tool,
  9367. "style": {
  9368. "width": "90%",
  9369. "height": "90%",
  9370. "overflow": 'hidden'
  9371. },
  9372. "onresize": function () { }
  9373. }, {
  9374. closecallback: function () { }
  9375. }, {
  9376. "style": {
  9377. "height": "36px"
  9378. }
  9379. }).form; //创建窗体
  9380. _taskbar = {
  9381. "id": str + _formdiv.id,
  9382. "style": {
  9383. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9384. },
  9385. "name": "思维导图",
  9386. "forms": _formdiv,
  9387. "click": function () {
  9388. U.MD.D.I.openApplication(str, obj, info);
  9389. }
  9390. }
  9391. break;
  9392. case "doc":
  9393. aTool = 6;
  9394. _iframe = $$("iframe", {
  9395. "frameborder": "no",
  9396. "border": "0",
  9397. "scrolling ": "no",
  9398. "style": {
  9399. "cssText": "border:0;width:100%;height:100%"
  9400. },
  9401. "src": "/Office/Word/WordEditArea.htm"
  9402. })
  9403. _box.appendChild(_iframe);
  9404. _box.appendChild(_jie);
  9405. _formdiv = new U.UF.UI.form(
  9406. "协同文档",
  9407. _box, {
  9408. "id": "docs_Yu" + cid + stage + task + tool,
  9409. "style": {
  9410. "width": "90%",
  9411. "height": "90%",
  9412. "overflow": 'hidden'
  9413. },
  9414. "onresize": function () { }
  9415. }, {
  9416. closecallback: function () { }
  9417. }, {
  9418. "style": {
  9419. "height": "36px"
  9420. }
  9421. }).form; //创建窗体
  9422. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9423. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9424. })
  9425. _taskbar = {
  9426. "id": str + _formdiv.id,
  9427. "style": {
  9428. "backgroundImage": "url(/img/icon/doc.png)"
  9429. },
  9430. "name": "协同文档",
  9431. "forms": _formdiv,
  9432. "click": function () {
  9433. U.MD.D.I.openApplication(str, obj, info);
  9434. }
  9435. }
  9436. break;
  9437. case "CocoPi":
  9438. aTool = 57;
  9439. _iframe = $$("iframe", {
  9440. "allowpaymentrequest": "allowpaymentrequest",
  9441. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9442. "webkitallowfullscreen": "",
  9443. "mozallowfullscreen": "",
  9444. "frameborder": "no",
  9445. "border": "0",
  9446. "scrolling ": "no",
  9447. "style": {
  9448. "cssText": "border:0;width:100%;height:100%"
  9449. },
  9450. "src": "https://pi.cocorobo.cn/"
  9451. })
  9452. _box.appendChild(_iframe);
  9453. _box.appendChild(_jie);
  9454. _formdiv = new U.UF.UI.form(
  9455. "CocoPi",
  9456. _box, {
  9457. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9458. "style": {
  9459. "width": "90%",
  9460. "height": "90%",
  9461. "overflow": 'hidden'
  9462. },
  9463. "onresize": function () { }
  9464. }, {
  9465. closecallback: function () { }
  9466. }, {
  9467. "style": {
  9468. "height": "36px"
  9469. }
  9470. }).form; //创建窗体
  9471. _taskbar = {
  9472. "id": str + _formdiv.id,
  9473. "style": {
  9474. "backgroundImage": "url(/img/icon/cocopi.png)"
  9475. },
  9476. "name": "CocoPi",
  9477. "forms": _formdiv,
  9478. "click": function () {
  9479. U.MD.D.I.openApplication(str, obj, info);
  9480. }
  9481. }
  9482. break;
  9483. }
  9484. if (_iframe) {
  9485. if (str == 'doc') {
  9486. _iframe = _formdiv.querySelector('iframe')
  9487. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9488. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9489. })
  9490. if (onloadListener) {
  9491. _iframe.contentDocument.location.reload()
  9492. } else {
  9493. _iframe.contentDocument.location.reload()
  9494. }
  9495. } else if (str == 'mind') {
  9496. _iframe = _formdiv.querySelector('iframe')
  9497. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9498. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9499. })
  9500. if (onloadListener) {
  9501. _iframe.contentDocument.location.reload()
  9502. } else {
  9503. _iframe.contentDocument.location.reload()
  9504. }
  9505. } else if (str == 'whiteboard') {
  9506. _iframe = _formdiv.querySelector('iframe')
  9507. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9508. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9509. })
  9510. // if (onloadListener) {
  9511. // try {
  9512. // _iframe.src += "?cocorobo="+new Date().getTime()
  9513. // _iframe.contentWindow.document.location.reload()
  9514. // } catch (error) {
  9515. // }
  9516. // } else {
  9517. // _iframe.contentDocument.location.reload()
  9518. // }
  9519. } else if (str == 'CocoPi') {
  9520. _iframe = _formdiv.querySelector('iframe')
  9521. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9522. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9523. })
  9524. if (onloadListener) {
  9525. _iframe.contentDocument.location.reload()
  9526. } else {
  9527. _iframe.contentDocument.location.reload()
  9528. }
  9529. } else {
  9530. _iframe.onload = () => { };
  9531. }
  9532. _jie.onclick = async () => {
  9533. let text = ''
  9534. let type = '2'
  9535. if (aTool == 1) {
  9536. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9537. type = '3'
  9538. } else if (aTool == 6) {
  9539. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9540. type = '1'
  9541. } else if (aTool == 3) {
  9542. text = await U.MD.D.I.getEditorContent(_iframe);
  9543. type = '2'
  9544. } else if (aTool == 57) {
  9545. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9546. type = '4'
  9547. }
  9548. _loading.style.display = 'flex'
  9549. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9550. }
  9551. }
  9552. //U.MD.D.I.openClick(str);
  9553. //如果有任务栏信息
  9554. // if (_taskbar) {
  9555. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9556. // }
  9557. }
  9558. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9559. var xmlhttp;
  9560. var Mac, Sn, DeviceId
  9561. if (window.XMLHttpRequest) {
  9562. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9563. xmlhttp = new XMLHttpRequest();
  9564. } else {
  9565. // IE6, IE5 浏览器执行代码
  9566. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9567. }
  9568. xmlhttp.onreadystatechange = function () {
  9569. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9570. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9571. // resolve(res.value[0][0].text);
  9572. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9573. }
  9574. }
  9575. }
  9576. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9577. xmlhttp.send();
  9578. }
  9579. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9580. var xmlhttp;
  9581. var Mac, Sn, DeviceId
  9582. if (window.XMLHttpRequest) {
  9583. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9584. xmlhttp = new XMLHttpRequest();
  9585. } else {
  9586. // IE6, IE5 浏览器执行代码
  9587. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9588. }
  9589. xmlhttp.onreadystatechange = function () {
  9590. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9591. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9592. // resolve(res.value[0][0].text);
  9593. if (type == '2') {
  9594. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9595. } else if (type == '3') {
  9596. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9597. } else if (type == '4') {
  9598. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9599. }
  9600. } else {
  9601. if (type == '2') {
  9602. iframe.contentWindow.editor.minder.importData('json', '')
  9603. } else if (type == '3') {
  9604. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9605. } else if (type == '4') {
  9606. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9607. }
  9608. }
  9609. }
  9610. }
  9611. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9612. xmlhttp.send();
  9613. }
  9614. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9615. var xmlhttp;
  9616. var Mac, Sn, DeviceId
  9617. if (window.XMLHttpRequest) {
  9618. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9619. xmlhttp = new XMLHttpRequest();
  9620. } else {
  9621. // IE6, IE5 浏览器执行代码
  9622. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9623. }
  9624. xmlhttp.onreadystatechange = function () {
  9625. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9626. if (xmlhttp.response) {
  9627. // resolve(res.value[0][0].text);
  9628. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9629. // $(fileInput).val('');
  9630. // });
  9631. span.innerHTML = '上传成功'
  9632. setTimeout(() => {
  9633. loading.style.display = 'none'
  9634. }, 1000);
  9635. }
  9636. }
  9637. }
  9638. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9639. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9640. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9641. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9642. // 设置请求头,表示请求体的编码格式
  9643. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9644. // 设置请求体,使用url-encoded格式的数据
  9645. }
  9646. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9647. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9648. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9649. _userinfo = US.userInfo, //登录用户信息
  9650. _userid = US.userInfo.userid //登录用户id
  9651. let _iframe;
  9652. let _cid = cid,
  9653. _stage = stage,
  9654. _task = task,
  9655. _tool = tool;
  9656. var _jie = $$("div", {
  9657. "style": {
  9658. "position": "absolute",
  9659. "bottom": "50px",
  9660. "right": "50px",
  9661. "zIndex": "9999",
  9662. "backgroundColor": "#2268bc",
  9663. "color": "#fff",
  9664. "padding": "12px 20px",
  9665. "cursor": "pointer",
  9666. "borderRadius": "4px",
  9667. },
  9668. "innerHTML": "提交作业"
  9669. })
  9670. let aTool = ''
  9671. let _loading = document.createElement('div')
  9672. _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;"
  9673. // _loading.id = "";
  9674. let _lchild = document.createElement('div')
  9675. let _limg = document.createElement('img')
  9676. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9677. _limg.style = "width: 26px;margin-right: 10px;"
  9678. _lchild.appendChild(_limg)
  9679. let _lspan = document.createElement('span')
  9680. _lspan.innerHTML = "上传中..."
  9681. _lchild.appendChild(_lspan)
  9682. _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%);"
  9683. _loading.appendChild(_lchild)
  9684. var _box = $$('div', {
  9685. "style": {
  9686. "position": "relative",
  9687. "width": "100%",
  9688. "height": "100%",
  9689. },
  9690. })
  9691. _box.appendChild(_loading)
  9692. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9693. switch (str) {
  9694. case "CocoPi":
  9695. aTool = 57;
  9696. _iframe = $$("iframe", {
  9697. "allowpaymentrequest": "allowpaymentrequest",
  9698. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9699. "webkitallowfullscreen": "",
  9700. "mozallowfullscreen": "",
  9701. "frameborder": "no",
  9702. "border": "0",
  9703. "scrolling ": "no",
  9704. "style": {
  9705. "cssText": "border:0;width:100%;height:100%"
  9706. },
  9707. "src": "https://pi.cocorobo.cn/"
  9708. })
  9709. _box.appendChild(_iframe);
  9710. _box.appendChild(_jie);
  9711. _formdiv = new U.UF.UI.form(
  9712. "CocoPi",
  9713. _box, {
  9714. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9715. "style": {
  9716. "width": "90%",
  9717. "height": "90%",
  9718. "overflow": 'hidden'
  9719. },
  9720. "onresize": function () { }
  9721. }, {
  9722. closecallback: function () { }
  9723. }, {
  9724. "style": {
  9725. "height": "36px"
  9726. }
  9727. }).form; //创建窗体
  9728. _taskbar = {
  9729. "id": str + _formdiv.id,
  9730. "style": {
  9731. "backgroundImage": "url(/img/icon/cocopi.png)"
  9732. },
  9733. "name": "CocoPi",
  9734. "forms": _formdiv,
  9735. "click": function () {
  9736. U.MD.D.I.openApplication(str, obj, info);
  9737. }
  9738. }
  9739. break;
  9740. }
  9741. if (_iframe) {
  9742. if (str == 'CocoPi') {
  9743. _iframe = _formdiv.querySelector('iframe')
  9744. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9745. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9746. })
  9747. if (onloadListener) {
  9748. _iframe.contentDocument.location.reload()
  9749. } else {
  9750. _iframe.contentDocument.location.reload()
  9751. }
  9752. }
  9753. _jie.onclick = async () => {
  9754. let text = ''
  9755. if (aTool == 57) {
  9756. text = _iframe.contentWindow.getLoadXmlStr()
  9757. }
  9758. _loading.style.display = 'flex'
  9759. console.log(_loading);
  9760. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9761. _loading.style.display = 'none'
  9762. let _div = document.createElement('div')
  9763. _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;"
  9764. let _inner = document.createElement('div')
  9765. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9766. _inner.innerHTML = "上传成功"
  9767. _div.appendChild(_inner)
  9768. _iframe.contentWindow.window.document.body.appendChild(_div)
  9769. _div.onclick = () => {
  9770. _iframe.contentWindow.window.document.body.removeChild(_div)
  9771. }
  9772. setTimeout(() => {
  9773. _iframe.contentWindow.window.document.body.removeChild(_div)
  9774. }, 1000);
  9775. }, [], { "type": "POST", "withCredentials": true });
  9776. }
  9777. }
  9778. }
  9779. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9780. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9781. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9782. _userid = student.userid, //登录用户id
  9783. _username = student.student //用户名字
  9784. let _iframe;
  9785. let _cid = cid,
  9786. _stage = stage,
  9787. _task = task,
  9788. _tool = tool;
  9789. var _jie = $$("div", {
  9790. "style": {
  9791. "position": "absolute",
  9792. "bottom": "50px",
  9793. "right": "50px",
  9794. "zIndex": "9999",
  9795. "backgroundColor": "#2268bc",
  9796. "color": "#fff",
  9797. "padding": "12px 20px",
  9798. "cursor": "pointer",
  9799. "borderRadius": "4px",
  9800. },
  9801. "innerHTML": "提交作业"
  9802. })
  9803. let aTool = ''
  9804. let _loading = document.createElement('div')
  9805. _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;"
  9806. // _loading.id = "";
  9807. let _lchild = document.createElement('div')
  9808. let _limg = document.createElement('img')
  9809. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9810. _limg.style = "width: 26px;margin-right: 10px;"
  9811. _lchild.appendChild(_limg)
  9812. let _lspan = document.createElement('span')
  9813. _lspan.innerHTML = "上传中..."
  9814. _lchild.appendChild(_lspan)
  9815. _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%);"
  9816. _loading.appendChild(_lchild)
  9817. var _box = $$('div', {
  9818. "style": {
  9819. "position": "relative",
  9820. "width": "100%",
  9821. "height": "100%",
  9822. },
  9823. })
  9824. _box.appendChild(_loading)
  9825. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9826. switch (str) {
  9827. case "CocoPi":
  9828. aTool = 57;
  9829. _iframe = $$("iframe", {
  9830. "allowpaymentrequest": "allowpaymentrequest",
  9831. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9832. "webkitallowfullscreen": "",
  9833. "mozallowfullscreen": "",
  9834. "frameborder": "no",
  9835. "border": "0",
  9836. "scrolling ": "no",
  9837. "style": {
  9838. "cssText": "border:0;width:100%;height:100%"
  9839. },
  9840. "src": "https://pi.cocorobo.cn/"
  9841. })
  9842. _box.appendChild(_iframe);
  9843. _box.appendChild(_jie);
  9844. _formdiv = new U.UF.UI.form(
  9845. "CocoPi-" + _username,
  9846. _box, {
  9847. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9848. "style": {
  9849. "width": "90%",
  9850. "height": "90%",
  9851. "overflow": 'hidden'
  9852. },
  9853. "onresize": function () { }
  9854. }, {
  9855. closecallback: function () { }
  9856. }, {
  9857. "style": {
  9858. "height": "36px"
  9859. }
  9860. }).form; //创建窗体
  9861. _taskbar = {
  9862. "id": str + _formdiv.id,
  9863. "style": {
  9864. "backgroundImage": "url(/img/icon/cocopi.png)"
  9865. },
  9866. "name": "CocoPi",
  9867. "forms": _formdiv,
  9868. "click": function () {
  9869. U.MD.D.I.openApplication(str, obj, info);
  9870. }
  9871. }
  9872. break;
  9873. }
  9874. if (_iframe) {
  9875. if (str == 'CocoPi') {
  9876. _iframe = _formdiv.querySelector('iframe')
  9877. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9878. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9879. })
  9880. if (onloadListener) {
  9881. _iframe.contentDocument.location.reload()
  9882. } else {
  9883. _iframe.contentDocument.location.reload()
  9884. }
  9885. }
  9886. _jie.onclick = async () => {
  9887. let text = ''
  9888. if (aTool == 57) {
  9889. text = _iframe.contentWindow.getLoadXmlStr()
  9890. }
  9891. _loading.style.display = 'flex'
  9892. console.log(_loading);
  9893. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9894. _loading.style.display = 'none'
  9895. let _div = document.createElement('div')
  9896. _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;"
  9897. let _inner = document.createElement('div')
  9898. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9899. _inner.innerHTML = "上传成功"
  9900. _div.appendChild(_inner)
  9901. _iframe.contentWindow.window.document.body.appendChild(_div)
  9902. _div.onclick = () => {
  9903. _iframe.contentWindow.window.document.body.removeChild(_div)
  9904. }
  9905. setTimeout(() => {
  9906. _iframe.contentWindow.window.document.body.removeChild(_div)
  9907. }, 1000);
  9908. }, [], { "type": "POST", "withCredentials": true });
  9909. }
  9910. }
  9911. }
  9912. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9913. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9914. if (res.value[0].length > 0) {
  9915. if (atool == 57) {
  9916. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9917. }
  9918. } else {
  9919. if (atool == 57) {
  9920. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9921. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9922. }
  9923. }
  9924. }, [], { "type": "POST", "withCredentials": true });
  9925. }