DeskTop.js 661 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北师大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北师大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1520. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1522. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. ];
  1525. //010503
  1526. U.MD.D.I.x010503TeacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. ];
  1537. //010503
  1538. U.MD.D.I.x010503StudentDeskIcon = [
  1539. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //SPROUT Lab
  1545. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1553. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //SPROUT Lab
  1557. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1558. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //010204
  1564. U.MD.D.I.x010204TeacherDeskIcon = [
  1565. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204StudentDeskIcon = [
  1570. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. ];
  1575. //trail
  1576. U.MD.D.I.trailTeacherDeskIcon = [
  1577. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1578. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailStudentDeskIcon = [
  1582. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504TeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1592. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1593. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. ];
  1600. //010504
  1601. U.MD.D.I.x010504StudentDeskIcon = [
  1602. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //SCNUET
  1608. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1614. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1615. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1619. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1621. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1622. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1626. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1627. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1628. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1630. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1631. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1632. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1633. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1634. ];
  1635. //SCNUET
  1636. U.MD.D.I.SCNUETAdminDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1641. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1642. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1643. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1644. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1645. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1646. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1647. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1648. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1649. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1650. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1653. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1654. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1655. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1656. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1657. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1658. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1659. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1660. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1661. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1662. ];
  1663. //SCNUET
  1664. U.MD.D.I.SCNUETStudentDeskIcon = [
  1665. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //x020201
  1671. U.MD.D.I.x020201TeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1677. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1680. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1686. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1687. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1688. ];
  1689. //x020201
  1690. U.MD.D.I.x020201AdminDeskIcon = [
  1691. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1692. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1696. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1702. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1708. ];
  1709. //020201
  1710. U.MD.D.I.x020201StudentDeskIcon = [
  1711. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //010611
  1717. U.MD.D.I.x010611TeacherDeskIcon = [
  1718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. ];
  1728. //010611
  1729. U.MD.D.I.x010611StudentDeskIcon = [
  1730. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. ];
  1735. //tianyuan
  1736. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. ];
  1748. //010611
  1749. U.MD.D.I.tianyuanStudentDeskIcon = [
  1750. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1751. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1752. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1754. ];
  1755. //#region 桌面初始化a
  1756. /**
  1757. * 初始化桌面的起始函数
  1758. *
  1759. */
  1760. U.MD.D.I.init = function () {
  1761. if ($("#U_MD_D_K")[0]) {
  1762. //初始化桌面图标
  1763. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1764. // var clickUrl = ':12588/requestIp.php';
  1765. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1766. // U.MD.D.I.Ip = data;
  1767. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1768. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1769. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1770. // })
  1771. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1772. // })
  1773. }
  1774. }
  1775. /**
  1776. * 模式切换
  1777. *
  1778. */
  1779. U.MD.D.I.ModeCheck = function (type) {
  1780. if (US.Config.type == type) {
  1781. return
  1782. }
  1783. US.Config.type = type
  1784. $('.U_PBL_Check .active')[0].className = ''
  1785. if (type == 1) {
  1786. $('.U_PBL_Check div')[0].className = 'active'
  1787. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1788. } else {
  1789. $('.U_PBL_Check div')[1].className = 'active'
  1790. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1791. }
  1792. //初始化桌面图标
  1793. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1794. if (type == 2) {
  1795. U.MD.D.I.openApplication("project")
  1796. }
  1797. }
  1798. /**
  1799. * 隐藏任务栏
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbar = function (el) {
  1804. //任务栏位置变小
  1805. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1806. //桌面的位置变大
  1807. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1808. }
  1809. /**
  1810. * 隐藏任务栏
  1811. *
  1812. * @param {element} 桌面元素
  1813. */
  1814. U.MD.D.I.hiddenTaskbarout = function (el) {
  1815. //任务栏位置变小
  1816. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1817. //任务栏位置变化
  1818. U.selectEl(el).css({ "bottom": "-60px" });
  1819. //桌面的位置变大
  1820. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1821. }
  1822. }
  1823. /**
  1824. * 初始化打印桌面图标
  1825. *
  1826. * @param {element} 桌面元素
  1827. */
  1828. U.MD.D.I.initDesktopIcons = function (el, type) {
  1829. var i, //用于循环
  1830. _content, //桌面图标元素
  1831. _iconcontent, //桌面图标元素
  1832. _frag = $$("frag"), //定义一个碎片元素
  1833. _type = US.userInfo.type,
  1834. _org = US.userInfo.org,
  1835. _oid = US.userInfo.organizeid,
  1836. _role = US.userInfo.role,
  1837. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1838. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1839. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1840. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1841. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1842. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1843. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1844. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1845. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1846. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1847. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1848. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1849. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1850. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1851. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1852. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1853. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1854. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1855. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1856. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1857. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1858. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1859. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1860. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1861. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1862. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1863. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1864. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1865. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1866. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1867. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1868. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1869. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1870. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1871. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1872. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1873. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1874. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1875. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1876. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1877. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1878. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1879. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1880. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1881. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1882. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1883. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1884. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1885. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1886. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1887. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1888. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1889. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1890. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1891. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1892. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1893. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1894. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1895. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1896. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1897. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1898. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1899. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1900. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1901. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1902. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1903. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1904. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1905. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1906. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1907. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1908. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1909. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1910. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1911. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1912. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1913. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1914. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1915. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1916. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1917. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1918. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1919. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1920. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1921. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1922. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1923. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1924. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1925. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1926. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1927. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1928. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1929. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1930. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1931. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1932. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1933. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1934. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1935. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1936. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1937. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1938. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1939. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1940. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1941. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1942. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1943. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1944. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1945. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1946. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1947. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1948. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1949. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'];
  1950. //清楚桌面图标
  1951. el.innerHTML = "";
  1952. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1953. _teacherDesktopIconInfo.push(
  1954. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1955. { "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)" } },
  1956. )
  1957. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1958. }
  1959. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1960. _teacherDesktopIconInfo.push(
  1961. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1962. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1965. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1966. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1967. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1968. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1969. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1970. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1971. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1974. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1975. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1976. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. )
  1980. }
  1981. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1982. _teacherDesktopIconInfo.push(
  1983. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1984. )
  1985. }
  1986. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1987. // _teacherDesktopIconInfo.push(
  1988. // )
  1989. // }
  1990. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1993. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1994. )
  1995. }
  1996. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1997. _teacherDesktopIconInfo.push(
  1998. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1999. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2000. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2001. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. )
  2005. _studentDesktopIconInfo.push(
  2006. )
  2007. }
  2008. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2009. _teacherDesktopIconInfo.push(
  2010. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2011. )
  2012. _studentDesktopIconInfo.push(
  2013. )
  2014. }
  2015. //010606 组织
  2016. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2017. _teacherDesktopIconInfo.push(
  2018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2019. )
  2020. _studentDesktopIconInfo.push(
  2021. )
  2022. }
  2023. //麒麟二中 和 民新小学
  2024. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2025. _teacherDesktopIconInfo.push(
  2026. )
  2027. }
  2028. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2029. _teacherDesktopIconInfo.push(
  2030. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2031. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2032. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2033. )
  2034. }
  2035. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2036. _hkTeacherDeskIconInfo.push(
  2037. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2038. )
  2039. }
  2040. //北师大附中(010601)
  2041. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2042. // _teacherDesktopIconInfo.push(
  2043. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. // )
  2045. // _studentDesktopIconInfo.push(
  2046. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. // )
  2048. // }
  2049. //樂善堂余近卿中學
  2050. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. // Education Artificial Intelligence
  2056. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2059. )
  2060. }
  2061. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2062. _teacherDesktopIconInfo.push(
  2063. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2064. )
  2065. }
  2066. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2067. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2068. _teacherDesktopIconInfo.push(
  2069. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2070. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2071. )
  2072. }
  2073. //麒麟二中
  2074. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2075. _studentDesktopIconInfo.push(
  2076. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2077. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2078. )
  2079. }
  2080. //万科双语
  2081. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2082. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2083. if (el.Name == '项目管理') {
  2084. el.Name = 'PBL项目'
  2085. }
  2086. return el
  2087. })
  2088. _studentDesktopIconInfo3.push(
  2089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2090. )
  2091. }
  2092. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2093. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2094. return el.Name != '魔盒识字' && el.Name != '24点'
  2095. })
  2096. }
  2097. 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) {
  2098. _studentDesktopIconInfo.push(
  2099. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2100. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2101. )
  2102. }
  2103. //循环创建桌面图标
  2104. if (type == 1) {
  2105. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2106. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_studentDesktopIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_studentDesktopIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2123. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_hkZJLSStudentDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2138. } //
  2139. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2140. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_ytyStudentDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_ytyStudentDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2155. } //
  2156. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2157. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_jccssylStudentDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_jccssylStudentDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2174. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_scnuaiStudentDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_scnuaiStudentDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2189. }
  2190. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2191. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_caleStudentDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_caleStudentDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2208. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_thuioeStudentDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_thuioeStudentDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2223. }
  2224. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2225. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_tpcStudentDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_tpcStudentDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2240. } //
  2241. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2242. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_chjyjStudentDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_chjyjStudentDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2259. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_szjkyStudentDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_szjkyStudentDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2274. }
  2275. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2276. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_x020201StudentDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_x020201StudentDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2293. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_SCNUETStudentDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_SCNUETStudentDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2310. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_dseiStudentDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_dseiStudentDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2327. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2342. }
  2343. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2344. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_nsfxStudentDeskIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_nsfxStudentDeskIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2361. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_stiaStudentDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_stiaStudentDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2378. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_szdjgStudentDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_szdjgStudentDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2395. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_x010607StudentDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_x010607StudentDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2412. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_xhlyStudentDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_xhlyStudentDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2429. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2444. }
  2445. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2446. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_x010503StudentDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_x010503StudentDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2463. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x010504StudentDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_x010504StudentDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2480. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_x010204StudentDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_x010204StudentDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2497. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_trailStudentDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_trailStudentDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2514. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2531. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_x010608StudentDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x010608StudentDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2548. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_x010611StudentDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_x010611StudentDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2565. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_tianyuantudentDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_tianyuantudentDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2582. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_siesStudentDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_siesStudentDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2599. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_guzmsStudentDeskIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_guzmsStudentDeskIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2616. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_hkStudentDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_hkStudentDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2633. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_hkaceStudentDeskIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_hkaceStudentDeskIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2648. }
  2649. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2650. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_BSDNSstudentDesktopIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2667. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_cocobizStudentDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_cocobizStudentDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2684. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_xxzjkyStudentDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2701. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2702. _content = $$("div", {
  2703. className: "U_MD_D_KO",
  2704. "onmousedown": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_studentDesktopIconInfo[i]]),
  2708. "onclick": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_studentDesktopIconInfo[i]])
  2712. }, _frag); //
  2713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2716. }
  2717. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2718. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  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. }, [_tcStudentDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_tcStudentDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2735. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2736. _content = $$("div", {
  2737. className: "U_MD_D_KO",
  2738. "onmousedown": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_szscStudentDeskIconInfo[i]]),
  2742. "onclick": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_szscStudentDeskIconInfo[i]])
  2746. }, _frag); //
  2747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2750. }
  2751. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2752. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_studentDesktopIconInfo3[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_studentDesktopIconInfo3[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2767. }
  2768. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2769. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2770. _content = $$("div", {
  2771. className: "U_MD_D_KO",
  2772. "onmousedown": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_studentDesktopIconInfo2[i]]),
  2776. "onclick": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_studentDesktopIconInfo2[i]])
  2780. }, _frag); //
  2781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2784. }
  2785. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2786. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2787. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2788. continue
  2789. }
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_wanketeacherDesktopIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_wanketeacherDesktopIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2806. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2807. _content = $$("div", {
  2808. className: "U_MD_D_KO",
  2809. "onmousedown": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_wankeAdminDesktopIconInfo[i]]),
  2813. "onclick": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_wankeAdminDesktopIconInfo[i]])
  2817. }, _frag); //
  2818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2821. }
  2822. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2823. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2824. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2825. continue
  2826. }
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_scnuaiTeacherDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2843. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2844. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2845. continue
  2846. }
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_BSDNSteacherDesktopIconInfo[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2861. }
  2862. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2863. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2864. _content = $$("div", {
  2865. className: "U_MD_D_KO",
  2866. "onmousedown": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_scnuaiAdminDeskIconInfo[i]]),
  2870. "onclick": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_scnuaiAdminDeskIconInfo[i]])
  2874. }, _frag); //
  2875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2878. }
  2879. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2880. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2881. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2882. continue
  2883. }
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_jccssylTeacherDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_jccssylTeacherDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2900. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2901. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2902. continue
  2903. }
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_caleTeacherDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_caleTeacherDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2920. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_tpcOrganizerDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_tpcOrganizerDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2937. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2938. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2939. continue
  2940. }
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_tpcTeacherDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_tpcTeacherDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2957. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2958. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_teacherDesktopIconInfo2[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_teacherDesktopIconInfo2[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2977. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_thuioeTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_thuioeTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2997. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2998. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2999. continue
  3000. }
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_lotechTeacherDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_lotechTeacherDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3015. }//
  3016. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3017. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3018. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3019. continue
  3020. }
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3035. }
  3036. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3037. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3038. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3039. continue
  3040. }
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_siesTeacherDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_siesTeacherDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3057. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3058. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3059. continue
  3060. }
  3061. _content = $$("div", {
  3062. className: "U_MD_D_KO",
  3063. "onmousedown": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_guzmsTeacherDeskIconInfo[i]]),
  3067. "onclick": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_guzmsTeacherDeskIconInfo[i]])
  3071. }, _frag); //
  3072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3075. }
  3076. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3077. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3078. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3079. continue
  3080. }
  3081. _content = $$("div", {
  3082. className: "U_MD_D_KO",
  3083. "onmousedown": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_longhuaTeacherDeskIconInfo[i]]),
  3087. "onclick": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_longhuaTeacherDeskIconInfo[i]])
  3091. }, _frag); //
  3092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3095. }
  3096. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3097. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3098. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3099. continue
  3100. }
  3101. _content = $$("div", {
  3102. className: "U_MD_D_KO",
  3103. "onmousedown": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_ytyTeacherDeskIconInfo[i]]),
  3107. "onclick": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_ytyTeacherDeskIconInfo[i]])
  3111. }, _frag); //
  3112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3115. }
  3116. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3117. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3118. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3119. continue
  3120. }
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_yunhaiTeacherDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3135. } //_hkStudentDeskIconInfo
  3136. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3137. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3138. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3139. continue
  3140. }
  3141. _content = $$("div", {
  3142. className: "U_MD_D_KO",
  3143. "onmousedown": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3147. "onclick": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3151. }, _frag); //
  3152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3155. }
  3156. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3157. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3158. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3159. continue
  3160. }
  3161. _content = $$("div", {
  3162. className: "U_MD_D_KO",
  3163. "onmousedown": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_hkTeacherDeskIconInfo[i]]),
  3167. "onclick": U.UF.C.closure(function (obj) {
  3168. //防止拖动图标即打开了桌面应用
  3169. U.MD.D.click(this, obj);
  3170. }, [_hkTeacherDeskIconInfo[i]])
  3171. }, _frag); //
  3172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3175. }
  3176. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3177. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3178. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3179. continue
  3180. }
  3181. _content = $$("div", {
  3182. className: "U_MD_D_KO",
  3183. "onmousedown": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_hkaceTeacherDeskIconInfo[i]]),
  3187. "onclick": U.UF.C.closure(function (obj) {
  3188. //防止拖动图标即打开了桌面应用
  3189. U.MD.D.click(this, obj);
  3190. }, [_hkaceTeacherDeskIconInfo[i]])
  3191. }, _frag); //
  3192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3195. }
  3196. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3197. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3198. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3199. continue
  3200. }
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_cocobizTeacherDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_cocobizTeacherDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3217. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3218. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3219. continue
  3220. }
  3221. _content = $$("div", {
  3222. className: "U_MD_D_KO",
  3223. "onmousedown": U.UF.C.closure(function (obj) {
  3224. //防止拖动图标即打开了桌面应用
  3225. U.MD.D.click(this, obj);
  3226. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3227. "onclick": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3231. }, _frag); //
  3232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3235. }
  3236. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3237. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3238. _content = $$("div", {
  3239. className: "U_MD_D_KO",
  3240. "onmousedown": U.UF.C.closure(function (obj) {
  3241. //防止拖动图标即打开了桌面应用
  3242. U.MD.D.click(this, obj);
  3243. }, [_gdjgAdminDeskIconInfo[i]]),
  3244. "onclick": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_gdjgAdminDeskIconInfo[i]])
  3248. }, _frag); //
  3249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3252. }
  3253. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3254. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3255. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3256. continue
  3257. }
  3258. _content = $$("div", {
  3259. className: "U_MD_D_KO",
  3260. "onmousedown": U.UF.C.closure(function (obj) {
  3261. //防止拖动图标即打开了桌面应用
  3262. U.MD.D.click(this, obj);
  3263. }, [_gdjgTeacherDeskIconInfo[i]]),
  3264. "onclick": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_gdjgTeacherDeskIconInfo[i]])
  3268. }, _frag); //
  3269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3272. }
  3273. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3274. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3275. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3276. continue
  3277. }
  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. }, [_szherTeacherDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_szherTeacherDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3294. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3295. _content = $$("div", {
  3296. className: "U_MD_D_KO",
  3297. "onmousedown": U.UF.C.closure(function (obj) {
  3298. //防止拖动图标即打开了桌面应用
  3299. U.MD.D.click(this, obj);
  3300. }, [_heyuannAdminDeskIconInfo[i]]),
  3301. "onclick": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_heyuannAdminDeskIconInfo[i]])
  3305. }, _frag); //
  3306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3309. }
  3310. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3311. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3312. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3313. continue
  3314. }
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_heyuanTeacherDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3329. } //
  3330. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3331. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3332. _content = $$("div", {
  3333. className: "U_MD_D_KO",
  3334. "onmousedown": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_dseiAdminDeskIconInfo[i]]),
  3338. "onclick": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_dseiAdminDeskIconInfo[i]])
  3342. }, _frag); //
  3343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3346. }
  3347. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3348. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3349. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3350. continue
  3351. }
  3352. _content = $$("div", {
  3353. className: "U_MD_D_KO",
  3354. "onmousedown": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_dseiTeacherDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_dseiTeacherDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3366. } //
  3367. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3368. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_chjyjAdminDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_chjyjAdminDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3383. }//
  3384. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3385. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_chjyjTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_chjyjTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. }
  3404. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3405. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3406. _content = $$("div", {
  3407. className: "U_MD_D_KO",
  3408. "onmousedown": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_szjkyAdminDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_szjkyAdminDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3420. }//
  3421. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3422. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3423. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3424. continue
  3425. }
  3426. _content = $$("div", {
  3427. className: "U_MD_D_KO",
  3428. "onmousedown": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_szjkyTeacherDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_szjkyTeacherDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3440. }
  3441. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3442. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3443. _content = $$("div", {
  3444. className: "U_MD_D_KO",
  3445. "onmousedown": U.UF.C.closure(function (obj) {
  3446. //防止拖动图标即打开了桌面应用
  3447. U.MD.D.click(this, obj);
  3448. }, [_x020201AdminDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_x020201AdminDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3457. }//
  3458. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3459. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3460. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3461. continue
  3462. }
  3463. _content = $$("div", {
  3464. className: "U_MD_D_KO",
  3465. "onmousedown": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_x020201TeacherDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_x020201TeacherDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3477. }
  3478. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3479. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_SCNUETAdminDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_SCNUETAdminDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3494. }//
  3495. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3496. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3497. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3498. continue
  3499. }
  3500. _content = $$("div", {
  3501. className: "U_MD_D_KO",
  3502. "onmousedown": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3506. "onclick": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_SCNUETTeacherDeskIconInfo[i]])
  3510. }, _frag); //
  3511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3514. }
  3515. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3516. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_futianAdminDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_futianAdminDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3533. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3534. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3535. continue
  3536. }
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_futianTeacherDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_futianTeacherDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3551. }
  3552. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3553. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3554. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3555. continue
  3556. }
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_MingdeTeacherDeskIcon[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_MingdeTeacherDeskIcon[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3571. }
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3573. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_lhsAdminDesktopIconInfo[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_lhsAdminDesktopIconInfo[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3588. }
  3589. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3590. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3591. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3592. continue
  3593. }
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_lhsteacherDesktopIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_lhsteacherDesktopIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3610. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3611. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖动图标即打开了桌面应用
  3622. U.MD.D.click(this, obj);
  3623. }, [_zhoujiateacherDesktopIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3630. for (i = 0; i < _hanDeskIcon.length; i++) {
  3631. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_hanDeskIcon[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖动图标即打开了桌面应用
  3642. U.MD.D.click(this, obj);
  3643. }, [_hanDeskIcon[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3650. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3651. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3652. continue
  3653. }
  3654. _content = $$("div", {
  3655. className: "U_MD_D_KO",
  3656. "onmousedown": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_orgStemDeskIcon[i]]),
  3660. "onclick": U.UF.C.closure(function (obj) {
  3661. //防止拖动图标即打开了桌面应用
  3662. U.MD.D.click(this, obj);
  3663. }, [_orgStemDeskIcon[i]])
  3664. }, _frag); //
  3665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3668. }
  3669. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3670. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3671. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3672. continue
  3673. }
  3674. _content = $$("div", {
  3675. className: "U_MD_D_KO",
  3676. "onmousedown": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_szulsDeskIcon[i]]),
  3680. "onclick": U.UF.C.closure(function (obj) {
  3681. //防止拖动图标即打开了桌面应用
  3682. U.MD.D.click(this, obj);
  3683. }, [_szulsDeskIcon[i]])
  3684. }, _frag); //
  3685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3688. }
  3689. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3690. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3691. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3692. continue
  3693. }
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_orgDesktopIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_orgDesktopIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3708. }
  3709. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3710. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3711. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_schoolDesktopIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_schoolDesktopIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3730. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3731. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3732. continue
  3733. }
  3734. _content = $$("div", {
  3735. className: "U_MD_D_KO",
  3736. "onmousedown": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_GMteacherDesktopIconInfo[i]]),
  3740. "onclick": U.UF.C.closure(function (obj) {
  3741. //防止拖动图标即打开了桌面应用
  3742. U.MD.D.click(this, obj);
  3743. }, [_GMteacherDesktopIconInfo[i]])
  3744. }, _frag); //
  3745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3748. }
  3749. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3750. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3751. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3752. continue
  3753. }
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_SONGteacherDesktopIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_SONGteacherDesktopIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3770. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_GMstudentDesktopIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_GMstudentDesktopIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3787. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3788. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_tcTeacherDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_tcTeacherDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3807. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_tcOrganizerDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_tcOrganizerDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3827. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3828. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_szscTeacherDeskIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_szscTeacherDeskIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3847. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3848. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3849. continue
  3850. }
  3851. _content = $$("div", {
  3852. className: "U_MD_D_KO",
  3853. "onmousedown": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_szscOrganizerDeskIconInfo[i]]),
  3857. "onclick": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_szscOrganizerDeskIconInfo[i]])
  3861. }, _frag); //
  3862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3865. }
  3866. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3867. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3868. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3869. continue
  3870. }
  3871. _content = $$("div", {
  3872. className: "U_MD_D_KO",
  3873. "onmousedown": U.UF.C.closure(function (obj) {
  3874. //防止拖动图标即打开了桌面应用
  3875. U.MD.D.click(this, obj);
  3876. }, [_nsfxTeacherDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖动图标即打开了桌面应用
  3879. U.MD.D.click(this, obj);
  3880. }, [_nsfxTeacherDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3885. }
  3886. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3887. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3889. continue
  3890. }
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖动图标即打开了桌面应用
  3895. U.MD.D.click(this, obj);
  3896. }, [_stiaTeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_stiaTeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3907. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3908. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3909. continue
  3910. }
  3911. _content = $$("div", {
  3912. className: "U_MD_D_KO",
  3913. "onmousedown": U.UF.C.closure(function (obj) {
  3914. //防止拖动图标即打开了桌面应用
  3915. U.MD.D.click(this, obj);
  3916. }, [_szdjgTeacherDeskIconInfo[i]]),
  3917. "onclick": U.UF.C.closure(function (obj) {
  3918. //防止拖动图标即打开了桌面应用
  3919. U.MD.D.click(this, obj);
  3920. }, [_szdjgTeacherDeskIconInfo[i]])
  3921. }, _frag); //
  3922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3925. }
  3926. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3927. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3928. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3929. continue
  3930. }
  3931. _content = $$("div", {
  3932. className: "U_MD_D_KO",
  3933. "onmousedown": U.UF.C.closure(function (obj) {
  3934. //防止拖动图标即打开了桌面应用
  3935. U.MD.D.click(this, obj);
  3936. }, [_x010607TeacherDeskIconInfo[i]]),
  3937. "onclick": U.UF.C.closure(function (obj) {
  3938. //防止拖动图标即打开了桌面应用
  3939. U.MD.D.click(this, obj);
  3940. }, [_x010607TeacherDeskIconInfo[i]])
  3941. }, _frag); //
  3942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3945. }
  3946. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3947. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3948. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3949. continue
  3950. }
  3951. _content = $$("div", {
  3952. className: "U_MD_D_KO",
  3953. "onmousedown": U.UF.C.closure(function (obj) {
  3954. //防止拖动图标即打开了桌面应用
  3955. U.MD.D.click(this, obj);
  3956. }, [_xhlyTeacherDeskIconInfo[i]]),
  3957. "onclick": U.UF.C.closure(function (obj) {
  3958. //防止拖动图标即打开了桌面应用
  3959. U.MD.D.click(this, obj);
  3960. }, [_xhlyTeacherDeskIconInfo[i]])
  3961. }, _frag); //
  3962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3965. }
  3966. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3967. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3968. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3969. continue
  3970. }
  3971. _content = $$("div", {
  3972. className: "U_MD_D_KO",
  3973. "onmousedown": U.UF.C.closure(function (obj) {
  3974. //防止拖动图标即打开了桌面应用
  3975. U.MD.D.click(this, obj);
  3976. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3977. "onclick": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3981. }, _frag); //
  3982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3985. }
  3986. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3987. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3988. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3989. continue
  3990. }
  3991. _content = $$("div", {
  3992. className: "U_MD_D_KO",
  3993. "onmousedown": U.UF.C.closure(function (obj) {
  3994. //防止拖动图标即打开了桌面应用
  3995. U.MD.D.click(this, obj);
  3996. }, [_x010503TeacherDeskIconInfo[i]]),
  3997. "onclick": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_x010503TeacherDeskIconInfo[i]])
  4001. }, _frag); //
  4002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4005. }
  4006. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4007. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4008. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4009. continue
  4010. }
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖动图标即打开了桌面应用
  4015. U.MD.D.click(this, obj);
  4016. }, [_x010504TeacherDeskIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖动图标即打开了桌面应用
  4019. U.MD.D.click(this, obj);
  4020. }, [_x010504TeacherDeskIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4025. }
  4026. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4027. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4028. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4029. continue
  4030. }
  4031. _content = $$("div", {
  4032. className: "U_MD_D_KO",
  4033. "onmousedown": U.UF.C.closure(function (obj) {
  4034. //防止拖动图标即打开了桌面应用
  4035. U.MD.D.click(this, obj);
  4036. }, [_x010204TeacherDeskIconInfo[i]]),
  4037. "onclick": U.UF.C.closure(function (obj) {
  4038. //防止拖动图标即打开了桌面应用
  4039. U.MD.D.click(this, obj);
  4040. }, [_x010204TeacherDeskIconInfo[i]])
  4041. }, _frag); //
  4042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4045. }
  4046. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4047. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4048. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4049. continue
  4050. }
  4051. _content = $$("div", {
  4052. className: "U_MD_D_KO",
  4053. "onmousedown": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_trailTeacherDeskIconInfo[i]]),
  4057. "onclick": U.UF.C.closure(function (obj) {
  4058. //防止拖动图标即打开了桌面应用
  4059. U.MD.D.click(this, obj);
  4060. }, [_trailTeacherDeskIconInfo[i]])
  4061. }, _frag); //
  4062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4065. }
  4066. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4067. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4068. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4069. continue
  4070. }
  4071. _content = $$("div", {
  4072. className: "U_MD_D_KO",
  4073. "onmousedown": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4077. "onclick": U.UF.C.closure(function (obj) {
  4078. //防止拖动图标即打开了桌面应用
  4079. U.MD.D.click(this, obj);
  4080. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4081. }, _frag); //
  4082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4085. }
  4086. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4087. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4088. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4089. continue
  4090. }
  4091. _content = $$("div", {
  4092. className: "U_MD_D_KO",
  4093. "onmousedown": U.UF.C.closure(function (obj) {
  4094. //防止拖动图标即打开了桌面应用
  4095. U.MD.D.click(this, obj);
  4096. }, [_x010608TeacherDeskIconInfo[i]]),
  4097. "onclick": U.UF.C.closure(function (obj) {
  4098. //防止拖动图标即打开了桌面应用
  4099. U.MD.D.click(this, obj);
  4100. }, [_x010608TeacherDeskIconInfo[i]])
  4101. }, _frag); //
  4102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4105. }
  4106. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4107. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4108. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4109. continue
  4110. }
  4111. _content = $$("div", {
  4112. className: "U_MD_D_KO",
  4113. "onmousedown": U.UF.C.closure(function (obj) {
  4114. //防止拖动图标即打开了桌面应用
  4115. U.MD.D.click(this, obj);
  4116. }, [_x010611TeacherDeskIconInfo[i]]),
  4117. "onclick": U.UF.C.closure(function (obj) {
  4118. //防止拖动图标即打开了桌面应用
  4119. U.MD.D.click(this, obj);
  4120. }, [_x010611TeacherDeskIconInfo[i]])
  4121. }, _frag); //
  4122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4125. }
  4126. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4127. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4128. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4129. continue
  4130. }
  4131. _content = $$("div", {
  4132. className: "U_MD_D_KO",
  4133. "onmousedown": U.UF.C.closure(function (obj) {
  4134. //防止拖动图标即打开了桌面应用
  4135. U.MD.D.click(this, obj);
  4136. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4137. "onclick": U.UF.C.closure(function (obj) {
  4138. //防止拖动图标即打开了桌面应用
  4139. U.MD.D.click(this, obj);
  4140. }, [_tianyuanTeacherDeskIconInfo[i]])
  4141. }, _frag); //
  4142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4145. }
  4146. } else {
  4147. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4148. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4149. continue
  4150. }
  4151. _content = $$("div", {
  4152. className: "U_MD_D_KO",
  4153. "onmousedown": U.UF.C.closure(function (obj) {
  4154. //防止拖动图标即打开了桌面应用
  4155. U.MD.D.click(this, obj);
  4156. }, [_teacherDesktopIconInfo[i]]),
  4157. "onclick": U.UF.C.closure(function (obj) {
  4158. //防止拖动图标即打开了桌面应用
  4159. U.MD.D.click(this, obj);
  4160. }, [_teacherDesktopIconInfo[i]])
  4161. }, _frag); //
  4162. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4165. }
  4166. }
  4167. } else {
  4168. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4169. _content = $$("div", {
  4170. className: "U_MD_D_KO",
  4171. style: { 'width': '124px', 'height': '145px' },
  4172. "onmousedown": U.UF.C.closure(function (obj) {
  4173. //防止拖动图标即打开了桌面应用
  4174. U.MD.D.click(this, obj);
  4175. }, [_easyDesktopIconInfo[i]]),
  4176. "onclick": U.UF.C.closure(function (obj) {
  4177. //防止拖动图标即打开了桌面应用
  4178. U.MD.D.click(this, obj);
  4179. }, [_easyDesktopIconInfo[i]])
  4180. }, _frag); //
  4181. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4184. }
  4185. }
  4186. if (type == 1) {
  4187. //加载好后给图标定位
  4188. U.MD.D.iconPostion($(_frag).Child());
  4189. } else {
  4190. //加载好后给图标定位
  4191. U.MD.D.iconPostion2($(_frag).Child());
  4192. }
  4193. //把图标加载到页面
  4194. el.appendChild(_frag);
  4195. }
  4196. /**
  4197. * 显示任务栏
  4198. *
  4199. * @param {element} 桌面元素
  4200. */
  4201. U.MD.D.I.displayTaskbar = function (el) {
  4202. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4203. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4204. //任务栏位置变化
  4205. U.selectEl(el).css({ "bottom": "0px" });
  4206. //桌面位置变话
  4207. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4208. }
  4209. }
  4210. //#region 桌面图标拖动逻辑
  4211. /**
  4212. * 桌面排列图标
  4213. *
  4214. * @param {element} 桌面元素
  4215. * @param {object} 上下相距的距离
  4216. * @param {object} 左右相距的距离
  4217. * @return {object} 命名空间
  4218. */
  4219. U.MD.D.iconPostion = function (childs, top, left) {
  4220. var i; //用于循环处理
  4221. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4222. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4223. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4224. for (i = 0; i < childs.length; i++) {
  4225. //如果竖排top超过了范围处理
  4226. if (top + 95 > US.height - 10) {
  4227. //left超过了页面范围处理,则向上重叠打印处理
  4228. if ((left + 180) > US.width) {
  4229. top -= 110;
  4230. left -= 90;
  4231. }
  4232. //没有超过范围,那么left+90添加到下一个竖排打印
  4233. else {
  4234. left += 90;
  4235. top = 15;
  4236. };
  4237. }
  4238. //给图标的位置赋值
  4239. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4240. if (i < childs.length - 1) {
  4241. //页面图标每次向下加95
  4242. top += 95;
  4243. }
  4244. }
  4245. //返回最后调用的图标的位置
  4246. return [top, left];
  4247. }
  4248. /**
  4249. * 桌面排列图标
  4250. *
  4251. * @param {element} 桌面元素
  4252. * @param {object} 上下相距的距离
  4253. * @param {object} 左右相距的距离
  4254. * @return {object} 命名空间
  4255. */
  4256. U.MD.D.iconPostion2 = function (childs, top, left) {
  4257. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4258. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4259. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4260. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4261. for (i = 0; i < childs.length; i++) {
  4262. //如果竖排top超过了范围处理
  4263. if (left + 150 > US.width - 10) {
  4264. //left超过了页面范围处理,则向上重叠打印处理
  4265. if ((top + 180) > US.Height) {
  4266. top -= 150;
  4267. left -= 150;
  4268. }
  4269. //没有超过范围,那么left+90添加到下一个竖排打印
  4270. else {
  4271. top += 150;
  4272. left = ol;
  4273. };
  4274. }
  4275. //给图标的位置赋值
  4276. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4277. if (i < childs.length - 1) {
  4278. //页面图标每次向下加95
  4279. left += 150;
  4280. }
  4281. }
  4282. //返回最后调用的图标的位置
  4283. return [top, left];
  4284. }
  4285. /**
  4286. * 桌面点击事件逻辑
  4287. *
  4288. * @param {element} 桌面元素
  4289. * @param {object} 上下相距的距离
  4290. * @param {object} 左右相距的距离
  4291. * @return {object} 命名空间
  4292. */
  4293. U.MD.D.click = function (el, obj) {
  4294. var _buttonnumber = event.button; //点击的按钮的事件值
  4295. var _userinfo = US.userInfo;
  4296. U.UF.EV.stopBubble(); //阻止向上冒泡
  4297. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4298. if (_buttonnumber < 2) {
  4299. //如果是click事件的处理
  4300. if (event.type == "click") {
  4301. //如果元素在mousemove事件中没有移动则出发click事件
  4302. if (!U.MD.D.I.IsDrag) {
  4303. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4304. U.alert("请先登录您的账号!");
  4305. setTimeout(() => {
  4306. U.MD.U.L.login();
  4307. }, 2000);
  4308. } else {
  4309. //打开应用处理
  4310. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4311. }
  4312. }
  4313. }
  4314. //如果是mouse事件的处理
  4315. else {
  4316. if (US.Config.type == '1') {
  4317. //拖动处理,添加拖动和拖动结束事件
  4318. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4319. }
  4320. }
  4321. U.MD.D.I.IsDrag = false;
  4322. }
  4323. }
  4324. /**
  4325. * 拖动的处理
  4326. *
  4327. */
  4328. U.MD.D.iconMove = function () {
  4329. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4330. U.MD.D.I.IsDrag = true;
  4331. }
  4332. /**
  4333. * 拖动结束后,这里是定位处理,以网状的形式定位
  4334. *
  4335. * @param {element} 拖动的元素
  4336. * @return {object} 命名空间
  4337. */
  4338. U.MD.D.iconUp = function (el) {
  4339. var _top = 15,
  4340. _left = 20,
  4341. _margin,
  4342. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4343. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4344. if (_positioninfo["OT"] > 15) {
  4345. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4346. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4347. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4348. }
  4349. if (_positioninfo["OL"] > 20) {
  4350. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4351. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4352. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4353. }
  4354. //while循环判断么一个重叠的元素
  4355. do {
  4356. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4357. _top = _positioninfo[0] + 95; //得到定位后的top
  4358. _left = _positioninfo[1]; //得到定位后的left
  4359. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4360. }
  4361. /**
  4362. * 判断拖动后图标是否重叠
  4363. *
  4364. * @param {element} 拖动的元素
  4365. * @param {element} 桌面所有的元素
  4366. * @param {array} 拖动元素的位置
  4367. ----------[0] 上 top
  4368. ----------[1] 左 left
  4369. * @return {object} 命名空间
  4370. */
  4371. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4372. //循环所有的图标
  4373. for (var i = 0; i < childs.length; i++) {
  4374. //判断有没有和该图标诶子重叠的元素
  4375. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4376. return childs[i]; //如果有返回
  4377. }
  4378. }
  4379. }
  4380. //#endregion
  4381. //#endregion
  4382. //#region 桌面应用
  4383. /**
  4384. * 打开应用
  4385. *
  4386. * @param {string} 类型
  4387. -----------------Disk 网盘系统
  4388. -----------------PDisk 学习系统网盘
  4389. -----------------Poto 图片
  4390. -----------------Video 视频
  4391. -----------------Music 音乐
  4392. -----------------Word word
  4393. -----------------Excel excel
  4394. -----------------Txt 记事本
  4395. -----------------PB 学习系统
  4396. -----------------Blog 朋友圈系统
  4397. -----------------FTP ftp系统
  4398. -----------------Group 好友群
  4399. -----------------SY 首页系统
  4400. -----------------Set 个人设置
  4401. -----------------XSet 系统设置
  4402. -----------------App 我们所有的app
  4403. -----------------BC c.1473.cn 平台
  4404. -----------------CWeb d.1473.cn 变成平台
  4405. -----------------其他的外联系统 我们统一用iframe打开
  4406. * @param {array} 类型
  4407. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4408. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4409. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4410. 如果第一个参数为其他,则无第二个参数
  4411. * @returns {array}
  4412. */
  4413. window.addEventListener('message', function (e) { // 监听 message 事件
  4414. // alert(e.data.type);
  4415. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4417. //3是展示全部阶段 2学生 1老师 4专家
  4418. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4420. //3是展示全部阶段 2学生 1老师 4专家
  4421. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4423. //3是展示全部阶段 2学生 1老师 4专家
  4424. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4427. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4430. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4431. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4432. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4433. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4434. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4435. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4436. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4437. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4438. //3是展示全部阶段 2学生 1老师 4专家
  4439. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4440. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4441. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4442. U.MD.D.I.selectUser();
  4443. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4444. var _formel = document.getElementById("study");
  4445. U.UF.F.windowZooming(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4447. var _formel = document.getElementById("studyDetail");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4450. var _formel = document.getElementById("studyDetail");
  4451. U.UF.F.windowZooming(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4453. var _formel = document.getElementById("studentStudy");
  4454. U.UF.F.windowZooming(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4456. // var _formel = document.getElementById("study");
  4457. //如果最大化了,那么就把他缩小
  4458. // if (_formel.ismaximize) {
  4459. // return;
  4460. // }
  4461. // U.UF.F.windowZooming(_formel);
  4462. // U.UF.F.topWindow(_formel);
  4463. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4464. // var _formel = document.getElementById("studyDetail");
  4465. //如果最大化了,那么就把他缩小
  4466. // if (_formel.ismaximize) {
  4467. // return;
  4468. // }
  4469. // U.UF.F.windowZooming(_formel);
  4470. // U.UF.F.topWindow(_formel);
  4471. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4472. // var _formel = document.getElementById("studentStudy");
  4473. // if (_formel.ismaximize) {
  4474. // return;
  4475. // }
  4476. // U.UF.F.windowZooming(_formel);
  4477. // U.UF.F.topWindow(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4479. var _formel = document.getElementById("study");
  4480. // if (_formel.ismaximize) {
  4481. // return;
  4482. // }
  4483. // U.UF.F.windowZooming(_formel);
  4484. U.UF.F.topWindow(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4486. var _formel = document.getElementById("studentIndex");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4489. var _formel = document.getElementById("studyDetailS");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4492. var _formel = document.getElementById("studioIndex");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4495. var _formel = document.getElementById("studyDetailStudio");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4498. var _formel = document.getElementById("studyDetailStudio");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4501. var _formel = document.getElementById("studyDetailNT");
  4502. U.UF.F.windowZooming(_formel);
  4503. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4504. var _formel = document.getElementById("studyDetailS");
  4505. U.UF.F.windowZooming(_formel);
  4506. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4507. var _formel = document.getElementById("studyDetailS");
  4508. U.UF.F.topWindow(_formel);
  4509. } else if (e.data.tools && e.data.tools == "1") {
  4510. // U.MD.D.I.openApplication("whiteboard")
  4511. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "2") {
  4513. U.MD.D.I.openApplication("note")
  4514. } else if (e.data.tools && e.data.tools == "3") {
  4515. // U.MD.D.I.openApplication("mind")
  4516. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "4") {
  4518. U.MD.D.I.openApplication("investigation")
  4519. } else if (e.data.tools && e.data.tools == "6") {
  4520. // U.MD.D.I.openApplication("doc")
  4521. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4522. } else if (e.data.tools && e.data.tools == "7") {
  4523. // U.MD.D.I.openApplication("mindNetwork")
  4524. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4525. } else if (e.data.tools && e.data.tools == "8") {
  4526. U.MD.D.I.openApplication("library")
  4527. } else if (e.data.tools && e.data.tools == "17") {
  4528. U.MD.D.I.openApplication("stuLibrary")
  4529. } else if (e.data.tools && e.data.tools == "18") {
  4530. U.MD.D.I.openApplication("train")
  4531. } else if (e.data.tools && e.data.tools == "21") {
  4532. U.MD.D.I.openApplication("program")
  4533. } else if (e.data.tools && e.data.tools == "22") {
  4534. U.MD.D.I.openApplication("AIprogram2")
  4535. } else if (e.data.tools && e.data.tools == "23") {
  4536. U.MD.D.I.openApplication("Pythonprogram")
  4537. } else if (e.data.tools && e.data.tools == "24") {
  4538. U.MD.D.I.openApplication("AIprogram")
  4539. } else if (e.data.tools && e.data.tools == "25") {
  4540. U.MD.D.I.openApplication("sys")
  4541. } else if (e.data.tools && e.data.tools == "26") {
  4542. // U.MD.D.I.openApplication("courseDesign")
  4543. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4544. } else if (e.data.tools && e.data.tools == "31") {
  4545. U.MD.D.I.openApplication("netWorkPanel")
  4546. } else if (e.data.tools && e.data.tools == "32") {
  4547. U.MD.D.I.openApplication("codeEdit")
  4548. } else if (e.data.tools && e.data.tools == "57") {
  4549. U.MD.D.I.openApplication("CocoPi")
  4550. } else if (e.data.tools && e.data.tools == "63") {
  4551. U.MD.D.I.openApplication("Wood")
  4552. } else if (e.data.tools && e.data.tools == "58") {
  4553. U.MD.D.I.openApplication("car")
  4554. } else if (e.data.tools && e.data.tools == "59") {
  4555. U.MD.D.I.openApplication("lineSearch")
  4556. } else if (e.data.tools && e.data.tools == "60") {
  4557. U.MD.D.I.openApplication("deepLearning")
  4558. } else if (e.data.tools && e.data.tools == "61") {
  4559. U.MD.D.I.openApplication("allHistory")
  4560. } else if (e.data.tools && e.data.tools == "28") {
  4561. U.MD.D.I.openApplication("translation")
  4562. } else if (e.data.tools && e.data.tools == "37") {
  4563. U.MD.D.I.openApplication("mohe")
  4564. } else if (e.data.tools && e.data.tools == "38") {
  4565. U.MD.D.I.openApplication("24game")
  4566. } else if (e.data.tools && e.data.tools == "39") {
  4567. U.MD.D.I.openApplication("GeoGebra")
  4568. } else if (e.data.tools && e.data.tools == "43") {
  4569. U.MD.D.I.openApplication("studentEvaluate")
  4570. } else if (e.data.tools && e.data.tools == "44") {
  4571. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4572. } else if (e.data.tools && e.data.tools == "46") {
  4573. U.MD.D.I.openApplication("project")
  4574. } else if (e.data.tools && e.data.tools == "71") {
  4575. U.MD.D.I.openApplication("aigptCourse")
  4576. } else if (e.data.tools && e.data.tools == "1s") {
  4577. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3s") {
  4579. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "6s") {
  4581. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "1studio") {
  4583. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "3studio") {
  4585. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "6studio") {
  4587. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4588. } else if (e.data.tools && e.data.tools == "3y") {
  4589. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4590. } else if (e.data.tools && e.data.tools == "1y") {
  4591. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4592. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4593. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4594. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4595. U.MD.D.I.openApplication("AIAnalyse")
  4596. } else if (e.data.tools && e.data.tools == "1teacher") {
  4597. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "3teacher") {
  4599. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "7teacher") {
  4601. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4602. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4603. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4604. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4605. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4606. } else if (e.data.tools && e.data.tools == "1E") {
  4607. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "3E") {
  4609. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4610. } else if (e.data.tools && e.data.tools == "57y") {
  4611. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4612. } else if (e.data.tools && e.data.tools == "57u") {
  4613. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "57teacher") {
  4615. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4616. } else if (e.data.tools && e.data.tools == "64") {
  4617. U.MD.D.I.openApplication("AIChat")
  4618. } else if (e.data.tools && e.data.tools == "66") {
  4619. U.MD.D.I.openApplication("formulaEdi")
  4620. } else if (e.data.tools && e.data.tools == "67") {
  4621. U.MD.D.I.openApplication("molStr")
  4622. } else if (e.data.tools && e.data.tools == "68") {
  4623. U.MD.D.I.openApplication("timeAxis")
  4624. } else if (e.data.tools && e.data.tools == "openCourse") {
  4625. let _data = {
  4626. typea: e.data.typea || '',
  4627. typeb: e.data.typeb || '',
  4628. typed: e.data.typed || '',
  4629. }
  4630. U.MD.D.I.openInApplication("index", _data)
  4631. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4632. let _data = {
  4633. classid: e.data.classid || '',
  4634. }
  4635. U.MD.D.I.openInApplication("dataClass", _data)
  4636. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4637. let _data = {
  4638. cid: e.data.cid || '',
  4639. gid: e.data.gid || '',
  4640. }
  4641. U.MD.D.I.openInApplication("opencCscl", _data)
  4642. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4643. U.MD.D.I.openApplication("dataBoardTest")
  4644. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4645. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4647. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4649. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4650. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4651. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4652. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4653. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4654. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4655. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4656. }else if (e.data.tools && e.data.tools == "loginSz") {
  4657. U.MD.D.I.openInApplication("loginSz")
  4658. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4659. if($('#classroom_observation_board')[0]){
  4660. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4661. }
  4662. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4663. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4664. if($('#classroom_observation_ob_comment')[0]){
  4665. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4666. }
  4667. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4668. }else if (e.data.tools && e.data.tools == "logout"){
  4669. U.MD.U.LO.logoutSystem()
  4670. }else if (e.data.tools && e.data.tools == "getLogin"){
  4671. let _iframe = $('#UI_Login')[0];
  4672. if (_iframe) {
  4673. var userInfo = US.userInfo;
  4674. var type = 2
  4675. if(userInfo && userInfo.userid){
  4676. type = 1
  4677. }
  4678. _contentWindow = _iframe.contentWindow;
  4679. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4680. }
  4681. }
  4682. });
  4683. U.MD.D.I.selectUser = function () {
  4684. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4685. if (res.value[0].length > 0) {
  4686. US.userInfo = res.value[0][0];
  4687. $(".userName")[0].innerHTML = US.userInfo.username;
  4688. }
  4689. }, [], { "type": "GET", "withCredentials": true });
  4690. }
  4691. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4692. var _userinfo = US.userInfo, //登录用户信息
  4693. _userid = US.userInfo.userid, //登录用户id
  4694. _oid = _userinfo.organizeid,
  4695. _type = US.userInfo.type,
  4696. _org = US.userInfo.org,
  4697. _role = US.userInfo.role,
  4698. _classId = US.userInfo.classid;
  4699. if (_type == 4) {
  4700. tType = 4
  4701. }
  4702. switch (str) {
  4703. case "studyDetailNT": //无终端模式
  4704. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4705. setTimeout(() => {
  4706. U.MD.U.L.login();
  4707. }, 2000);
  4708. } else {
  4709. _formdiv = new U.UF.UI.form(
  4710. "课程详情",
  4711. $$("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 }), {
  4712. "id": "studyDetailNT",
  4713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. }
  4721. case "studyDetail":
  4722. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4723. setTimeout(() => {
  4724. U.MD.U.L.login();
  4725. }, 2000);
  4726. } else {
  4727. _formdiv = new U.UF.UI.form(
  4728. "课程详情",
  4729. $$("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 }), {
  4730. "id": "studyDetail",
  4731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4732. "onresize": function () { }
  4733. }, {
  4734. closecallback: function () { }
  4735. }, { "style": { "height": "36px" } }).form; //创建窗体
  4736. _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); } }
  4737. break;
  4738. }
  4739. case "studyDetailTrain":
  4740. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4741. setTimeout(() => {
  4742. U.MD.U.L.login();
  4743. }, 2000);
  4744. } else {
  4745. _formdiv = new U.UF.UI.form(
  4746. "培训详情",
  4747. $$("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 }), {
  4748. "id": "studyDetailTrain",
  4749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. }
  4757. case "studyDetailS":
  4758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4759. setTimeout(() => {
  4760. U.MD.U.L.login();
  4761. }, 2000);
  4762. } else {
  4763. _formdiv = new U.UF.UI.form(
  4764. "项目详情",
  4765. $$("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 }), {
  4766. "id": "studyDetailS",
  4767. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4768. "onresize": function () { }
  4769. }, {
  4770. closecallback: function () { }
  4771. }, { "style": { "height": "36px" } }).form; //创建窗体
  4772. _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); } }
  4773. break;
  4774. }
  4775. case "studyDetailStudio":
  4776. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4777. setTimeout(() => {
  4778. U.MD.U.L.login();
  4779. }, 2000);
  4780. } else {
  4781. _formdiv = new U.UF.UI.form(
  4782. "工作详情",
  4783. $$("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 }), {
  4784. "id": "studyDetailStudio",
  4785. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //创建窗体
  4790. _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); } }
  4791. break;
  4792. }
  4793. case "studyDetailS5":
  4794. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4795. setTimeout(() => {
  4796. U.MD.U.L.login();
  4797. }, 2000);
  4798. } else {
  4799. _formdiv = new U.UF.UI.form(
  4800. "项目详情",
  4801. $$("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 }), {
  4802. "id": "studyDetailS",
  4803. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4804. "onresize": function () { }
  4805. }, {
  4806. closecallback: function () { }
  4807. }, { "style": { "height": "36px" } }).form; //创建窗体
  4808. _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); } }
  4809. break;
  4810. }
  4811. case "studyDetailGM":
  4812. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4813. setTimeout(() => {
  4814. U.MD.U.L.login();
  4815. }, 2000);
  4816. } else {
  4817. _formdiv = new U.UF.UI.form(
  4818. "课程详情",
  4819. $$("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 }), {
  4820. "id": "studyDetail",
  4821. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4822. "onresize": function () { }
  4823. }, {
  4824. closecallback: function () { }
  4825. }, { "style": { "height": "36px" } }).form; //创建窗体
  4826. _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); } }
  4827. break;
  4828. }
  4829. case "hanUrl":
  4830. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4831. setTimeout(() => {
  4832. U.MD.U.L.login();
  4833. }, 2000);
  4834. } else {
  4835. _formdiv = new U.UF.UI.form(
  4836. "汉字宫",
  4837. $$("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" }), {
  4838. "id": "hanUrl",
  4839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4840. "onresize": function () { }
  4841. }, {
  4842. closecallback: function () { }
  4843. }, { "style": { "height": "36px" } }).form; //创建窗体
  4844. _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); } }
  4845. break;
  4846. }
  4847. case "index":
  4848. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4849. setTimeout(() => {
  4850. U.MD.U.L.login();
  4851. }, 2000);
  4852. } else {
  4853. _formdiv = new U.UF.UI.form(
  4854. "课程中心",
  4855. $$("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 }), {
  4856. "id": "study",
  4857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4858. "onresize": function () { }
  4859. }, {
  4860. closecallback: function () { }
  4861. }, { "style": { "height": "36px" } }).form; //创建窗体
  4862. _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); } }
  4863. break;
  4864. }
  4865. case "dataClass":
  4866. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4867. setTimeout(() => {
  4868. U.MD.U.L.login();
  4869. }, 2000);
  4870. } else {
  4871. _formdiv = new U.UF.UI.form(
  4872. "数据报告",
  4873. $$("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 }), {
  4874. "id": "dataClass",
  4875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4876. "onresize": function () { }
  4877. }, {
  4878. closecallback: function () { }
  4879. }, { "style": { "height": "36px" } }).form; //创建窗体
  4880. _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); } }
  4881. break;
  4882. }
  4883. case "opencCscl":
  4884. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4885. setTimeout(() => {
  4886. U.MD.U.L.login();
  4887. }, 2000);
  4888. } else {
  4889. _formdiv = new U.UF.UI.form(
  4890. "协同建构",
  4891. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4892. "id": "futureClass",
  4893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4894. "onresize": function () { }
  4895. }, {
  4896. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4897. }, { "style": { "height": "36px" } }).form; //创建窗体
  4898. _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); } }
  4899. break;
  4900. }
  4901. case "openCourseUpdate":
  4902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4903. setTimeout(() => {
  4904. U.MD.U.L.login();
  4905. }, 2000);
  4906. } else {
  4907. _formdiv = new U.UF.UI.form(
  4908. "课程管理",
  4909. $$("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 }), {
  4910. "id": "openCourseUpdate",
  4911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4912. "onresize": function () { }
  4913. }, {
  4914. closecallback: function () { }
  4915. }, { "style": { "height": "36px" } }).form; //创建窗体
  4916. break;
  4917. }
  4918. case "openNewCourseUpdate":
  4919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4920. setTimeout(() => {
  4921. U.MD.U.L.login();
  4922. }, 2000);
  4923. } else {
  4924. _formdiv = new U.UF.UI.form(
  4925. "课程管理",
  4926. $$("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 }), {
  4927. "id": "openCourseUpdate",
  4928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4929. "onresize": function () { }
  4930. }, {
  4931. closecallback: function () { }
  4932. }, { "style": { "height": "36px" } }).form; //创建窗体
  4933. break;
  4934. }
  4935. case "openCourseEUpdate":
  4936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4937. setTimeout(() => {
  4938. U.MD.U.L.login();
  4939. }, 2000);
  4940. } else {
  4941. _formdiv = new U.UF.UI.form(
  4942. "课程管理",
  4943. $$("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 }), {
  4944. "id": "openCourseUpdate",
  4945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //创建窗体
  4950. break;
  4951. }
  4952. case "openCourseAiUpdate":
  4953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4954. setTimeout(() => {
  4955. U.MD.U.L.login();
  4956. }, 2000);
  4957. } else {
  4958. _formdiv = new U.UF.UI.form(
  4959. "课程管理",
  4960. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4961. "id": "openCourseUpdate",
  4962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4963. "onresize": function () { }
  4964. }, {
  4965. closecallback: function () { }
  4966. }, { "style": { "height": "36px" } }).form; //创建窗体
  4967. break;
  4968. }
  4969. case "openCourseAiUpdate2":
  4970. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4971. setTimeout(() => {
  4972. U.MD.U.L.login();
  4973. }, 2000);
  4974. } else {
  4975. _formdiv = new U.UF.UI.form(
  4976. "课程管理",
  4977. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4978. "id": "openCourseUpdate",
  4979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4980. "onresize": function () { }
  4981. }, {
  4982. closecallback: function () { }
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. break;
  4985. }
  4986. case "openCourseNewUpdate":
  4987. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4988. setTimeout(() => {
  4989. U.MD.U.L.login();
  4990. }, 2000);
  4991. } else {
  4992. _formdiv = new U.UF.UI.form(
  4993. "课程管理",
  4994. $$("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 }), {
  4995. "id": "openCourseUpdate",
  4996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //创建窗体
  5001. break;
  5002. }
  5003. case "inviteLoginSz":
  5004. _formdiv = new U.UF.UI.form(
  5005. "随机码登录",
  5006. $$("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 }), {
  5007. "id": "loginSz",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. break;
  5014. case "loginSz":
  5015. _formdiv = new U.UF.UI.form(
  5016. "教师登录",
  5017. $$("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" }), {
  5018. "id": "loginSz",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. break;
  5025. case "teacher":
  5026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5027. setTimeout(() => {
  5028. U.MD.U.L.login();
  5029. }, 2000);
  5030. } else {
  5031. _formdiv = new U.UF.UI.form(
  5032. "教师管理",
  5033. $$("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 }), {
  5034. "id": "teacher",
  5035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //创建窗体
  5040. break;
  5041. }
  5042. case "dataBoardSZArea":
  5043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5044. setTimeout(() => {
  5045. U.MD.U.L.login();
  5046. }, 2000);
  5047. } else {
  5048. _formdiv = new U.UF.UI.form(
  5049. "综合数据看板",
  5050. $$("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 }), {
  5051. "id": "dataBoardSZArea",
  5052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. break;
  5058. }
  5059. case "dataBoardSZCity":
  5060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5061. setTimeout(() => {
  5062. U.MD.U.L.login();
  5063. }, 2000);
  5064. } else {
  5065. _formdiv = new U.UF.UI.form(
  5066. "综合数据看板",
  5067. $$("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 }), {
  5068. "id": "dataBoardSZCity",
  5069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5070. "onresize": function () { }
  5071. }, {
  5072. closecallback: function () { }
  5073. }, { "style": { "height": "36px" } }).form; //创建窗体
  5074. break;
  5075. }
  5076. case "classroom_observation_board":
  5077. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5078. setTimeout(() => {
  5079. U.MD.U.L.login();
  5080. }, 2000);
  5081. } else {
  5082. _formdiv = new U.UF.UI.form(
  5083. "课堂观察",
  5084. $$("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 }), {
  5085. "id": "classroom_observation_board",
  5086. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5087. "onresize": function () { }
  5088. }, {
  5089. closecallback: function () { }
  5090. }, { "style": { "height": "36px" } }).form; //创建窗体
  5091. break;
  5092. }
  5093. case "classroom_observation_ob_comment":
  5094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5095. setTimeout(() => {
  5096. U.MD.U.L.login();
  5097. }, 2000);
  5098. } else {
  5099. _formdiv = new U.UF.UI.form(
  5100. "课堂审核",
  5101. $$("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 }), {
  5102. "id": "classroom_observation_ob_comment",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. break;
  5109. }
  5110. }
  5111. }
  5112. U.MD.D.I.openApplication = function (str, obj, info) {
  5113. obj = obj || {};
  5114. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5115. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5116. _userinfo = US.userInfo, //登录用户信息
  5117. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5118. _oid = obj.organizeid || _userinfo.organizeid,
  5119. _type = US.userInfo.type,
  5120. _org = US.userInfo.org,
  5121. _role = US.userInfo.role,
  5122. _classId = US.userInfo.classid,
  5123. _TscreenType = 1
  5124. _screenType = 2,
  5125. _SscreenType = 3;
  5126. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5127. return;
  5128. }
  5129. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5130. switch (str) {
  5131. case "studnetProject": //好友打开
  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-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5135. "id": "studnetProject",
  5136. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5142. break;
  5143. case "studentEvaluate": //好友打开
  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 + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5147. "id": "studentEvaluate",
  5148. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5154. break;
  5155. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5159. "id": "my",
  5160. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5166. break;
  5167. case "program":
  5168. _formdiv = new U.UF.UI.form(
  5169. "编程平台",
  5170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5171. "id": "program",
  5172. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. _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); } }
  5178. break;
  5179. case "library":
  5180. _formdiv = new U.UF.UI.form(
  5181. "素材库",
  5182. $$("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 }), {
  5183. "id": "library",
  5184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5185. "onresize": function () { }
  5186. }, {
  5187. closecallback: function () { }
  5188. }, { "style": { "height": "36px" } }).form; //创建窗体
  5189. _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); } }
  5190. break;
  5191. case "whiteboard":
  5192. _formdiv = new U.UF.UI.form(
  5193. "电子白板",
  5194. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5195. "id": "whiteboard",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. case "investigation":
  5204. _formdiv = new U.UF.UI.form(
  5205. "问卷调查",
  5206. $$("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 }), {
  5207. "id": "investigation",
  5208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5209. "onresize": function () { }
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //创建窗体
  5213. _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); } }
  5214. break;
  5215. case "note":
  5216. _formdiv = new U.UF.UI.form(
  5217. "便签分类",
  5218. $$("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 }), {
  5219. "id": "note",
  5220. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. _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); } }
  5226. break;
  5227. // case "score":
  5228. // _formdiv = new U.UF.UI.form(
  5229. // "量规评分",
  5230. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5231. // "id": "score",
  5232. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. // "onresize": function() {}
  5234. // }, {
  5235. // closecallback: function() {}
  5236. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. // _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); } }
  5238. // break;
  5239. case "mind":
  5240. _formdiv = new U.UF.UI.form(
  5241. "思维导图",
  5242. $$("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"
  5243. "id": "mind",
  5244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _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); } }
  5250. break;
  5251. case "doc":
  5252. // U.MD.D.I.isRoom();
  5253. _formdiv = new U.UF.UI.form(
  5254. "协同文档",
  5255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5256. "id": "doc",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5263. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5264. // })
  5265. _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); } }
  5266. break;
  5267. case "studentStudy":
  5268. _formdiv = new U.UF.UI.form(
  5269. "课程中心",
  5270. $$("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
  5271. "id": "studentStudy",
  5272. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5273. "onresize": function () { }
  5274. }, {
  5275. closecallback: function () { }
  5276. }, { "style": { "height": "36px" } }).form; //创建窗体
  5277. _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); } }
  5278. break;
  5279. case "train": //好友打开
  5280. _formdiv = new U.UF.UI.form(
  5281. "训练平台",
  5282. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5283. "id": "train",
  5284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //创建窗体
  5289. _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); } }
  5290. break;
  5291. case "mindNetwork": //好友打开
  5292. _formdiv = new U.UF.UI.form(
  5293. "思维网格",
  5294. $$("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 }), {
  5295. "id": "mindNetwork",
  5296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //创建窗体
  5301. _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); } }
  5302. break;
  5303. case "studentClassRoom": //好友打开
  5304. _formdiv = new U.UF.UI.form(
  5305. "实时课堂",
  5306. $$("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 }), {
  5307. "id": "studentClassRoom",
  5308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. _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); } }
  5314. setTimeout(() => {
  5315. U.UF.F.windowZooming(_formdiv)
  5316. }, 0);
  5317. break;
  5318. }
  5319. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5320. switch (str) {
  5321. case "studnetProject": //好友打开
  5322. _formdiv = new U.UF.UI.form(
  5323. "我的项目",
  5324. $$("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 }), {
  5325. "id": "studnetProject",
  5326. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. break;
  5333. case "studentEvaluate": //好友打开
  5334. _formdiv = new U.UF.UI.form(
  5335. "我的评价",
  5336. $$("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 }), {
  5337. "id": "studentEvaluate",
  5338. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "my":
  5346. _formdiv = new U.UF.UI.form(
  5347. "我的资料",
  5348. $$("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 }), {
  5349. "id": "my",
  5350. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //创建窗体
  5355. _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); } }
  5356. break;
  5357. case "program":
  5358. _formdiv = new U.UF.UI.form(
  5359. "编程平台",
  5360. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5361. "id": "program",
  5362. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5363. "onresize": function () { }
  5364. }, {
  5365. closecallback: function () { }
  5366. }, { "style": { "height": "36px" } }).form; //创建窗体
  5367. _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); } }
  5368. break;
  5369. case "library":
  5370. _formdiv = new U.UF.UI.form(
  5371. "素材库",
  5372. $$("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 }), {
  5373. "id": "library",
  5374. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5375. "onresize": function () { }
  5376. }, {
  5377. closecallback: function () { }
  5378. }, { "style": { "height": "36px" } }).form; //创建窗体
  5379. _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); } }
  5380. break;
  5381. case "whiteboard":
  5382. _formdiv = new U.UF.UI.form(
  5383. "电子白板",
  5384. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5385. "id": "whiteboard",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. _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); } }
  5392. break;
  5393. case "investigation":
  5394. _formdiv = new U.UF.UI.form(
  5395. "问卷调查",
  5396. $$("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 }), {
  5397. "id": "investigation",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. _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); } }
  5404. break;
  5405. case "note":
  5406. _formdiv = new U.UF.UI.form(
  5407. "便签分类",
  5408. $$("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 }), {
  5409. "id": "note",
  5410. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //创建窗体
  5415. _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); } }
  5416. break;
  5417. // case "score":
  5418. // _formdiv = new U.UF.UI.form(
  5419. // "量规评分",
  5420. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5421. // "id": "score",
  5422. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. // "onresize": function() {}
  5424. // }, {
  5425. // closecallback: function() {}
  5426. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. // _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); } }
  5428. // break;
  5429. case "mind":
  5430. _formdiv = new U.UF.UI.form(
  5431. "思维导图",
  5432. $$("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"
  5433. "id": "mind",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. case "doc":
  5442. // U.MD.D.I.isRoom();
  5443. _formdiv = new U.UF.UI.form(
  5444. "协同文档",
  5445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5446. "id": "doc",
  5447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5453. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5454. })
  5455. _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); } }
  5456. break;
  5457. case "train": //好友打开
  5458. _formdiv = new U.UF.UI.form(
  5459. "训练平台",
  5460. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5461. "id": "train",
  5462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5468. break;
  5469. case "studentStudy":
  5470. _formdiv = new U.UF.UI.form(
  5471. "课程中心",
  5472. $$("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
  5473. "id": "studentStudy",
  5474. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "mindNetwork": //好友打开
  5482. _formdiv = new U.UF.UI.form(
  5483. "思维网格",
  5484. $$("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 }), {
  5485. "id": "mindNetwork",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "studentClassRoom": //好友打开
  5494. _formdiv = new U.UF.UI.form(
  5495. "实时课堂",
  5496. $$("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 }), {
  5497. "id": "studentClassRoom",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. setTimeout(() => {
  5505. U.UF.F.windowZooming(_formdiv)
  5506. }, 0);
  5507. break;
  5508. }
  5509. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5510. //选择应用处理
  5511. switch (str) {
  5512. case "project": //好友打开
  5513. _formdiv = new U.UF.UI.form(
  5514. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  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": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5523. break;
  5524. case "student":
  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/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5528. "id": "student",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5535. break;
  5536. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5540. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5547. break;
  5548. case "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5552. "id": "sys",
  5553. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5559. break;
  5560. case "courseDesign":
  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": "/course-design-vue" }), {
  5564. "id": "courseDesign",
  5565. "style": { "width": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5571. break;
  5572. case "program":
  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://x.cocorobo.cn" }), {
  5576. "id": "program",
  5577. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5583. break;
  5584. case "class":
  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/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5588. "id": "class",
  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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5595. break;
  5596. case "Grade":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5600. "id": "Grade",
  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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5607. break;
  5608. case "teacherOffice":
  5609. _formdiv = new U.UF.UI.form(
  5610. "教研室",
  5611. $$("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 }), {
  5612. "id": "teacherOffice",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "my":
  5621. _formdiv = new U.UF.UI.form(
  5622. "我的资料",
  5623. $$("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 }), {
  5624. "id": "my",
  5625. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "notice":
  5633. _formdiv = new U.UF.UI.form(
  5634. "通知公告",
  5635. $$("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 }), {
  5636. "id": "notice",
  5637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. case "library":
  5645. _formdiv = new U.UF.UI.form(
  5646. "素材库",
  5647. $$("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 }), {
  5648. "id": "library",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "whiteboard":
  5657. _formdiv = new U.UF.UI.form(
  5658. "电子白板",
  5659. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5660. "id": "whiteboard",
  5661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "investigation":
  5669. _formdiv = new U.UF.UI.form(
  5670. "问卷调查",
  5671. $$("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 }), {
  5672. "id": "investigation",
  5673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "note":
  5681. _formdiv = new U.UF.UI.form(
  5682. "便签分类",
  5683. $$("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 }), {
  5684. "id": "note",
  5685. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. // case "score":
  5693. // _formdiv = new U.UF.UI.form(
  5694. // "量规评分",
  5695. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5696. // "id": "score",
  5697. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5698. // "onresize": function() {}
  5699. // }, {
  5700. // closecallback: function() {}
  5701. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. // _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); } }
  5703. // break;
  5704. case "mind":
  5705. _formdiv = new U.UF.UI.form(
  5706. "思维导图",
  5707. $$("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"
  5708. "id": "mind",
  5709. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "doc":
  5717. // U.MD.D.I.isRoom();
  5718. _formdiv = new U.UF.UI.form(
  5719. "协同文档",
  5720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5721. "id": "doc",
  5722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //创建窗体
  5727. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5728. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5729. })
  5730. _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); } }
  5731. break;
  5732. case "study":
  5733. _formdiv = new U.UF.UI.form(
  5734. "课程中心",
  5735. $$("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
  5736. "id": "study",
  5737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5738. "onresize": function () { }
  5739. }, {
  5740. closecallback: function () { }
  5741. }, { "style": { "height": "36px" } }).form; //创建窗体
  5742. _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); } }
  5743. break;
  5744. case "mindNetwork": //好友打开
  5745. _formdiv = new U.UF.UI.form(
  5746. "思维网格",
  5747. $$("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 }), {
  5748. "id": "mindNetwork",
  5749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _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); } }
  5755. break;
  5756. case "train": //好友打开
  5757. _formdiv = new U.UF.UI.form(
  5758. "训练平台",
  5759. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5760. "id": "mindNetwork",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _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); } }
  5767. break;
  5768. case "teacherClassRoom": //好友打开
  5769. _formdiv = new U.UF.UI.form(
  5770. "实时课堂",
  5771. $$("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 }), {
  5772. "id": "teacherClassRoom",
  5773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. _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); } }
  5779. setTimeout(() => {
  5780. U.UF.F.windowZooming(_formdiv)
  5781. }, 0);
  5782. break;
  5783. }
  5784. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5785. switch (str) {
  5786. case "project": //好友打开
  5787. _formdiv = new U.UF.UI.form(
  5788. "课程管理",
  5789. $$("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 }), {
  5790. "id": "project",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5797. break;
  5798. case "evaluate":
  5799. _formdiv = new U.UF.UI.form(
  5800. "学生评价",
  5801. $$("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 }), {
  5802. "id": "evaluate",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "notice":
  5811. _formdiv = new U.UF.UI.form(
  5812. "通知公告",
  5813. $$("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 }), {
  5814. "id": "notice",
  5815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. case "stuLibrary":
  5823. _formdiv = new U.UF.UI.form(
  5824. "学习资料",
  5825. $$("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 }), {
  5826. "id": "stuLibrary",
  5827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. _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); } }
  5833. break;
  5834. case "program":
  5835. _formdiv = new U.UF.UI.form(
  5836. "编程平台",
  5837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5838. "id": "program",
  5839. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "whiteboard":
  5847. _formdiv = new U.UF.UI.form(
  5848. "电子白板",
  5849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5850. "id": "whiteboard",
  5851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //创建窗体
  5856. _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); } }
  5857. break;
  5858. case "investigation":
  5859. _formdiv = new U.UF.UI.form(
  5860. "问卷调查",
  5861. $$("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 }), {
  5862. "id": "investigation",
  5863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5864. "onresize": function () { }
  5865. }, {
  5866. closecallback: function () { }
  5867. }, { "style": { "height": "36px" } }).form; //创建窗体
  5868. _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); } }
  5869. break;
  5870. case "mind":
  5871. _formdiv = new U.UF.UI.form(
  5872. "思维导图",
  5873. $$("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"
  5874. "id": "mind",
  5875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5876. "onresize": function () { }
  5877. }, {
  5878. closecallback: function () { }
  5879. }, { "style": { "height": "36px" } }).form; //创建窗体
  5880. _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); } }
  5881. break;
  5882. case "doc":
  5883. // U.MD.D.I.isRoom();
  5884. _formdiv = new U.UF.UI.form(
  5885. "协同文档",
  5886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5887. "id": "doc",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5894. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5895. })
  5896. _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); } }
  5897. break;
  5898. case "study":
  5899. _formdiv = new U.UF.UI.form(
  5900. "课程中心",
  5901. $$("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
  5902. "id": "study",
  5903. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. break;
  5910. case "mindNetwork": //好友打开
  5911. _formdiv = new U.UF.UI.form(
  5912. "思维网格",
  5913. $$("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 }), {
  5914. "id": "mindNetwork",
  5915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5916. "onresize": function () { }
  5917. }, {
  5918. closecallback: function () { }
  5919. }, { "style": { "height": "36px" } }).form; //创建窗体
  5920. _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); } }
  5921. break;
  5922. case "train": //好友打开
  5923. _formdiv = new U.UF.UI.form(
  5924. "训练平台",
  5925. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5926. "id": "train",
  5927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5928. "onresize": function () { }
  5929. }, {
  5930. closecallback: function () { }
  5931. }, { "style": { "height": "36px" } }).form; //创建窗体
  5932. _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); } }
  5933. break;
  5934. case "sys":
  5935. _formdiv = new U.UF.UI.form(
  5936. "目标管理",
  5937. $$("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 }), {
  5938. "id": "sys",
  5939. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _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); } }
  5945. break;
  5946. case "courseDesign":
  5947. _formdiv = new U.UF.UI.form(
  5948. "项目设计",
  5949. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5950. "id": "courseDesign",
  5951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //创建窗体
  5956. _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); } }
  5957. break;
  5958. }
  5959. } else if (!_type) {
  5960. switch (str) {
  5961. case "my":
  5962. _formdiv = new U.UF.UI.form(
  5963. "我的资料",
  5964. $$("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 }), {
  5965. "id": "my",
  5966. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //创建窗体
  5971. _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); } }
  5972. break;
  5973. }
  5974. }
  5975. switch (str) {
  5976. // AIprogram2 AI体验 aihub.cocorobo.cn
  5977. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5978. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5979. case "formulaEdi": //公式编辑
  5980. _formdiv = new U.UF.UI.form(
  5981. "公式编辑",
  5982. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5983. "id": "formulaEdi",
  5984. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. _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); } }
  5990. break;
  5991. case "molStr": //分子结构
  5992. _formdiv = new U.UF.UI.form(
  5993. "分子结构",
  5994. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5995. "id": "molStr",
  5996. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _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); } }
  6002. break;
  6003. case "timeAxis": //时间轴
  6004. _formdiv = new U.UF.UI.form(
  6005. "时间轴",
  6006. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6007. "id": "timeAxis",
  6008. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _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); } }
  6014. break;
  6015. case "AIprogram2": //AI体验
  6016. _formdiv = new U.UF.UI.form(
  6017. "AI体验",
  6018. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6019. "id": "AIprogram2",
  6020. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _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); } }
  6026. break;
  6027. case "Pythonprogram": //python编程
  6028. _formdiv = new U.UF.UI.form(
  6029. "Python编程",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6031. "id": "Pythonprogram",
  6032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _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); } }
  6038. break;
  6039. case "AIprogram": //ai编程
  6040. _formdiv = new U.UF.UI.form(
  6041. "AI编程平台",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6043. "id": "AIprogram",
  6044. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _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); } }
  6050. break;
  6051. case "CocoPi": //CocoPi
  6052. _formdiv = new U.UF.UI.form(
  6053. "CocoPi",
  6054. $$("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" }), {
  6055. "id": "CocoPi",
  6056. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _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); } }
  6062. break;
  6063. case "Wood": //Wood
  6064. _formdiv = new U.UF.UI.form(
  6065. "海龟编程",
  6066. $$("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/" }), {
  6067. "id": "Wood",
  6068. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _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); } }
  6074. break;
  6075. case "car": //模拟驾驶
  6076. _formdiv = new U.UF.UI.form(
  6077. "模拟驾驶",
  6078. $$("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/" }), {
  6079. "id": "car",
  6080. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _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); } }
  6086. break;
  6087. case "lineSearch": //路径搜索
  6088. _formdiv = new U.UF.UI.form(
  6089. "路径搜索",
  6090. $$("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/" }), {
  6091. "id": "lineSearch",
  6092. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. case "deepLearning": //深度学习
  6100. _formdiv = new U.UF.UI.form(
  6101. "深度学习",
  6102. $$("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/#" }), {
  6103. "id": "deepLearning",
  6104. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. _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); } }
  6110. break;
  6111. case "allHistory": //深度学习
  6112. _formdiv = new U.UF.UI.form(
  6113. "全历史",
  6114. $$("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/" }), {
  6115. "id": "allHistory",
  6116. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "chatPDF": //ai编程
  6124. _formdiv = new U.UF.UI.form(
  6125. "chatPDF",
  6126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6127. "id": "chatPDF",
  6128. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "resources": //国家教育
  6136. _formdiv = new U.UF.UI.form(
  6137. "国家教育",
  6138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6139. "id": "resources",
  6140. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "codeEdit": //源码编辑
  6148. _formdiv = new U.UF.UI.form(
  6149. "源码编辑",
  6150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6151. "id": "codeEdit",
  6152. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break; //
  6159. case "MindMap": //MindMap
  6160. _formdiv = new U.UF.UI.form(
  6161. "MindMap",
  6162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6163. "id": "MindMap",
  6164. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "netWorkPanel": //netWorkPanel
  6172. _formdiv = new U.UF.UI.form(
  6173. "netWorkPanel",
  6174. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6175. "id": "netWorkPanel",
  6176. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "GeoGebra": //GeoGebra
  6184. _formdiv = new U.UF.UI.form(
  6185. "GeoGebra",
  6186. $$("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" }), {
  6187. "id": "GeoGebra",
  6188. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "translation": //翻译
  6196. _formdiv = new U.UF.UI.form(
  6197. "翻译",
  6198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6199. "id": "translation",
  6200. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _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); } }
  6206. break;
  6207. case "mohe": //魔盒
  6208. _formdiv = new U.UF.UI.form(
  6209. "魔盒识字",
  6210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6211. "id": "mohe",
  6212. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. _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); } }
  6218. break;
  6219. case "24game": //24点
  6220. _formdiv = new U.UF.UI.form(
  6221. "24点",
  6222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6223. "id": "24game",
  6224. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _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); } }
  6230. break;
  6231. case "case":
  6232. _formdiv = new U.UF.UI.form(
  6233. "课程进展",
  6234. $$("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 }), {
  6235. "id": "case",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _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); } }
  6242. break;
  6243. case "snf":
  6244. _formdiv = new U.UF.UI.form(
  6245. "赛诺梵",
  6246. $$("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" }), {
  6247. "id": "snf",
  6248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6249. "onresize": function () { }
  6250. }, {
  6251. closecallback: function () { }
  6252. }, { "style": { "height": "36px" } }).form; //创建窗体
  6253. _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); } }
  6254. break;
  6255. case "hanFamily":
  6256. _formdiv = new U.UF.UI.form(
  6257. "汉字家族",
  6258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6259. "id": "hanFamily",
  6260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6261. "onresize": function () { }
  6262. }, {
  6263. closecallback: function () { }
  6264. }, { "style": { "height": "36px" } }).form; //创建窗体
  6265. _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); } }
  6266. break;
  6267. case "hanClassics":
  6268. _formdiv = new U.UF.UI.form(
  6269. "国学经典",
  6270. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6271. "id": "hanClassics",
  6272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6273. "onresize": function () { }
  6274. }, {
  6275. closecallback: function () { }
  6276. }, { "style": { "height": "36px" } }).form; //创建窗体
  6277. _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); } }
  6278. break;
  6279. case "hanTraining":
  6280. _formdiv = new U.UF.UI.form(
  6281. "笔画训练",
  6282. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6283. "id": "hanTraining",
  6284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. _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); } }
  6290. break;
  6291. case "hanClass":
  6292. _formdiv = new U.UF.UI.form(
  6293. "书法课堂",
  6294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6295. "id": "hanClass",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _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); } }
  6302. break;
  6303. case "han":
  6304. _formdiv = new U.UF.UI.form(
  6305. "汉字宫",
  6306. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6307. "id": "han",
  6308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _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); } }
  6314. break;
  6315. case "projectGM": //课程管理
  6316. _formdiv = new U.UF.UI.form(
  6317. "课程管理",
  6318. $$("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 }), {
  6319. "id": "projectGM",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _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); } }
  6326. break;
  6327. case "studyGM": //课程中心
  6328. _formdiv = new U.UF.UI.form(
  6329. "课程中心",
  6330. $$("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
  6331. "id": "study",
  6332. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _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); } }
  6338. break;
  6339. // studentGM
  6340. case "studentGM": //学生管理
  6341. _formdiv = new U.UF.UI.form(
  6342. "学生管理",
  6343. $$("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 }), {
  6344. "id": "studentGM",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "evaluateGM": //学生评价
  6353. _formdiv = new U.UF.UI.form(
  6354. "学生评价",
  6355. $$("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 }), {
  6356. "id": "evaluateGM",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _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); } }
  6363. break;
  6364. // classGM
  6365. case "classGM": //班级管理
  6366. _formdiv = new U.UF.UI.form(
  6367. "班级管理",
  6368. $$("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 }), {
  6369. "id": "classGM",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _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); } }
  6376. break;
  6377. // dataGM
  6378. case "dataGM":
  6379. _formdiv = new U.UF.UI.form(
  6380. "我的资料",
  6381. $$("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 }), {
  6382. "id": "dataGM",
  6383. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6384. "onresize": function () { }
  6385. }, {
  6386. closecallback: function () { }
  6387. }, { "style": { "height": "36px" } }).form; //创建窗体
  6388. _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); } }
  6389. break;
  6390. // caseGM
  6391. case "caseGM": //课程进展
  6392. _formdiv = new U.UF.UI.form(
  6393. "课程进展",
  6394. $$("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 }), {
  6395. "id": "caseGM",
  6396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. // meterialGM
  6404. case "meterialGM": //素材库
  6405. _formdiv = new U.UF.UI.form(
  6406. "素材库",
  6407. $$("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 }), {
  6408. "id": "meterialGM",
  6409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6410. "onresize": function () { }
  6411. }, {
  6412. closecallback: function () { }
  6413. }, { "style": { "height": "36px" } }).form; //创建窗体
  6414. _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); } }
  6415. break;
  6416. // evaluateSGM
  6417. case "evaluateSGM": //我的评价
  6418. _formdiv = new U.UF.UI.form(
  6419. "我的评价",
  6420. $$("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 }), {
  6421. "id": "evaluateSGM",
  6422. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //创建窗体
  6427. _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); } }
  6428. break;
  6429. case "jupyter": //jupyter
  6430. _formdiv = new U.UF.UI.form(
  6431. "jupyter",
  6432. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6433. "id": "jupyter",
  6434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //创建窗体
  6439. _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); } }
  6440. break;
  6441. case "number": //数字实验室
  6442. _formdiv = new U.UF.UI.form(
  6443. "数字实验室",
  6444. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6445. "id": "number",
  6446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _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); } }
  6452. break;
  6453. case "studentCourse": //项目管理 学生
  6454. _formdiv = new U.UF.UI.form(
  6455. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6456. $$("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 }), {
  6457. "id": "studentCourse",
  6458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _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); } }
  6464. break;
  6465. case "studentCourseS": //项目管理 老师
  6466. _formdiv = new U.UF.UI.form(
  6467. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6468. $$("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 }), {
  6469. "id": "studentCourseS",
  6470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //创建窗体
  6475. _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); } }
  6476. break;
  6477. case "studentIndex": //项目中心
  6478. _formdiv = new U.UF.UI.form(
  6479. "项目中心",
  6480. $$("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 }), {
  6481. "id": "studentIndex",
  6482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //创建窗体
  6487. _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); } }
  6488. break;
  6489. case "CaseDesignS":
  6490. _formdiv = new U.UF.UI.form(
  6491. "项目进展",
  6492. $$("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 }), {
  6493. "id": "case",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. case "tcStudent": //腾讯学生管理
  6502. _formdiv = new U.UF.UI.form(
  6503. "学生管理",
  6504. $$("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 }), {
  6505. "id": "tcStudent",
  6506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //创建窗体
  6511. _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); } }
  6512. break;
  6513. case "tcSchool": //腾讯学校管理
  6514. _formdiv = new U.UF.UI.form(
  6515. "学校管理",
  6516. $$("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 }), {
  6517. "id": "tcSchool",
  6518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "tcTeacher": //腾讯学校管理
  6526. _formdiv = new U.UF.UI.form(
  6527. "教师管理",
  6528. $$("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 }), {
  6529. "id": "tcTeacher",
  6530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "teacher":
  6538. _formdiv = new U.UF.UI.form(
  6539. "教师管理",
  6540. $$("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 }), {
  6541. "id": "teacher",
  6542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "tcData": //腾讯我的资料
  6550. _formdiv = new U.UF.UI.form(
  6551. "我的资料",
  6552. $$("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 }), {
  6553. "id": "tcData",
  6554. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _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); } }
  6560. break;
  6561. case "tcNotice": //腾讯消息通知
  6562. _formdiv = new U.UF.UI.form(
  6563. "消息通知",
  6564. $$("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 }), {
  6565. "id": "tcNotice",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. case "myReport": //好友打开
  6574. _formdiv = new U.UF.UI.form(
  6575. "我的评价",
  6576. $$("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 }), {
  6577. "id": "myReport",
  6578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "learnAna": //好友打开
  6586. _formdiv = new U.UF.UI.form(
  6587. "学习分析",
  6588. $$("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 }), {
  6589. "id": "learnAna",
  6590. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "AIChat": //AI共创
  6598. _formdiv = new U.UF.UI.form(
  6599. "AI共创",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6601. "id": "AIChat",
  6602. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. istop: true,
  6606. closecallback: function () { $("#aichat_icon").remove(); },
  6607. narrowcallback: function () {
  6608. if (!$("#aichat_icon")[0]) {
  6609. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6610. }
  6611. },
  6612. }, { "style": { "height": "36px" } }).form; //创建窗体
  6613. _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); } }
  6614. break;
  6615. case "ainew": //AI共创
  6616. _formdiv = new U.UF.UI.form(
  6617. "AI协同",
  6618. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6619. "id": "ainew",
  6620. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6621. "onresize": function () { }
  6622. }, {
  6623. closecallback: function () { }
  6624. }, { "style": { "height": "36px" } }).form; //创建窗体
  6625. _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); } }
  6626. break;
  6627. case "gpt4": //gpt4
  6628. _formdiv = new U.UF.UI.form(
  6629. "AI助手",
  6630. $$("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 }), {
  6631. "id": "gpt4",
  6632. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, { "style": { "height": "36px" } }).form; //创建窗体
  6637. _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); } }
  6638. break;
  6639. case "aigpt": //gpt4
  6640. _formdiv = new U.UF.UI.form(
  6641. "AI助手+",
  6642. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6643. "id": "aigpt",
  6644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () {
  6648. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6649. }
  6650. }, { "style": { "height": "36px" } }).form; //创建窗体
  6651. _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); } }
  6652. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6653. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6654. })
  6655. break;
  6656. case "aiKnowledge": //aiKnowledge
  6657. _formdiv = new U.UF.UI.form(
  6658. "知识建构",
  6659. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6660. "id": "aiKnowledge",
  6661. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, { "style": { "height": "36px" } }).form; //创建窗体
  6666. _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); } }
  6667. break;
  6668. case "futureClass": //AI共创
  6669. _formdiv = new U.UF.UI.form(
  6670. "协同建构",
  6671. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6672. "id": "synergyCourse",
  6673. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () {
  6677. $("iframe", _formdiv)[0].contentWindow.loginout();
  6678. }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _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); } }
  6681. break;
  6682. case "aiagent": //ai agent
  6683. _formdiv = new U.UF.UI.form(
  6684. "AI Agent",
  6685. $$("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" }), {
  6686. "id": "AIAgent",
  6687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _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); } }
  6693. break;
  6694. case "dataBoard": //数据看板
  6695. _formdiv = new U.UF.UI.form(
  6696. "数据看板",
  6697. $$("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 }), {
  6698. "id": "dataBoard",
  6699. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "dataBoardSies": //数据融合
  6707. _formdiv = new U.UF.UI.form(
  6708. "数据融合",
  6709. $$("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 }), {
  6710. "id": "dataBoardSies",
  6711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "dataBoardNew": //数据看板
  6719. _formdiv = new U.UF.UI.form(
  6720. "综合看板",
  6721. $$("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 }), {
  6722. "id": "dataBoardNew",
  6723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _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); } }
  6729. break;
  6730. case "dataBoardTest": //数据看板
  6731. _formdiv = new U.UF.UI.form(
  6732. "评测看板",
  6733. $$("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 }), {
  6734. "id": "dataBoardTest",
  6735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //创建窗体
  6740. _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); } }
  6741. break;
  6742. case "AIAnalyse": //AI共创
  6743. _formdiv = new U.UF.UI.form(
  6744. "AI分析",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6746. "id": "AIAnalyse",
  6747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "studioCourse": //AI共创
  6755. _formdiv = new U.UF.UI.form(
  6756. "工作管理",
  6757. $$("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 }), {
  6758. "id": "studioCourse",
  6759. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _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); } }
  6765. break;
  6766. case "studioIndex": //AI共创
  6767. _formdiv = new U.UF.UI.form(
  6768. "工作中心",
  6769. $$("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 }), {
  6770. "id": "studioIndex",
  6771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "source":
  6779. _formdiv = new U.UF.UI.form(
  6780. "教学资源",
  6781. $$("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 }), {
  6782. "id": "source",
  6783. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. break;
  6790. case "testTeacher":
  6791. _formdiv = new U.UF.UI.form(
  6792. "智能表单",
  6793. $$("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 }), {
  6794. "id": "testTeacher",
  6795. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _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); } }
  6801. break;
  6802. case "testStudent":
  6803. _formdiv = new U.UF.UI.form(
  6804. "教师中心",
  6805. $$("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 }), {
  6806. "id": "testStudent",
  6807. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _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); } }
  6813. break;
  6814. case "testTeacherSies":
  6815. _formdiv = new U.UF.UI.form(
  6816. "教师管理",
  6817. $$("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 }), {
  6818. "id": "testTeacherSies",
  6819. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _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); } }
  6825. break;
  6826. case "testStudentSies":
  6827. _formdiv = new U.UF.UI.form(
  6828. "教师中心",
  6829. $$("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 }), {
  6830. "id": "testStudentSies",
  6831. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _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); } }
  6837. break;
  6838. case "ytpbl": //消息通知
  6839. _formdiv = new U.UF.UI.form(
  6840. "案例征集",
  6841. $$("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 }), {
  6842. "id": "ytpbl",
  6843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _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); } }
  6849. // 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");
  6850. break;
  6851. case "aiCourseResource": //人工智能窗体
  6852. _formdiv = new U.UF.UI.form(
  6853. false,
  6854. $$("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 }), {
  6855. "id": "aiCourseResource",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { },
  6858. "isdrag": false,
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //创建窗体
  6862. _taskbar = ''
  6863. break;
  6864. case "szdjgCocooroboX": //图形化编程
  6865. _formdiv = new U.UF.UI.form(
  6866. "图形化编程",
  6867. $$("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" }), {
  6868. "id": "szdjgCocooroboX",
  6869. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //创建窗体
  6874. _taskbar = ''
  6875. break;
  6876. case "szdjgPython": //python编程
  6877. _formdiv = new U.UF.UI.form(
  6878. "Python编程",
  6879. $$("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" }), {
  6880. "id": "szdjgPython",
  6881. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //创建窗体
  6886. _taskbar = ''
  6887. break;
  6888. case "Record":
  6889. _formdiv = new U.UF.UI.form(
  6890. "观察记录",
  6891. $$("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 }), {
  6892. "id": "Record",
  6893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //创建窗体
  6898. _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); } }
  6899. break;
  6900. case "aigptCourse":
  6901. _formdiv = new U.UF.UI.form(
  6902. "AI智能体",
  6903. $$("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' }), {
  6904. "id": "aigptCourse",
  6905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //创建窗体
  6910. _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); } }
  6911. break;
  6912. case "classroomObservation":
  6913. _formdiv = new U.UF.UI.form(
  6914. "课堂观察",
  6915. $$("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 }), {
  6916. "id": "classroomObservation",
  6917. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _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); } }
  6923. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6924. break;
  6925. case "pblCourse":
  6926. _formdiv = new U.UF.UI.form(
  6927. "学生PBL",
  6928. $$("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 }), {
  6929. "id": "pblCourse",
  6930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6931. "onresize": function () { }
  6932. }, {
  6933. closecallback: function () { }
  6934. }, { "style": { "height": "36px" } }).form; //创建窗体
  6935. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6936. break;
  6937. case "appStore":
  6938. _formdiv = new U.UF.UI.form(
  6939. "CocoFlow",
  6940. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6941. "id": "pblCourse",
  6942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6943. "onresize": function () { }
  6944. }, {
  6945. closecallback: function () { }
  6946. }, { "style": { "height": "36px" } }).form; //创建窗体
  6947. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6948. break;
  6949. case "userExamine":
  6950. _formdiv = new U.UF.UI.form(
  6951. "账号申请",
  6952. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6953. "id": "userExamine",
  6954. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6955. "onresize": function () { }
  6956. }, {
  6957. closecallback: function () { }
  6958. }, { "style": { "height": "36px" } }).form; //创建窗体
  6959. break;
  6960. }
  6961. //U.MD.D.I.openClick(str);
  6962. //如果有任务栏信息
  6963. if (_taskbar) {
  6964. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6965. }
  6966. }
  6967. // U.MD.D.I.openClick = function(str){
  6968. // var click = '';
  6969. // switch(str){
  6970. // case 'friend':
  6971. // click = '我的好友';
  6972. // break;
  6973. // case 'domain':
  6974. // click = '域名管理';
  6975. // break;
  6976. // case 'disk':
  6977. // click = '我的云盘';
  6978. // break;
  6979. // case 'word':
  6980. // click = 'Word';
  6981. // break;
  6982. // case 'excel':
  6983. // click = 'Execl';
  6984. // break;
  6985. // case 'txt':
  6986. // click = '文本文件';
  6987. // break;
  6988. // case 'lookupFriend':
  6989. // click = '查找好友';
  6990. // break;
  6991. // case 'ftp':
  6992. // click = 'FTP';
  6993. // break;
  6994. // case 'group':
  6995. // click = '群组';
  6996. // break;
  6997. // case 'set':
  6998. // click = '我的设置';
  6999. // break;
  7000. // case 'systemSet':
  7001. // click = '系统设置';
  7002. // break;
  7003. // case 'boomYun':
  7004. // click = '互联办公';
  7005. // break;
  7006. // case 'xz':
  7007. // click = '云端下载';
  7008. // break;
  7009. // case 'client':
  7010. // click = '有思浏览器';
  7011. // break;
  7012. // case 'backEndProgramming':
  7013. // click = '在线后台编程';
  7014. // break;
  7015. // case 'frontEndProgramming':
  7016. // click = '在线前端编程';
  7017. // break;
  7018. // default: break;
  7019. // }
  7020. // if(U.MD.D.I.Ip && click){
  7021. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7022. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7023. // })
  7024. // }
  7025. // }
  7026. /**
  7027. *函数作用:ajax简易函数,使用post格式
  7028. *@param url {data} 后台地址
  7029. *@param data {data} 参数json
  7030. *@param fn {data} 回调函数
  7031. *
  7032. */
  7033. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7034. // var xhr = new XMLHttpRequest();
  7035. // xhr.open("GET",url,true);
  7036. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7037. // xhr.onreadystatechange = function(){
  7038. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7039. // fn.call(this,xhr.responseText);
  7040. // }
  7041. // };
  7042. // xhr.send();
  7043. // }
  7044. /*判断是否是内网IP*/
  7045. // U.MD.D.I.isInnerIPFn = function(str){
  7046. // var curPageUrl = str;
  7047. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7048. // curPageUrl =curPageUrl.replace(reg1,'');
  7049. // // console.log('curPageUrl-1 '+curPageUrl);
  7050. // var reg2 = /\:+/g;//替换冒号为一点
  7051. // curPageUrl =curPageUrl.replace(reg2,'.');
  7052. // // console.log('curPageUrl-2 '+curPageUrl);
  7053. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7054. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7055. // if(curPageUrl[2] != '16'){
  7056. // return ipAddress;
  7057. // }else{
  7058. // return false;
  7059. // }
  7060. // }
  7061. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7062. // //compatibility for firefox and chrome
  7063. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7064. // var pc = new myPeerConnection({
  7065. // iceServers: []
  7066. // }),
  7067. // noop = function() {},
  7068. // localIPs = {},
  7069. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7070. // key;
  7071. // function iterateIP(ip) {
  7072. // if (!localIPs[ip]) onNewIP(ip);
  7073. // localIPs[ip] = true;
  7074. // }
  7075. // //create a bogus data channel
  7076. // pc.createDataChannel("");
  7077. // // create offer and set local description
  7078. // pc.createOffer().then(function(sdp) {
  7079. // sdp.sdp.split('\n').forEach(function(line) {
  7080. // if (line.indexOf('candidate') < 0) return;
  7081. // line.match(ipRegex).forEach(iterateIP);
  7082. // });
  7083. // pc.setLocalDescription(sdp, noop, noop);
  7084. // }).catch(function(reason) {
  7085. // // An error occurred, so handle the failure to connect
  7086. // });
  7087. // //sten for candidate events
  7088. // pc.onicecandidate = function(ice) {
  7089. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7090. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7091. // };
  7092. // }
  7093. // U.MD.D.I.getUserIpBool = function(callback){
  7094. // U.MD.D.I.getUserIP(function(ip){
  7095. // alert("Got IP! :" + ip);
  7096. // });
  7097. //}
  7098. //#endregion
  7099. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7100. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7101. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7102. _userinfo = US.userInfo, //登录用户信息
  7103. _userid = US.userInfo.userid //登录用户id
  7104. let _iframe;
  7105. let _cid = cid,
  7106. _stage = stage,
  7107. _task = task,
  7108. _tool = tool;
  7109. var _jie = $$("div", {
  7110. "style": {
  7111. "position": "absolute",
  7112. "bottom": "50px",
  7113. "right": "50px",
  7114. "zIndex": "9999",
  7115. "backgroundColor": "#2268bc",
  7116. "color": "#fff",
  7117. "padding": "12px 20px",
  7118. "cursor": "pointer",
  7119. "borderRadius": "4px",
  7120. },
  7121. "innerHTML": "提交作业"
  7122. })
  7123. let aTool = ''
  7124. let _loading = document.createElement('div')
  7125. _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;"
  7126. // _loading.id = "";
  7127. let _lchild = document.createElement('div')
  7128. let _limg = document.createElement('img')
  7129. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7130. _limg.style = "width: 26px;margin-right: 10px;"
  7131. _lchild.appendChild(_limg)
  7132. let _lspan = document.createElement('span')
  7133. _lspan.innerHTML = "上传中..."
  7134. _lchild.appendChild(_lspan)
  7135. _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%);"
  7136. _loading.appendChild(_lchild)
  7137. var _box = $$('div', {
  7138. "style": {
  7139. "position": "relative",
  7140. "width": "100%",
  7141. "height": "100%",
  7142. },
  7143. })
  7144. _box.appendChild(_loading)
  7145. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7146. switch (str) {
  7147. case "whiteboard":
  7148. aTool = 1;
  7149. _iframe = $$("iframe", {
  7150. "frameborder": "no",
  7151. "border": "0",
  7152. "scrolling ": "no",
  7153. "style": {
  7154. "cssText": "border:0;width:100%;height:100%"
  7155. },
  7156. "src": "https://beta.iwb.cocorobo.cn/"
  7157. })
  7158. _box.appendChild(_iframe);
  7159. _box.appendChild(_jie);
  7160. _formdiv = new U.UF.UI.form(
  7161. "电子白板",
  7162. _box, {
  7163. "id": "whiteboard" + cid + stage + task + tool,
  7164. "style": {
  7165. "width": "90%",
  7166. "height": "90%",
  7167. "overflow": 'hidden'
  7168. },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, {
  7173. "style": {
  7174. "height": "36px"
  7175. }
  7176. }).form; //创建窗体
  7177. _taskbar = {
  7178. "id": str + _formdiv.id,
  7179. "style": {
  7180. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7181. },
  7182. "name": "电子白板",
  7183. "forms": _formdiv,
  7184. "click": function () {
  7185. U.MD.D.I.openApplication(str, obj, info);
  7186. }
  7187. }
  7188. break;
  7189. case "mind":
  7190. aTool = 3;
  7191. _iframe = $$("iframe", {
  7192. "frameborder": "no",
  7193. "border": "0",
  7194. "scrolling ": "no",
  7195. "style": {
  7196. "cssText": "border:0;width:100%;height:100%"
  7197. },
  7198. "src": "/kityminder-editor/dist/index.html"
  7199. })
  7200. _box.appendChild(_iframe);
  7201. _box.appendChild(_jie);
  7202. _formdiv = new U.UF.UI.form(
  7203. "思维导图",
  7204. _box, { //"/jsmind/example/demo.html"
  7205. "id": "mind" + cid + stage + task + tool,
  7206. "style": {
  7207. "width": "90%",
  7208. "height": "90%",
  7209. "overflow": 'hidden'
  7210. },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, {
  7215. "style": {
  7216. "height": "36px"
  7217. }
  7218. }).form; //创建窗体
  7219. _taskbar = {
  7220. "id": str + _formdiv.id,
  7221. "style": {
  7222. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7223. },
  7224. "name": "思维导图",
  7225. "forms": _formdiv,
  7226. "click": function () {
  7227. U.MD.D.I.openApplication(str, obj, info);
  7228. }
  7229. }
  7230. break;
  7231. case "MindMap":
  7232. aTool = 3;
  7233. _iframe = $$("iframe", {
  7234. "frameborder": "no",
  7235. "border": "0",
  7236. "scrolling ": "no",
  7237. "style": {
  7238. "cssText": "border:0;width:100%;height:100%"
  7239. },
  7240. "src": "//cloud.cocorobo.cn/mind/"
  7241. })
  7242. _box.appendChild(_iframe);
  7243. _box.appendChild(_jie);
  7244. _formdiv = new U.UF.UI.form(
  7245. "思维导图",
  7246. _box, { //"/jsmind/example/demo.html"
  7247. "id": "mind" + cid + stage + task + tool,
  7248. "style": {
  7249. "width": "90%",
  7250. "height": "90%",
  7251. "overflow": 'hidden'
  7252. },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, {
  7257. "style": {
  7258. "height": "36px"
  7259. }
  7260. }).form; //创建窗体
  7261. _taskbar = {
  7262. "id": str + _formdiv.id,
  7263. "style": {
  7264. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7265. },
  7266. "name": "思维导图",
  7267. "forms": _formdiv,
  7268. "click": function () {
  7269. U.MD.D.I.openApplication(str, obj, info);
  7270. }
  7271. }
  7272. break;
  7273. case "doc":
  7274. aTool = 6;
  7275. _iframe = $$("iframe", {
  7276. "frameborder": "no",
  7277. "border": "0",
  7278. "scrolling ": "no",
  7279. "style": {
  7280. "cssText": "border:0;width:100%;height:100%"
  7281. },
  7282. "src": "/Office/Word/WordEditArea.htm"
  7283. })
  7284. _box.appendChild(_iframe);
  7285. _box.appendChild(_jie);
  7286. _formdiv = new U.UF.UI.form(
  7287. "协同文档",
  7288. _box, {
  7289. "id": "doc" + cid + stage + task + tool,
  7290. "style": {
  7291. "width": "90%",
  7292. "height": "90%",
  7293. "overflow": 'hidden'
  7294. },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, {
  7299. "style": {
  7300. "height": "36px"
  7301. }
  7302. }).form; //创建窗体
  7303. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7304. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7305. })
  7306. _taskbar = {
  7307. "id": str + _formdiv.id,
  7308. "style": {
  7309. "backgroundImage": "url(/img/icon/doc.png)"
  7310. },
  7311. "name": "协同文档",
  7312. "forms": _formdiv,
  7313. "click": function () {
  7314. U.MD.D.I.openApplication(str, obj, info);
  7315. }
  7316. }
  7317. break;
  7318. case "mindNetwork": //好友打开
  7319. aTool = 7;
  7320. _iframe = $$("iframe", {
  7321. "webkitallowfullscreen": "",
  7322. "mozallowfullscreen": "",
  7323. "allowfullscreen": "",
  7324. "frameborder": "no",
  7325. "border": "0",
  7326. "scrolling ": "no",
  7327. "style": {
  7328. "cssText": "border:0; width:100%; height:100%;"
  7329. },
  7330. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7331. })
  7332. _box.appendChild(_iframe);
  7333. _box.appendChild(_jie);
  7334. _formdiv = new U.UF.UI.form(
  7335. "思维网格",
  7336. _box, {
  7337. "id": "mindNetwork" + cid + stage + task + tool,
  7338. "style": {
  7339. "width": "90%",
  7340. "height": "90%",
  7341. "overflow": 'hidden'
  7342. },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, {
  7347. "style": {
  7348. "height": "36px"
  7349. }
  7350. }).form; //创建窗体
  7351. _taskbar = {
  7352. "id": str + _formdiv.id,
  7353. "style": {
  7354. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7355. },
  7356. "name": "思维网格",
  7357. "forms": _formdiv,
  7358. "click": function () {
  7359. U.MD.D.I.openApplication(str, obj, info);
  7360. }
  7361. }
  7362. break;
  7363. case "courseDesign":
  7364. _iframe = $$("iframe", {
  7365. "webkitallowfullscreen": "",
  7366. "mozallowfullscreen": "",
  7367. "allowfullscreen": "",
  7368. "frameborder": "no",
  7369. "border": "0",
  7370. "scrolling ": "no",
  7371. "style": {
  7372. "cssText": "border:0; width:100%; height:100%;"
  7373. },
  7374. "src": "/course-design-vue"
  7375. })
  7376. _box.appendChild(_iframe);
  7377. _box.appendChild(_jie);
  7378. _formdiv = new U.UF.UI.form(
  7379. "项目设计",
  7380. _box, {
  7381. "id": "courseDesign" + cid + stage + task + tool,
  7382. "style": {
  7383. "width": "90%",
  7384. "height": "90%",
  7385. "overflow": 'hidden'
  7386. },
  7387. "onresize": function () { }
  7388. }, {
  7389. closecallback: function () { }
  7390. }, {
  7391. "style": {
  7392. "height": "36px"
  7393. }
  7394. }).form; //创建窗体
  7395. _taskbar = {
  7396. "id": str + _formdiv.id,
  7397. "style": {
  7398. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7399. },
  7400. "name": "项目设计",
  7401. "forms": _formdiv,
  7402. "click": function () {
  7403. U.MD.D.I.openApplication(str, obj, info);
  7404. }
  7405. }
  7406. break;
  7407. }
  7408. const script1 = document.createElement("script");
  7409. script1.type = "text/javascript";
  7410. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7411. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7412. const script2 = document.createElement("script");
  7413. script2.type = "text/javascript";
  7414. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7415. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7416. const script3 = document.createElement("script");
  7417. script3.type = "text/javascript";
  7418. script3.charset = "UTF-8";
  7419. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7420. const script4 = document.createElement("script");
  7421. script4.type = "text/javascript";
  7422. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7423. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7424. if (_iframe) {
  7425. if (str == 'doc') {
  7426. _iframe = _formdiv.querySelector('iframe')
  7427. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7428. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7429. _iframe.contentWindow.document.body.appendChild(script1);
  7430. _iframe.contentWindow.document.body.appendChild(script2);
  7431. // _iframe.contentWindow.document.body.appendChild(script3);
  7432. _iframe.contentWindow.document.body.appendChild(script4);
  7433. })
  7434. if (onloadListener) {
  7435. _iframe.contentDocument.location.reload()
  7436. } else {
  7437. _iframe.contentDocument.location.reload()
  7438. }
  7439. } else if (str == 'courseDesign') {
  7440. U.UF.DL.iframeLoad(_iframe, function () {
  7441. // _iframe.contentWindow.U.MD.O.W.load();
  7442. // _iframe.contentWindow.document.body.appendChild(script1);
  7443. _iframe.contentWindow.document.body.appendChild(script2);
  7444. _iframe.contentWindow.document.body.appendChild(script4);
  7445. })
  7446. } else if (str == 'mind') {
  7447. _iframe = _formdiv.querySelector('iframe')
  7448. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7449. //
  7450. _iframe.contentWindow.document.body.appendChild(script1);
  7451. _iframe.contentWindow.document.body.appendChild(script2);
  7452. _iframe.contentWindow.document.body.appendChild(script4);
  7453. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7454. })
  7455. if (onloadListener) {
  7456. _iframe.contentDocument.location.reload()
  7457. } else {
  7458. _iframe.contentDocument.location.reload()
  7459. }
  7460. } else if (str == 'whiteboard') {
  7461. _iframe = _formdiv.querySelector('iframe')
  7462. let onloadListener = _iframe.onload = () => {
  7463. _iframe.contentWindow.document.body.appendChild(script1);
  7464. _iframe.contentWindow.document.body.appendChild(script2);
  7465. _iframe.contentWindow.document.body.appendChild(script4);
  7466. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7467. };
  7468. // if (onloadListener) {
  7469. // try {
  7470. // _iframe.src += "?cocorobo="+new Date().getTime()
  7471. // _iframe.contentWindow.document.location.reload()
  7472. // } catch (error) {
  7473. // }
  7474. // } else {
  7475. // _iframe.contentDocument.location.reload()
  7476. // }
  7477. } else {
  7478. _iframe.onload = () => {
  7479. _iframe.contentWindow.document.body.appendChild(script1);
  7480. _iframe.contentWindow.document.body.appendChild(script2);
  7481. // _iframe.contentWindow.document.body.appendChild(script3);
  7482. _iframe.contentWindow.document.body.appendChild(script4);
  7483. };
  7484. }
  7485. _jie.onclick = async () => {
  7486. let text = ''
  7487. if (aTool == 1) {
  7488. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7489. } else if (aTool == 6) {
  7490. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7491. } else if (aTool == 3) {
  7492. text = await U.MD.D.I.getEditorContent(_iframe);
  7493. }
  7494. _loading.style.display = 'flex'
  7495. console.log(_loading);
  7496. var _ajs = _iframe.contentWindow.document.createElement("script");
  7497. _ajs.type = "text/javascript";
  7498. _ajs.innerHTML =
  7499. // 'console.log(' + _loading + ');\n' +
  7500. 'var _js = document.createElement("script");\n' +
  7501. '_js.type="text/javascript";\n' +
  7502. '_js.charset="UTF-8";\n' +
  7503. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7504. "_js.onload = function(){\n" +
  7505. ' var a = document.getElementsByTagName("img")\n' +
  7506. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7507. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7508. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7509. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7510. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7511. "beforeUpload_shishi(file," +
  7512. "'" +
  7513. _userid +
  7514. "'" +
  7515. ", " +
  7516. "'" +
  7517. _cid +
  7518. "'" +
  7519. ", " +
  7520. "'" +
  7521. _stage +
  7522. "'" +
  7523. ", " +
  7524. "'" +
  7525. _task +
  7526. "'" +
  7527. ", " +
  7528. "'" +
  7529. _tool +
  7530. "'" +
  7531. ", " +
  7532. "'" +
  7533. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7534. "'" +
  7535. ", " +
  7536. "'" +
  7537. aTool +
  7538. "'" +
  7539. ", " +
  7540. "`" +
  7541. text +
  7542. "`" +
  7543. ")\n" +
  7544. " });\n" +
  7545. "}\n" +
  7546. "document.head.appendChild(_js);\n";
  7547. _iframe.contentWindow.document.head.appendChild(_ajs);
  7548. }
  7549. }
  7550. //U.MD.D.I.openClick(str);
  7551. //如果有任务栏信息
  7552. // if (_taskbar) {
  7553. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7554. // }
  7555. }
  7556. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7557. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7558. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7559. _userinfo = US.userInfo, //登录用户信息
  7560. _userid = US.userInfo.userid //登录用户id
  7561. let _iframe;
  7562. let _cid = cid,
  7563. _stage = stage,
  7564. _task = task,
  7565. _tool = tool;
  7566. var _jie = $$("div", {
  7567. "style": {
  7568. "position": "absolute",
  7569. "bottom": "50px",
  7570. "right": "50px",
  7571. "zIndex": "9999",
  7572. "backgroundColor": "#2268bc",
  7573. "color": "#fff",
  7574. "padding": "12px 20px",
  7575. "cursor": "pointer",
  7576. "borderRadius": "4px",
  7577. },
  7578. "innerHTML": "提交作业"
  7579. })
  7580. let aTool = ''
  7581. let _loading = document.createElement('div')
  7582. _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;"
  7583. // _loading.id = "";
  7584. let _lchild = document.createElement('div')
  7585. let _limg = document.createElement('img')
  7586. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7587. _limg.style = "width: 26px;margin-right: 10px;"
  7588. _lchild.appendChild(_limg)
  7589. let _lspan = document.createElement('span')
  7590. _lspan.innerHTML = "上传中..."
  7591. _lchild.appendChild(_lspan)
  7592. _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%);"
  7593. _loading.appendChild(_lchild)
  7594. let _box = $$('div', {
  7595. "style": {
  7596. "position": "relative",
  7597. "width": "100%",
  7598. "height": "100%",
  7599. },
  7600. })
  7601. _box.appendChild(_loading)
  7602. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7603. switch (str) {
  7604. case "whiteboard":
  7605. aTool = 1;
  7606. _iframe = $$("iframe", {
  7607. "frameborder": "no",
  7608. "border": "0",
  7609. "scrolling ": "no",
  7610. "style": {
  7611. "cssText": "border:0;width:100%;height:100%"
  7612. },
  7613. "src": "https://beta.iwb.cocorobo.cn/"
  7614. })
  7615. _box.appendChild(_iframe);
  7616. _box.appendChild(_jie);
  7617. _formdiv = new U.UF.UI.form(
  7618. "电子白板",
  7619. _box, {
  7620. "id": "whiteboard" + cid + stage + task + tool,
  7621. "style": {
  7622. "width": "90%",
  7623. "height": "90%",
  7624. "overflow": 'hidden'
  7625. },
  7626. "onresize": function () { }
  7627. }, {
  7628. closecallback: function () { }
  7629. }, {
  7630. "style": {
  7631. "height": "36px"
  7632. }
  7633. }).form; //创建窗体
  7634. _taskbar = {
  7635. "id": str + _formdiv.id,
  7636. "style": {
  7637. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7638. },
  7639. "name": "电子白板",
  7640. "forms": _formdiv,
  7641. "click": function () {
  7642. U.MD.D.I.openApplication(str, obj, info);
  7643. }
  7644. }
  7645. break;
  7646. case "mind":
  7647. aTool = 3;
  7648. _iframe = $$("iframe", {
  7649. "frameborder": "no",
  7650. "border": "0",
  7651. "scrolling ": "no",
  7652. "style": {
  7653. "cssText": "border:0;width:100%;height:100%"
  7654. },
  7655. "src": "/kityminder-editor/dist/index.html"
  7656. })
  7657. _box.appendChild(_iframe);
  7658. _box.appendChild(_jie);
  7659. _formdiv = new U.UF.UI.form(
  7660. "思维导图",
  7661. _box, { //"/jsmind/example/demo.html"
  7662. "id": "mind" + cid + stage + task + tool,
  7663. "style": {
  7664. "width": "90%",
  7665. "height": "90%",
  7666. "overflow": 'hidden'
  7667. },
  7668. "onresize": function () { }
  7669. }, {
  7670. closecallback: function () { }
  7671. }, {
  7672. "style": {
  7673. "height": "36px"
  7674. }
  7675. }).form; //创建窗体
  7676. _taskbar = {
  7677. "id": str + _formdiv.id,
  7678. "style": {
  7679. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7680. },
  7681. "name": "思维导图",
  7682. "forms": _formdiv,
  7683. "click": function () {
  7684. U.MD.D.I.openApplication(str, obj, info);
  7685. }
  7686. }
  7687. break;
  7688. case "MindMap":
  7689. aTool = 3;
  7690. _iframe = $$("iframe", {
  7691. "frameborder": "no",
  7692. "border": "0",
  7693. "scrolling ": "no",
  7694. "style": {
  7695. "cssText": "border:0;width:100%;height:100%"
  7696. },
  7697. "src": "//cloud.cocorobo.cn/mind/"
  7698. })
  7699. _box.appendChild(_iframe);
  7700. _box.appendChild(_jie);
  7701. _formdiv = new U.UF.UI.form(
  7702. "思维导图",
  7703. _box, { //"/jsmind/example/demo.html"
  7704. "id": "mind" + cid + stage + task + tool,
  7705. "style": {
  7706. "width": "90%",
  7707. "height": "90%",
  7708. "overflow": 'hidden'
  7709. },
  7710. "onresize": function () { }
  7711. }, {
  7712. closecallback: function () { }
  7713. }, {
  7714. "style": {
  7715. "height": "36px"
  7716. }
  7717. }).form; //创建窗体
  7718. _taskbar = {
  7719. "id": str + _formdiv.id,
  7720. "style": {
  7721. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7722. },
  7723. "name": "思维导图",
  7724. "forms": _formdiv,
  7725. "click": function () {
  7726. U.MD.D.I.openApplication(str, obj, info);
  7727. }
  7728. }
  7729. break;
  7730. case "doc":
  7731. aTool = 6;
  7732. _iframe = $$("iframe", {
  7733. "frameborder": "no",
  7734. "border": "0",
  7735. "scrolling ": "no",
  7736. "style": {
  7737. "cssText": "border:0;width:100%;height:100%"
  7738. },
  7739. "src": "/Office/Word/WordEditArea.htm"
  7740. })
  7741. _box.appendChild(_iframe);
  7742. _box.appendChild(_jie);
  7743. _formdiv = new U.UF.UI.form(
  7744. "协同文档",
  7745. _box, {
  7746. "id": "doc" + cid + stage + task + tool,
  7747. "style": {
  7748. "width": "90%",
  7749. "height": "90%",
  7750. "overflow": 'hidden'
  7751. },
  7752. "onresize": function () { }
  7753. }, {
  7754. closecallback: function () { }
  7755. }, {
  7756. "style": {
  7757. "height": "36px"
  7758. }
  7759. }).form; //创建窗体
  7760. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7761. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7762. })
  7763. _taskbar = {
  7764. "id": str + _formdiv.id,
  7765. "style": {
  7766. "backgroundImage": "url(/img/icon/doc.png)"
  7767. },
  7768. "name": "协同文档",
  7769. "forms": _formdiv,
  7770. "click": function () {
  7771. U.MD.D.I.openApplication(str, obj, info);
  7772. }
  7773. }
  7774. break;
  7775. case "mindNetwork": //好友打开
  7776. aTool = 7;
  7777. _iframe = $$("iframe", {
  7778. "webkitallowfullscreen": "",
  7779. "mozallowfullscreen": "",
  7780. "allowfullscreen": "",
  7781. "frameborder": "no",
  7782. "border": "0",
  7783. "scrolling ": "no",
  7784. "style": {
  7785. "cssText": "border:0; width:100%; height:100%;"
  7786. },
  7787. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7788. })
  7789. _box.appendChild(_iframe);
  7790. _box.appendChild(_jie);
  7791. _formdiv = new U.UF.UI.form(
  7792. "思维网格",
  7793. _box, {
  7794. "id": "mindNetwork" + cid + stage + task + tool,
  7795. "style": {
  7796. "width": "90%",
  7797. "height": "90%",
  7798. "overflow": 'hidden'
  7799. },
  7800. "onresize": function () { }
  7801. }, {
  7802. closecallback: function () { }
  7803. }, {
  7804. "style": {
  7805. "height": "36px"
  7806. }
  7807. }).form; //创建窗体
  7808. _taskbar = {
  7809. "id": str + _formdiv.id,
  7810. "style": {
  7811. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7812. },
  7813. "name": "思维网格",
  7814. "forms": _formdiv,
  7815. "click": function () {
  7816. U.MD.D.I.openApplication(str, obj, info);
  7817. }
  7818. }
  7819. break;
  7820. case "courseDesign":
  7821. _iframe = $$("iframe", {
  7822. "webkitallowfullscreen": "",
  7823. "mozallowfullscreen": "",
  7824. "allowfullscreen": "",
  7825. "frameborder": "no",
  7826. "border": "0",
  7827. "scrolling ": "no",
  7828. "style": {
  7829. "cssText": "border:0; width:100%; height:100%;"
  7830. },
  7831. "src": "/course-design-vue"
  7832. })
  7833. _box.appendChild(_iframe);
  7834. _box.appendChild(_jie);
  7835. _formdiv = new U.UF.UI.form(
  7836. "项目设计",
  7837. _box, {
  7838. "id": "courseDesign" + cid + stage + task + tool,
  7839. "style": {
  7840. "width": "90%",
  7841. "height": "90%",
  7842. "overflow": 'hidden'
  7843. },
  7844. "onresize": function () { }
  7845. }, {
  7846. closecallback: function () { }
  7847. }, {
  7848. "style": {
  7849. "height": "36px"
  7850. }
  7851. }).form; //创建窗体
  7852. _taskbar = {
  7853. "id": str + _formdiv.id,
  7854. "style": {
  7855. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7856. },
  7857. "name": "项目设计",
  7858. "forms": _formdiv,
  7859. "click": function () {
  7860. U.MD.D.I.openApplication(str, obj, info);
  7861. }
  7862. }
  7863. break;
  7864. }
  7865. const script1 = document.createElement("script");
  7866. script1.type = "text/javascript";
  7867. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7868. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7869. const script2 = document.createElement("script");
  7870. script2.type = "text/javascript";
  7871. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7872. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7873. const script3 = document.createElement("script");
  7874. script3.type = "text/javascript";
  7875. script3.charset = "UTF-8";
  7876. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7877. const script4 = document.createElement("script");
  7878. script4.type = "text/javascript";
  7879. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7880. script4.src = window.origin + "/js/Common/jietu2E.js";
  7881. if (_iframe) {
  7882. if (str == 'doc') {
  7883. _iframe = _formdiv.querySelector('iframe')
  7884. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7885. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7886. _iframe.contentWindow.document.body.appendChild(script1);
  7887. _iframe.contentWindow.document.body.appendChild(script2);
  7888. // _iframe.contentWindow.document.body.appendChild(script3);
  7889. _iframe.contentWindow.document.body.appendChild(script4);
  7890. })
  7891. if (onloadListener) {
  7892. _iframe.contentDocument.location.reload()
  7893. } else {
  7894. _iframe.contentDocument.location.reload()
  7895. }
  7896. } else if (str == 'courseDesign') {
  7897. U.UF.DL.iframeLoad(_iframe, function () {
  7898. // _iframe.contentWindow.U.MD.O.W.load();
  7899. // _iframe.contentWindow.document.body.appendChild(script1);
  7900. _iframe.contentWindow.document.body.appendChild(script2);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. })
  7903. } else if (str == 'mind') {
  7904. _iframe = _formdiv.querySelector('iframe')
  7905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7906. //
  7907. _iframe.contentWindow.document.body.appendChild(script1);
  7908. _iframe.contentWindow.document.body.appendChild(script2);
  7909. _iframe.contentWindow.document.body.appendChild(script4);
  7910. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7911. })
  7912. if (onloadListener) {
  7913. _iframe.contentDocument.location.reload()
  7914. } else {
  7915. _iframe.contentDocument.location.reload()
  7916. }
  7917. } else if (str == 'whiteboard') {
  7918. _iframe = _formdiv.querySelector('iframe')
  7919. let onloadListener = _iframe.onload = () => {
  7920. _iframe.contentWindow.document.body.appendChild(script1);
  7921. _iframe.contentWindow.document.body.appendChild(script2);
  7922. _iframe.contentWindow.document.body.appendChild(script4);
  7923. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7924. };
  7925. // if (onloadListener) {
  7926. // try {
  7927. // _iframe.src += "?cocorobo="+new Date().getTime()
  7928. // _iframe.contentWindow.document.location.reload()
  7929. // } catch (error) {
  7930. // }
  7931. // } else {
  7932. // _iframe.contentDocument.location.reload()
  7933. // }
  7934. } else {
  7935. _iframe.onload = () => {
  7936. _iframe.contentWindow.document.body.appendChild(script1);
  7937. _iframe.contentWindow.document.body.appendChild(script2);
  7938. // _iframe.contentWindow.document.body.appendChild(script3);
  7939. _iframe.contentWindow.document.body.appendChild(script4);
  7940. };
  7941. }
  7942. _jie.onclick = async () => {
  7943. let text = ''
  7944. if (aTool == 1) {
  7945. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7946. } else if (aTool == 6) {
  7947. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7948. } else if (aTool == 3) {
  7949. text = await U.MD.D.I.getEditorContent(_iframe);
  7950. }
  7951. _loading.style.display = 'flex'
  7952. console.log(_loading);
  7953. var _ajs = _iframe.contentWindow.document.createElement("script");
  7954. _ajs.type = "text/javascript";
  7955. _ajs.innerHTML =
  7956. // 'console.log(' + _loading + ');\n' +
  7957. 'var _js = document.createElement("script");\n' +
  7958. '_js.type="text/javascript";\n' +
  7959. '_js.charset="UTF-8";\n' +
  7960. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7961. "_js.onload = function(){\n" +
  7962. ' var a = document.getElementsByTagName("img")\n' +
  7963. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7964. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7965. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7966. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7967. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7968. "beforeUpload_shishi(file," +
  7969. "'" +
  7970. _userid +
  7971. "'" +
  7972. ", " +
  7973. "'" +
  7974. _cid +
  7975. "'" +
  7976. ", " +
  7977. "'" +
  7978. _stage +
  7979. "'" +
  7980. ", " +
  7981. "'" +
  7982. _task +
  7983. "'" +
  7984. ", " +
  7985. "'" +
  7986. _tool +
  7987. "'" +
  7988. ", " +
  7989. "'" +
  7990. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7991. "'" +
  7992. ", " +
  7993. "'" +
  7994. aTool +
  7995. "'" +
  7996. ", " +
  7997. "`" +
  7998. text +
  7999. "`" +
  8000. ")\n" +
  8001. " });\n" +
  8002. "}\n" +
  8003. "document.head.appendChild(_js);\n";
  8004. _iframe.contentWindow.document.head.appendChild(_ajs);
  8005. }
  8006. }
  8007. //U.MD.D.I.openClick(str);
  8008. //如果有任务栏信息
  8009. // if (_taskbar) {
  8010. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8011. // }
  8012. }
  8013. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8014. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8015. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8016. _userid = student.userid, //登录用户id
  8017. _username = student.student //用户名字
  8018. let _iframe;
  8019. let _cid = cid,
  8020. _stage = stage,
  8021. _task = task,
  8022. _tool = tool;
  8023. var _jie = $$("div", {
  8024. "style": {
  8025. "position": "absolute",
  8026. "bottom": "50px",
  8027. "right": "50px",
  8028. "zIndex": "9999",
  8029. "backgroundColor": "#2268bc",
  8030. "color": "#fff",
  8031. "padding": "12px 20px",
  8032. "cursor": "pointer",
  8033. "borderRadius": "4px",
  8034. },
  8035. "innerHTML": "提交作业"
  8036. })
  8037. let aTool = ''
  8038. let _loading = document.createElement('div')
  8039. _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;"
  8040. // _loading.id = "";
  8041. let _lchild = document.createElement('div')
  8042. let _limg = document.createElement('img')
  8043. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8044. _limg.style = "width: 26px;margin-right: 10px;"
  8045. _lchild.appendChild(_limg)
  8046. let _lspan = document.createElement('span')
  8047. _lspan.innerHTML = "上传中..."
  8048. _lchild.appendChild(_lspan)
  8049. _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%);"
  8050. _loading.appendChild(_lchild)
  8051. var _box = $$('div', {
  8052. "style": {
  8053. "position": "relative",
  8054. "width": "100%",
  8055. "height": "100%",
  8056. },
  8057. })
  8058. _box.appendChild(_loading)
  8059. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8060. switch (str) {
  8061. case "whiteboard":
  8062. aTool = 1;
  8063. _iframe = $$("iframe", {
  8064. "frameborder": "no",
  8065. "border": "0",
  8066. "scrolling ": "no",
  8067. "style": {
  8068. "cssText": "border:0;width:100%;height:100%"
  8069. },
  8070. "src": "https://beta.iwb.cocorobo.cn/"
  8071. })
  8072. _box.appendChild(_iframe);
  8073. _box.appendChild(_jie);
  8074. _formdiv = new U.UF.UI.form(
  8075. "电子白板-" + _username,
  8076. _box, {
  8077. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8078. "style": {
  8079. "width": "90%",
  8080. "height": "90%",
  8081. "overflow": 'hidden'
  8082. },
  8083. "onresize": function () { }
  8084. }, {
  8085. closecallback: function () { }
  8086. }, {
  8087. "style": {
  8088. "height": "36px"
  8089. }
  8090. }).form; //创建窗体
  8091. _taskbar = {
  8092. "id": str + _formdiv.id,
  8093. "style": {
  8094. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8095. },
  8096. "name": "电子白板",
  8097. "forms": _formdiv,
  8098. "click": function () {
  8099. U.MD.D.I.openApplication(str, obj, info);
  8100. }
  8101. }
  8102. break;
  8103. case "mind":
  8104. aTool = 3;
  8105. _iframe = $$("iframe", {
  8106. "frameborder": "no",
  8107. "border": "0",
  8108. "scrolling ": "no",
  8109. "style": {
  8110. "cssText": "border:0;width:100%;height:100%"
  8111. },
  8112. "src": "/kityminder-editor/dist/index.html"
  8113. })
  8114. _box.appendChild(_iframe);
  8115. _box.appendChild(_jie);
  8116. _formdiv = new U.UF.UI.form(
  8117. "思维导图-" + _username,
  8118. _box, { //"/jsmind/example/demo.html"
  8119. "id": "mind" + cid + stage + task + tool + _userid,
  8120. "style": {
  8121. "width": "90%",
  8122. "height": "90%",
  8123. "overflow": 'hidden'
  8124. },
  8125. "onresize": function () { }
  8126. }, {
  8127. closecallback: function () { }
  8128. }, {
  8129. "style": {
  8130. "height": "36px"
  8131. }
  8132. }).form; //创建窗体
  8133. _taskbar = {
  8134. "id": str + _formdiv.id,
  8135. "style": {
  8136. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8137. },
  8138. "name": "思维导图",
  8139. "forms": _formdiv,
  8140. "click": function () {
  8141. U.MD.D.I.openApplication(str, obj, info);
  8142. }
  8143. }
  8144. break;
  8145. case "MindMap":
  8146. aTool = 3;
  8147. _iframe = $$("iframe", {
  8148. "frameborder": "no",
  8149. "border": "0",
  8150. "scrolling ": "no",
  8151. "style": {
  8152. "cssText": "border:0;width:100%;height:100%"
  8153. },
  8154. "src": "//cloud.cocorobo.cn/mind/"
  8155. })
  8156. _box.appendChild(_iframe);
  8157. _box.appendChild(_jie);
  8158. _formdiv = new U.UF.UI.form(
  8159. "思维导图-" + _username,
  8160. _box, { //"/jsmind/example/demo.html"
  8161. "id": "mind" + cid + stage + task + tool + _userid,
  8162. "style": {
  8163. "width": "90%",
  8164. "height": "90%",
  8165. "overflow": 'hidden'
  8166. },
  8167. "onresize": function () { }
  8168. }, {
  8169. closecallback: function () { }
  8170. }, {
  8171. "style": {
  8172. "height": "36px"
  8173. }
  8174. }).form; //创建窗体
  8175. _taskbar = {
  8176. "id": str + _formdiv.id,
  8177. "style": {
  8178. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8179. },
  8180. "name": "思维导图",
  8181. "forms": _formdiv,
  8182. "click": function () {
  8183. U.MD.D.I.openApplication(str, obj, info);
  8184. }
  8185. }
  8186. break;
  8187. case "doc":
  8188. aTool = 6;
  8189. _iframe = $$("iframe", {
  8190. "frameborder": "no",
  8191. "border": "0",
  8192. "scrolling ": "no",
  8193. "style": {
  8194. "cssText": "border:0;width:100%;height:100%"
  8195. },
  8196. "src": "/Office/Word/WordEditArea.htm"
  8197. })
  8198. _box.appendChild(_iframe);
  8199. _box.appendChild(_jie);
  8200. _formdiv = new U.UF.UI.form(
  8201. "协同文档-" + _username,
  8202. _box, {
  8203. "id": "doc" + cid + stage + task + tool + _userid,
  8204. "style": {
  8205. "width": "90%",
  8206. "height": "90%",
  8207. "overflow": 'hidden'
  8208. },
  8209. "onresize": function () { }
  8210. }, {
  8211. closecallback: function () { }
  8212. }, {
  8213. "style": {
  8214. "height": "36px"
  8215. }
  8216. }).form; //创建窗体
  8217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8219. })
  8220. _taskbar = {
  8221. "id": str + _formdiv.id,
  8222. "style": {
  8223. "backgroundImage": "url(/img/icon/doc.png)"
  8224. },
  8225. "name": "协同文档",
  8226. "forms": _formdiv,
  8227. "click": function () {
  8228. U.MD.D.I.openApplication(str, obj, info);
  8229. }
  8230. }
  8231. break;
  8232. case "mindNetwork": //好友打开
  8233. aTool = 7;
  8234. _iframe = $$("iframe", {
  8235. "webkitallowfullscreen": "",
  8236. "mozallowfullscreen": "",
  8237. "allowfullscreen": "",
  8238. "frameborder": "no",
  8239. "border": "0",
  8240. "scrolling ": "no",
  8241. "style": {
  8242. "cssText": "border:0; width:100%; height:100%;"
  8243. },
  8244. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8245. })
  8246. _box.appendChild(_iframe);
  8247. _box.appendChild(_jie);
  8248. _formdiv = new U.UF.UI.form(
  8249. "思维网格-" + _username,
  8250. _box, {
  8251. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8252. "style": {
  8253. "width": "90%",
  8254. "height": "90%",
  8255. "overflow": 'hidden'
  8256. },
  8257. "onresize": function () { }
  8258. }, {
  8259. closecallback: function () { }
  8260. }, {
  8261. "style": {
  8262. "height": "36px"
  8263. }
  8264. }).form; //创建窗体
  8265. _taskbar = {
  8266. "id": str + _formdiv.id,
  8267. "style": {
  8268. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8269. },
  8270. "name": "思维网格",
  8271. "forms": _formdiv,
  8272. "click": function () {
  8273. U.MD.D.I.openApplication(str, obj, info);
  8274. }
  8275. }
  8276. break;
  8277. case "courseDesign":
  8278. _iframe = $$("iframe", {
  8279. "webkitallowfullscreen": "",
  8280. "mozallowfullscreen": "",
  8281. "allowfullscreen": "",
  8282. "frameborder": "no",
  8283. "border": "0",
  8284. "scrolling ": "no",
  8285. "style": {
  8286. "cssText": "border:0; width:100%; height:100%;"
  8287. },
  8288. "src": "/course-design-vue"
  8289. })
  8290. _box.appendChild(_iframe);
  8291. _box.appendChild(_jie);
  8292. _formdiv = new U.UF.UI.form(
  8293. "项目设计-" + _username,
  8294. _box, {
  8295. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8296. "style": {
  8297. "width": "90%",
  8298. "height": "90%",
  8299. "overflow": 'hidden'
  8300. },
  8301. "onresize": function () { }
  8302. }, {
  8303. closecallback: function () { }
  8304. }, {
  8305. "style": {
  8306. "height": "36px"
  8307. }
  8308. }).form; //创建窗体
  8309. _taskbar = {
  8310. "id": str + _formdiv.id,
  8311. "style": {
  8312. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8313. },
  8314. "name": "项目设计",
  8315. "forms": _formdiv,
  8316. "click": function () {
  8317. U.MD.D.I.openApplication(str, obj, info);
  8318. }
  8319. }
  8320. break;
  8321. }
  8322. const script1 = document.createElement("script");
  8323. script1.type = "text/javascript";
  8324. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8325. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8326. const script2 = document.createElement("script");
  8327. script2.type = "text/javascript";
  8328. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8329. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8330. const script3 = document.createElement("script");
  8331. script3.type = "text/javascript";
  8332. script3.charset = "UTF-8";
  8333. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8334. const script4 = document.createElement("script");
  8335. script4.type = "text/javascript";
  8336. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8337. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8338. if (_iframe) {
  8339. if (str == 'doc') {
  8340. _iframe = _formdiv.querySelector('iframe')
  8341. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8342. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8343. _iframe.contentWindow.document.body.appendChild(script1);
  8344. _iframe.contentWindow.document.body.appendChild(script2);
  8345. // _iframe.contentWindow.document.body.appendChild(script3);
  8346. _iframe.contentWindow.document.body.appendChild(script4);
  8347. })
  8348. if (onloadListener) {
  8349. _iframe.contentDocument.location.reload()
  8350. } else {
  8351. _iframe.contentDocument.location.reload()
  8352. }
  8353. } else if (str == 'courseDesign') {
  8354. U.UF.DL.iframeLoad(_iframe, function () {
  8355. // _iframe.contentWindow.U.MD.O.W.load();
  8356. // _iframe.contentWindow.document.body.appendChild(script1);
  8357. _iframe.contentWindow.document.body.appendChild(script2);
  8358. _iframe.contentWindow.document.body.appendChild(script4);
  8359. })
  8360. } else if (str == 'mind') {
  8361. _iframe = _formdiv.querySelector('iframe')
  8362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8363. //
  8364. _iframe.contentWindow.document.body.appendChild(script1);
  8365. _iframe.contentWindow.document.body.appendChild(script2);
  8366. _iframe.contentWindow.document.body.appendChild(script4);
  8367. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8368. })
  8369. if (onloadListener) {
  8370. _iframe.contentDocument.location.reload()
  8371. } else {
  8372. _iframe.contentDocument.location.reload()
  8373. }
  8374. } else if (str == 'whiteboard') {
  8375. _iframe = _formdiv.querySelector('iframe')
  8376. let onloadListener = _iframe.onload = () => {
  8377. _iframe.contentWindow.document.body.appendChild(script1);
  8378. _iframe.contentWindow.document.body.appendChild(script2);
  8379. _iframe.contentWindow.document.body.appendChild(script4);
  8380. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8381. };
  8382. // if (onloadListener) {
  8383. // try {
  8384. // _iframe.src += "?cocorobo="+new Date().getTime()
  8385. // _iframe.contentWindow.document.location.reload()
  8386. // } catch (error) {
  8387. // }
  8388. // } else {
  8389. // _iframe.contentDocument.location.reload()
  8390. // }
  8391. } else {
  8392. _iframe.onload = () => {
  8393. _iframe.contentWindow.document.body.appendChild(script1);
  8394. _iframe.contentWindow.document.body.appendChild(script2);
  8395. // _iframe.contentWindow.document.body.appendChild(script3);
  8396. _iframe.contentWindow.document.body.appendChild(script4);
  8397. };
  8398. }
  8399. _jie.onclick = async () => {
  8400. let text = ''
  8401. if (aTool == 1) {
  8402. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8403. } else if (aTool == 6) {
  8404. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8405. } else if (aTool == 3) {
  8406. text = await U.MD.D.I.getEditorContent(_iframe);
  8407. }
  8408. _loading.style.display = 'flex'
  8409. console.log(_loading);
  8410. var _ajs = _iframe.contentWindow.document.createElement("script");
  8411. _ajs.type = "text/javascript";
  8412. _ajs.innerHTML =
  8413. // 'console.log(' + _loading + ');\n' +
  8414. 'var _js = document.createElement("script");\n' +
  8415. '_js.type="text/javascript";\n' +
  8416. '_js.charset="UTF-8";\n' +
  8417. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8418. "_js.onload = function(){\n" +
  8419. ' var a = document.getElementsByTagName("img")\n' +
  8420. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8421. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8422. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8423. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8424. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8425. "beforeUpload_shishi(file," +
  8426. "'" +
  8427. _userid +
  8428. "'" +
  8429. ", " +
  8430. "'" +
  8431. _cid +
  8432. "'" +
  8433. ", " +
  8434. "'" +
  8435. _stage +
  8436. "'" +
  8437. ", " +
  8438. "'" +
  8439. _task +
  8440. "'" +
  8441. ", " +
  8442. "'" +
  8443. _tool +
  8444. "'" +
  8445. ", " +
  8446. "'" +
  8447. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8448. "'" +
  8449. ", " +
  8450. "'" +
  8451. aTool +
  8452. "'" +
  8453. ", " +
  8454. "`" +
  8455. text +
  8456. "`" +
  8457. ")\n" +
  8458. " });\n" +
  8459. "}\n" +
  8460. "document.head.appendChild(_js);\n";
  8461. _iframe.contentWindow.document.head.appendChild(_ajs);
  8462. }
  8463. }
  8464. }
  8465. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8466. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8467. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8468. _userid = student.userid, //登录用户id
  8469. _username = student.student //用户名字
  8470. let _iframe;
  8471. let _cid = cid,
  8472. _stage = stage,
  8473. _task = task,
  8474. _tool = tool;
  8475. var _jie = $$("div", {
  8476. "style": {
  8477. "position": "absolute",
  8478. "bottom": "50px",
  8479. "right": "50px",
  8480. "zIndex": "9999",
  8481. "backgroundColor": "#2268bc",
  8482. "color": "#fff",
  8483. "padding": "12px 20px",
  8484. "cursor": "pointer",
  8485. "borderRadius": "4px",
  8486. },
  8487. "innerHTML": "提交作业"
  8488. })
  8489. let aTool = ''
  8490. let _loading = document.createElement('div')
  8491. _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;"
  8492. // _loading.id = "";
  8493. let _lchild = document.createElement('div')
  8494. let _limg = document.createElement('img')
  8495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8496. _limg.style = "width: 26px;margin-right: 10px;"
  8497. _lchild.appendChild(_limg)
  8498. let _lspan = document.createElement('span')
  8499. _lspan.innerHTML = "上传中..."
  8500. _lchild.appendChild(_lspan)
  8501. _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%);"
  8502. _loading.appendChild(_lchild)
  8503. var _box = $$('div', {
  8504. "style": {
  8505. "position": "relative",
  8506. "width": "100%",
  8507. "height": "100%",
  8508. },
  8509. })
  8510. _box.appendChild(_loading)
  8511. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8512. switch (str) {
  8513. case "whiteboard":
  8514. aTool = 1;
  8515. _iframe = $$("iframe", {
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0;width:100%;height:100%"
  8521. },
  8522. "src": "https://beta.iwb.cocorobo.cn/"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "电子白板-" + _username,
  8528. _box, {
  8529. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //创建窗体
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8547. },
  8548. "name": "电子白板",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. case "mind":
  8556. aTool = 3;
  8557. _iframe = $$("iframe", {
  8558. "frameborder": "no",
  8559. "border": "0",
  8560. "scrolling ": "no",
  8561. "style": {
  8562. "cssText": "border:0;width:100%;height:100%"
  8563. },
  8564. "src": "/kityminder-editor/dist/index.html"
  8565. })
  8566. _box.appendChild(_iframe);
  8567. _box.appendChild(_jie);
  8568. _formdiv = new U.UF.UI.form(
  8569. "思维导图-" + _username,
  8570. _box, { //"/jsmind/example/demo.html"
  8571. "id": "mind" + cid + stage + task + tool + _userid,
  8572. "style": {
  8573. "width": "90%",
  8574. "height": "90%",
  8575. "overflow": 'hidden'
  8576. },
  8577. "onresize": function () { }
  8578. }, {
  8579. closecallback: function () { }
  8580. }, {
  8581. "style": {
  8582. "height": "36px"
  8583. }
  8584. }).form; //创建窗体
  8585. _taskbar = {
  8586. "id": str + _formdiv.id,
  8587. "style": {
  8588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8589. },
  8590. "name": "思维导图",
  8591. "forms": _formdiv,
  8592. "click": function () {
  8593. U.MD.D.I.openApplication(str, obj, info);
  8594. }
  8595. }
  8596. break;
  8597. case "MindMap":
  8598. aTool = 3;
  8599. _iframe = $$("iframe", {
  8600. "frameborder": "no",
  8601. "border": "0",
  8602. "scrolling ": "no",
  8603. "style": {
  8604. "cssText": "border:0;width:100%;height:100%"
  8605. },
  8606. "src": "//cloud.cocorobo.cn/mind/"
  8607. })
  8608. _box.appendChild(_iframe);
  8609. _box.appendChild(_jie);
  8610. _formdiv = new U.UF.UI.form(
  8611. "思维导图-" + _username,
  8612. _box, { //"/jsmind/example/demo.html"
  8613. "id": "mind" + cid + stage + task + tool + _userid,
  8614. "style": {
  8615. "width": "90%",
  8616. "height": "90%",
  8617. "overflow": 'hidden'
  8618. },
  8619. "onresize": function () { }
  8620. }, {
  8621. closecallback: function () { }
  8622. }, {
  8623. "style": {
  8624. "height": "36px"
  8625. }
  8626. }).form; //创建窗体
  8627. _taskbar = {
  8628. "id": str + _formdiv.id,
  8629. "style": {
  8630. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8631. },
  8632. "name": "思维导图",
  8633. "forms": _formdiv,
  8634. "click": function () {
  8635. U.MD.D.I.openApplication(str, obj, info);
  8636. }
  8637. }
  8638. break;
  8639. case "doc":
  8640. aTool = 6;
  8641. _iframe = $$("iframe", {
  8642. "frameborder": "no",
  8643. "border": "0",
  8644. "scrolling ": "no",
  8645. "style": {
  8646. "cssText": "border:0;width:100%;height:100%"
  8647. },
  8648. "src": "/Office/Word/WordEditArea.htm"
  8649. })
  8650. _box.appendChild(_iframe);
  8651. _box.appendChild(_jie);
  8652. _formdiv = new U.UF.UI.form(
  8653. "协同文档-" + _username,
  8654. _box, {
  8655. "id": "doc" + cid + stage + task + tool + _userid,
  8656. "style": {
  8657. "width": "90%",
  8658. "height": "90%",
  8659. "overflow": 'hidden'
  8660. },
  8661. "onresize": function () { }
  8662. }, {
  8663. closecallback: function () { }
  8664. }, {
  8665. "style": {
  8666. "height": "36px"
  8667. }
  8668. }).form; //创建窗体
  8669. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8670. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8671. })
  8672. _taskbar = {
  8673. "id": str + _formdiv.id,
  8674. "style": {
  8675. "backgroundImage": "url(/img/icon/doc.png)"
  8676. },
  8677. "name": "协同文档",
  8678. "forms": _formdiv,
  8679. "click": function () {
  8680. U.MD.D.I.openApplication(str, obj, info);
  8681. }
  8682. }
  8683. break;
  8684. case "mindNetwork": //好友打开
  8685. aTool = 7;
  8686. _iframe = $$("iframe", {
  8687. "webkitallowfullscreen": "",
  8688. "mozallowfullscreen": "",
  8689. "allowfullscreen": "",
  8690. "frameborder": "no",
  8691. "border": "0",
  8692. "scrolling ": "no",
  8693. "style": {
  8694. "cssText": "border:0; width:100%; height:100%;"
  8695. },
  8696. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8697. })
  8698. _box.appendChild(_iframe);
  8699. _box.appendChild(_jie);
  8700. _formdiv = new U.UF.UI.form(
  8701. "思维网格-" + _username,
  8702. _box, {
  8703. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8704. "style": {
  8705. "width": "90%",
  8706. "height": "90%",
  8707. "overflow": 'hidden'
  8708. },
  8709. "onresize": function () { }
  8710. }, {
  8711. closecallback: function () { }
  8712. }, {
  8713. "style": {
  8714. "height": "36px"
  8715. }
  8716. }).form; //创建窗体
  8717. _taskbar = {
  8718. "id": str + _formdiv.id,
  8719. "style": {
  8720. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8721. },
  8722. "name": "思维网格",
  8723. "forms": _formdiv,
  8724. "click": function () {
  8725. U.MD.D.I.openApplication(str, obj, info);
  8726. }
  8727. }
  8728. break;
  8729. case "courseDesign":
  8730. _iframe = $$("iframe", {
  8731. "webkitallowfullscreen": "",
  8732. "mozallowfullscreen": "",
  8733. "allowfullscreen": "",
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0; width:100%; height:100%;"
  8739. },
  8740. "src": "/course-design-vue"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "项目设计-" + _username,
  8746. _box, {
  8747. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //创建窗体
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8765. },
  8766. "name": "项目设计",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. }
  8774. const script1 = document.createElement("script");
  8775. script1.type = "text/javascript";
  8776. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8777. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8778. const script2 = document.createElement("script");
  8779. script2.type = "text/javascript";
  8780. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8781. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8782. const script3 = document.createElement("script");
  8783. script3.type = "text/javascript";
  8784. script3.charset = "UTF-8";
  8785. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8786. const script4 = document.createElement("script");
  8787. script4.type = "text/javascript";
  8788. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8789. script4.src = window.origin + "/js/Common/jietu2E.js";
  8790. if (_iframe) {
  8791. if (str == 'doc') {
  8792. _iframe = _formdiv.querySelector('iframe')
  8793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8794. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8795. _iframe.contentWindow.document.body.appendChild(script1);
  8796. _iframe.contentWindow.document.body.appendChild(script2);
  8797. // _iframe.contentWindow.document.body.appendChild(script3);
  8798. _iframe.contentWindow.document.body.appendChild(script4);
  8799. })
  8800. if (onloadListener) {
  8801. _iframe.contentDocument.location.reload()
  8802. } else {
  8803. _iframe.contentDocument.location.reload()
  8804. }
  8805. } else if (str == 'courseDesign') {
  8806. U.UF.DL.iframeLoad(_iframe, function () {
  8807. // _iframe.contentWindow.U.MD.O.W.load();
  8808. // _iframe.contentWindow.document.body.appendChild(script1);
  8809. _iframe.contentWindow.document.body.appendChild(script2);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. })
  8812. } else if (str == 'mind') {
  8813. _iframe = _formdiv.querySelector('iframe')
  8814. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8815. //
  8816. _iframe.contentWindow.document.body.appendChild(script1);
  8817. _iframe.contentWindow.document.body.appendChild(script2);
  8818. _iframe.contentWindow.document.body.appendChild(script4);
  8819. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8820. })
  8821. if (onloadListener) {
  8822. _iframe.contentDocument.location.reload()
  8823. } else {
  8824. _iframe.contentDocument.location.reload()
  8825. }
  8826. } else if (str == 'whiteboard') {
  8827. _iframe = _formdiv.querySelector('iframe')
  8828. let onloadListener = _iframe.onload = () => {
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8833. };
  8834. // if (onloadListener) {
  8835. // try {
  8836. // _iframe.src += "?cocorobo="+new Date().getTime()
  8837. // _iframe.contentWindow.document.location.reload()
  8838. // } catch (error) {
  8839. // }
  8840. // } else {
  8841. // _iframe.contentDocument.location.reload()
  8842. // }
  8843. } else {
  8844. _iframe.onload = () => {
  8845. _iframe.contentWindow.document.body.appendChild(script1);
  8846. _iframe.contentWindow.document.body.appendChild(script2);
  8847. // _iframe.contentWindow.document.body.appendChild(script3);
  8848. _iframe.contentWindow.document.body.appendChild(script4);
  8849. };
  8850. }
  8851. _jie.onclick = async () => {
  8852. let text = ''
  8853. if (aTool == 1) {
  8854. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8855. } else if (aTool == 6) {
  8856. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8857. } else if (aTool == 3) {
  8858. text = await U.MD.D.I.getEditorContent(_iframe);
  8859. }
  8860. _loading.style.display = 'flex'
  8861. console.log(_loading);
  8862. var _ajs = _iframe.contentWindow.document.createElement("script");
  8863. _ajs.type = "text/javascript";
  8864. _ajs.innerHTML =
  8865. // 'console.log(' + _loading + ');\n' +
  8866. 'var _js = document.createElement("script");\n' +
  8867. '_js.type="text/javascript";\n' +
  8868. '_js.charset="UTF-8";\n' +
  8869. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8870. "_js.onload = function(){\n" +
  8871. ' var a = document.getElementsByTagName("img")\n' +
  8872. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8873. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8874. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8875. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8876. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8877. "beforeUpload_shishi(file," +
  8878. "'" +
  8879. _userid +
  8880. "'" +
  8881. ", " +
  8882. "'" +
  8883. _cid +
  8884. "'" +
  8885. ", " +
  8886. "'" +
  8887. _stage +
  8888. "'" +
  8889. ", " +
  8890. "'" +
  8891. _task +
  8892. "'" +
  8893. ", " +
  8894. "'" +
  8895. _tool +
  8896. "'" +
  8897. ", " +
  8898. "'" +
  8899. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. aTool +
  8904. "'" +
  8905. ", " +
  8906. "`" +
  8907. text +
  8908. "`" +
  8909. ")\n" +
  8910. " });\n" +
  8911. "}\n" +
  8912. "document.head.appendChild(_js);\n";
  8913. _iframe.contentWindow.document.head.appendChild(_ajs);
  8914. }
  8915. }
  8916. }
  8917. U.MD.D.I.getEditorContent = function (iframe) {
  8918. return new Promise((resolve, reject) => {
  8919. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8920. console.log(content);
  8921. resolve(content)
  8922. });
  8923. });
  8924. }
  8925. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8926. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8927. // if (res.value[0].length > 0) {
  8928. // // resolve(res.value[0][0].text);
  8929. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8930. // $(fileInput).val('');
  8931. // });
  8932. // }
  8933. // }, [], { "type": "GET", "withCredentials": true });
  8934. var xmlhttp;
  8935. var Mac, Sn, DeviceId
  8936. if (window.XMLHttpRequest) {
  8937. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8938. xmlhttp = new XMLHttpRequest();
  8939. } else {
  8940. // IE6, IE5 浏览器执行代码
  8941. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8942. }
  8943. xmlhttp.onreadystatechange = function () {
  8944. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8945. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8946. // resolve(res.value[0][0].text);
  8947. if (type == '2') {
  8948. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8949. } else if (type == '3') {
  8950. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8951. }
  8952. } else {
  8953. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8954. }
  8955. }
  8956. }
  8957. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8958. xmlhttp.send();
  8959. }
  8960. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8961. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8962. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8963. _userinfo = US.userInfo, //登录用户信息
  8964. _userid = US.userInfo.userid //登录用户id
  8965. let _iframe;
  8966. let _cid = cid,
  8967. _stage = stage,
  8968. _task = task,
  8969. _tool = tool;
  8970. var _jie = $$("div", {
  8971. "style": {
  8972. "position": "absolute",
  8973. "bottom": "50px",
  8974. "right": "50px",
  8975. "zIndex": "9999",
  8976. "backgroundColor": "#2268bc",
  8977. "color": "#fff",
  8978. "padding": "12px 20px",
  8979. "cursor": "pointer",
  8980. "borderRadius": "4px",
  8981. },
  8982. "innerHTML": "确认并提交"
  8983. })
  8984. let aTool = ''
  8985. let _loading = document.createElement('div')
  8986. _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;"
  8987. // _loading.id = "";
  8988. let _lchild = document.createElement('div')
  8989. let _limg = document.createElement('img')
  8990. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8991. _limg.style = "width: 26px;margin-right: 10px;"
  8992. _lchild.appendChild(_limg)
  8993. let _lspan = document.createElement('span')
  8994. _lspan.innerHTML = "上传中..."
  8995. _lchild.appendChild(_lspan)
  8996. _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%);"
  8997. _loading.appendChild(_lchild)
  8998. var _box = $$('div', {
  8999. "style": {
  9000. "position": "relative",
  9001. "width": "100%",
  9002. "height": "100%",
  9003. },
  9004. })
  9005. _box.appendChild(_loading)
  9006. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9007. switch (str) {
  9008. case "whiteboard":
  9009. aTool = 1;
  9010. _iframe = $$("iframe", {
  9011. "frameborder": "no",
  9012. "border": "0",
  9013. "scrolling ": "no",
  9014. "style": {
  9015. "cssText": "border:0;width:100%;height:100%"
  9016. },
  9017. "src": "https://beta.iwb.cocorobo.cn/"
  9018. })
  9019. _box.appendChild(_iframe);
  9020. _box.appendChild(_jie);
  9021. _formdiv = new U.UF.UI.form(
  9022. "电子白板",
  9023. _box, {
  9024. "id": "whiteboards" + cid + stage + task + tool,
  9025. "style": {
  9026. "width": "90%",
  9027. "height": "90%",
  9028. "overflow": 'hidden'
  9029. },
  9030. "onresize": function () { }
  9031. }, {
  9032. closecallback: function () { }
  9033. }, {
  9034. "style": {
  9035. "height": "36px"
  9036. }
  9037. }).form; //创建窗体
  9038. _taskbar = {
  9039. "id": str + _formdiv.id,
  9040. "style": {
  9041. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9042. },
  9043. "name": "电子白板",
  9044. "forms": _formdiv,
  9045. "click": function () {
  9046. U.MD.D.I.openApplication(str, obj, info);
  9047. }
  9048. }
  9049. break;
  9050. case "mind":
  9051. aTool = 3;
  9052. _iframe = $$("iframe", {
  9053. "frameborder": "no",
  9054. "border": "0",
  9055. "scrolling ": "no",
  9056. "style": {
  9057. "cssText": "border:0;width:100%;height:100%"
  9058. },
  9059. "src": "/kityminder-editor/dist/index.html"
  9060. });
  9061. _box.appendChild(_iframe);
  9062. _box.appendChild(_jie);
  9063. _formdiv = new U.UF.UI.form(
  9064. "思维导图",
  9065. _box, { //"/jsmind/example/demo.html"
  9066. "id": "minds" + cid + stage + task + tool,
  9067. "style": {
  9068. "width": "90%",
  9069. "height": "90%",
  9070. "overflow": 'hidden'
  9071. },
  9072. "onresize": function () { }
  9073. }, {
  9074. closecallback: function () { }
  9075. }, {
  9076. "style": {
  9077. "height": "36px"
  9078. }
  9079. }).form; //创建窗体
  9080. _taskbar = {
  9081. "id": str + _formdiv.id,
  9082. "style": {
  9083. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9084. },
  9085. "name": "思维导图",
  9086. "forms": _formdiv,
  9087. "click": function () {
  9088. U.MD.D.I.openApplication(str, obj, info);
  9089. }
  9090. }
  9091. break;
  9092. case "doc":
  9093. aTool = 6;
  9094. _iframe = $$("iframe", {
  9095. "frameborder": "no",
  9096. "border": "0",
  9097. "scrolling ": "no",
  9098. "style": {
  9099. "cssText": "border:0;width:100%;height:100%"
  9100. },
  9101. "src": "/Office/Word/WordEditArea.htm"
  9102. })
  9103. _box.appendChild(_iframe);
  9104. _box.appendChild(_jie);
  9105. _formdiv = new U.UF.UI.form(
  9106. "协同文档",
  9107. _box, {
  9108. "id": "docs" + cid + stage + task + tool,
  9109. "style": {
  9110. "width": "90%",
  9111. "height": "90%",
  9112. "overflow": 'hidden'
  9113. },
  9114. "onresize": function () { }
  9115. }, {
  9116. closecallback: function () { }
  9117. }, {
  9118. "style": {
  9119. "height": "36px"
  9120. }
  9121. }).form; //创建窗体
  9122. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9123. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9124. })
  9125. _taskbar = {
  9126. "id": str + _formdiv.id,
  9127. "style": {
  9128. "backgroundImage": "url(/img/icon/doc.png)"
  9129. },
  9130. "name": "协同文档",
  9131. "forms": _formdiv,
  9132. "click": function () {
  9133. U.MD.D.I.openApplication(str, obj, info);
  9134. }
  9135. }
  9136. break;
  9137. }
  9138. const script1 = document.createElement("script");
  9139. script1.type = "text/javascript";
  9140. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9141. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9142. const script2 = document.createElement("script");
  9143. script2.type = "text/javascript";
  9144. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9145. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9146. const script3 = document.createElement("script");
  9147. script3.type = "text/javascript";
  9148. script3.charset = "UTF-8";
  9149. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9150. const script4 = document.createElement("script");
  9151. script4.type = "text/javascript";
  9152. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9153. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9154. if (_iframe) {
  9155. if (str == 'doc') {
  9156. _iframe = _formdiv.querySelector('iframe')
  9157. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9158. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9159. _iframe.contentWindow.document.body.appendChild(script1);
  9160. _iframe.contentWindow.document.body.appendChild(script2);
  9161. // _iframe.contentWindow.document.body.appendChild(script3);
  9162. _iframe.contentWindow.document.body.appendChild(script4);
  9163. })
  9164. if (onloadListener) {
  9165. _iframe.contentDocument.location.reload()
  9166. } else {
  9167. _iframe.contentDocument.location.reload()
  9168. }
  9169. } else if (str == 'mind') {
  9170. _iframe = _formdiv.querySelector('iframe')
  9171. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9172. _iframe.contentWindow.document.body.appendChild(script1);
  9173. _iframe.contentWindow.document.body.appendChild(script2);
  9174. _iframe.contentWindow.document.body.appendChild(script4);
  9175. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9176. })
  9177. if (onloadListener) {
  9178. _iframe.contentDocument.location.reload()
  9179. } else {
  9180. _iframe.contentDocument.location.reload()
  9181. }
  9182. } else {
  9183. _iframe.onload = () => {
  9184. _iframe.contentWindow.document.body.appendChild(script1);
  9185. _iframe.contentWindow.document.body.appendChild(script2);
  9186. // _iframe.contentWindow.document.body.appendChild(script3);
  9187. _iframe.contentWindow.document.body.appendChild(script4);
  9188. };
  9189. }
  9190. _jie.onclick = async () => {
  9191. let text = ''
  9192. if (aTool == 6) {
  9193. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9194. } else if (aTool == 3) {
  9195. text = await U.MD.D.I.getEditorContent(_iframe);
  9196. }
  9197. _loading.style.display = 'flex'
  9198. console.log(_loading);
  9199. var _ajs = _iframe.contentWindow.document.createElement("script");
  9200. _ajs.type = "text/javascript";
  9201. _ajs.innerHTML =
  9202. // 'console.log(' + _loading + ');\n' +
  9203. 'var _js = document.createElement("script");\n' +
  9204. '_js.type="text/javascript";\n' +
  9205. '_js.charset="UTF-8";\n' +
  9206. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9207. "_js.onload = function(){\n" +
  9208. ' var a = document.getElementsByTagName("img")\n' +
  9209. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9210. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9211. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9212. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9213. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9214. "beforeUpload_shishi(file," +
  9215. "'" +
  9216. _userid +
  9217. "'" +
  9218. ", " +
  9219. "'" +
  9220. _cid +
  9221. "'" +
  9222. ", " +
  9223. "'" +
  9224. _stage +
  9225. "'" +
  9226. ", " +
  9227. "'" +
  9228. _task +
  9229. "'" +
  9230. ", " +
  9231. "'" +
  9232. _tool +
  9233. "'" +
  9234. ", " +
  9235. "'" +
  9236. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9237. "'" +
  9238. ", " +
  9239. "'" +
  9240. aTool +
  9241. "'" +
  9242. ", " +
  9243. "`" +
  9244. text +
  9245. "`" +
  9246. ")\n" +
  9247. " });\n" +
  9248. "}\n" +
  9249. "document.head.appendChild(_js);\n";
  9250. _iframe.contentWindow.document.head.appendChild(_ajs);
  9251. }
  9252. }
  9253. //U.MD.D.I.openClick(str);
  9254. //如果有任务栏信息
  9255. // if (_taskbar) {
  9256. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9257. // }
  9258. }
  9259. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9260. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9261. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9262. _userinfo = US.userInfo, //登录用户信息
  9263. _userid = US.userInfo.userid //登录用户id
  9264. let _iframe;
  9265. let _cid = cid,
  9266. _stage = stage,
  9267. _task = task,
  9268. _tool = tool;
  9269. var _jie = $$("div", {
  9270. "style": {
  9271. "position": "absolute",
  9272. "bottom": "50px",
  9273. "right": "50px",
  9274. "zIndex": "9999",
  9275. "backgroundColor": "#2268bc",
  9276. "color": "#fff",
  9277. "padding": "12px 20px",
  9278. "cursor": "pointer",
  9279. "borderRadius": "4px",
  9280. },
  9281. "innerHTML": "确认并提交"
  9282. })
  9283. let aTool = ''
  9284. let _loading = document.createElement('div')
  9285. _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;"
  9286. // _loading.id = "";
  9287. let _lchild = document.createElement('div')
  9288. let _limg = document.createElement('img')
  9289. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9290. _limg.style = "width: 26px;margin-right: 10px;"
  9291. _lchild.appendChild(_limg)
  9292. let _lspan = document.createElement('span')
  9293. _lspan.innerHTML = "上传中..."
  9294. _lchild.appendChild(_lspan)
  9295. _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%);"
  9296. _loading.appendChild(_lchild)
  9297. var _box = $$('div', {
  9298. "style": {
  9299. "position": "relative",
  9300. "width": "100%",
  9301. "height": "100%",
  9302. },
  9303. })
  9304. _box.appendChild(_loading)
  9305. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9306. switch (str) {
  9307. case "whiteboard":
  9308. aTool = 1;
  9309. _iframe = $$("iframe", {
  9310. "frameborder": "no",
  9311. "border": "0",
  9312. "scrolling ": "no",
  9313. "style": {
  9314. "cssText": "border:0;width:100%;height:100%"
  9315. },
  9316. "src": "https://beta.iwb.cocorobo.cn/"
  9317. })
  9318. _box.appendChild(_iframe);
  9319. _box.appendChild(_jie);
  9320. _formdiv = new U.UF.UI.form(
  9321. "电子白板",
  9322. _box, {
  9323. "id": "whiteboards" + cid + stage + task + tool,
  9324. "style": {
  9325. "width": "90%",
  9326. "height": "90%",
  9327. "overflow": 'hidden'
  9328. },
  9329. "onresize": function () { }
  9330. }, {
  9331. closecallback: function () { }
  9332. }, {
  9333. "style": {
  9334. "height": "36px"
  9335. }
  9336. }).form; //创建窗体
  9337. _taskbar = {
  9338. "id": str + _formdiv.id,
  9339. "style": {
  9340. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9341. },
  9342. "name": "电子白板",
  9343. "forms": _formdiv,
  9344. "click": function () {
  9345. U.MD.D.I.openApplication(str, obj, info);
  9346. }
  9347. }
  9348. break;
  9349. case "mind":
  9350. aTool = 3;
  9351. _iframe = $$("iframe", {
  9352. "frameborder": "no",
  9353. "border": "0",
  9354. "scrolling ": "no",
  9355. "style": {
  9356. "cssText": "border:0;width:100%;height:100%"
  9357. },
  9358. "src": "/kityminder-editor/dist/index.html"
  9359. });
  9360. _box.appendChild(_iframe);
  9361. _box.appendChild(_jie);
  9362. _formdiv = new U.UF.UI.form(
  9363. "思维导图",
  9364. _box, { //"/jsmind/example/demo.html"
  9365. "id": "minds" + cid + stage + task + tool,
  9366. "style": {
  9367. "width": "90%",
  9368. "height": "90%",
  9369. "overflow": 'hidden'
  9370. },
  9371. "onresize": function () { }
  9372. }, {
  9373. closecallback: function () { }
  9374. }, {
  9375. "style": {
  9376. "height": "36px"
  9377. }
  9378. }).form; //创建窗体
  9379. _taskbar = {
  9380. "id": str + _formdiv.id,
  9381. "style": {
  9382. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9383. },
  9384. "name": "思维导图",
  9385. "forms": _formdiv,
  9386. "click": function () {
  9387. U.MD.D.I.openApplication(str, obj, info);
  9388. }
  9389. }
  9390. break;
  9391. case "doc":
  9392. aTool = 6;
  9393. _iframe = $$("iframe", {
  9394. "frameborder": "no",
  9395. "border": "0",
  9396. "scrolling ": "no",
  9397. "style": {
  9398. "cssText": "border:0;width:100%;height:100%"
  9399. },
  9400. "src": "/Office/Word/WordEditArea.htm"
  9401. })
  9402. _box.appendChild(_iframe);
  9403. _box.appendChild(_jie);
  9404. _formdiv = new U.UF.UI.form(
  9405. "协同文档",
  9406. _box, {
  9407. "id": "docs" + cid + stage + task + tool,
  9408. "style": {
  9409. "width": "90%",
  9410. "height": "90%",
  9411. "overflow": 'hidden'
  9412. },
  9413. "onresize": function () { }
  9414. }, {
  9415. closecallback: function () { }
  9416. }, {
  9417. "style": {
  9418. "height": "36px"
  9419. }
  9420. }).form; //创建窗体
  9421. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9422. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9423. })
  9424. _taskbar = {
  9425. "id": str + _formdiv.id,
  9426. "style": {
  9427. "backgroundImage": "url(/img/icon/doc.png)"
  9428. },
  9429. "name": "协同文档",
  9430. "forms": _formdiv,
  9431. "click": function () {
  9432. U.MD.D.I.openApplication(str, obj, info);
  9433. }
  9434. }
  9435. break;
  9436. }
  9437. const script1 = document.createElement("script");
  9438. script1.type = "text/javascript";
  9439. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9440. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9441. const script2 = document.createElement("script");
  9442. script2.type = "text/javascript";
  9443. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9444. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9445. const script3 = document.createElement("script");
  9446. script3.type = "text/javascript";
  9447. script3.charset = "UTF-8";
  9448. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9449. const script4 = document.createElement("script");
  9450. script4.type = "text/javascript";
  9451. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9452. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9453. if (_iframe) {
  9454. if (str == 'doc') {
  9455. _iframe = _formdiv.querySelector('iframe')
  9456. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9457. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9458. _iframe.contentWindow.document.body.appendChild(script1);
  9459. _iframe.contentWindow.document.body.appendChild(script2);
  9460. // _iframe.contentWindow.document.body.appendChild(script3);
  9461. _iframe.contentWindow.document.body.appendChild(script4);
  9462. })
  9463. if (onloadListener) {
  9464. _iframe.contentDocument.location.reload()
  9465. } else {
  9466. _iframe.contentDocument.location.reload()
  9467. }
  9468. } else if (str == 'mind') {
  9469. _iframe = _formdiv.querySelector('iframe')
  9470. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9471. _iframe.contentWindow.document.body.appendChild(script1);
  9472. _iframe.contentWindow.document.body.appendChild(script2);
  9473. _iframe.contentWindow.document.body.appendChild(script4);
  9474. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9475. })
  9476. if (onloadListener) {
  9477. _iframe.contentDocument.location.reload()
  9478. } else {
  9479. _iframe.contentDocument.location.reload()
  9480. }
  9481. } else {
  9482. _iframe.onload = () => {
  9483. _iframe.contentWindow.document.body.appendChild(script1);
  9484. _iframe.contentWindow.document.body.appendChild(script2);
  9485. // _iframe.contentWindow.document.body.appendChild(script3);
  9486. _iframe.contentWindow.document.body.appendChild(script4);
  9487. };
  9488. }
  9489. _jie.onclick = async () => {
  9490. let text = ''
  9491. if (aTool == 6) {
  9492. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9493. } else if (aTool == 3) {
  9494. text = await U.MD.D.I.getEditorContent(_iframe);
  9495. }
  9496. _loading.style.display = 'flex'
  9497. console.log(_loading);
  9498. var _ajs = _iframe.contentWindow.document.createElement("script");
  9499. _ajs.type = "text/javascript";
  9500. _ajs.innerHTML =
  9501. // 'console.log(' + _loading + ');\n' +
  9502. 'var _js = document.createElement("script");\n' +
  9503. '_js.type="text/javascript";\n' +
  9504. '_js.charset="UTF-8";\n' +
  9505. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9506. "_js.onload = function(){\n" +
  9507. ' var a = document.getElementsByTagName("img")\n' +
  9508. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9509. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9510. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9511. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9512. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9513. "beforeUpload_shishi(file," +
  9514. "'" +
  9515. _userid +
  9516. "'" +
  9517. ", " +
  9518. "'" +
  9519. _cid +
  9520. "'" +
  9521. ", " +
  9522. "'" +
  9523. _stage +
  9524. "'" +
  9525. ", " +
  9526. "'" +
  9527. _task +
  9528. "'" +
  9529. ", " +
  9530. "'" +
  9531. _tool +
  9532. "'" +
  9533. ", " +
  9534. "'" +
  9535. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9536. "'" +
  9537. ", " +
  9538. "'" +
  9539. aTool +
  9540. "'" +
  9541. ", " +
  9542. "`" +
  9543. text +
  9544. "`" +
  9545. ")\n" +
  9546. " });\n" +
  9547. "}\n" +
  9548. "document.head.appendChild(_js);\n";
  9549. _iframe.contentWindow.document.head.appendChild(_ajs);
  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.openApplicationYu = function (str, cid, stage, task, tool) {
  9559. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9560. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9561. _userinfo = US.userInfo, //登录用户信息
  9562. _userid = US.userInfo.userid //登录用户id
  9563. let _iframe;
  9564. let _cid = cid,
  9565. _stage = stage,
  9566. _task = task,
  9567. _tool = tool;
  9568. var _jie = $$("div", {
  9569. "style": {
  9570. "position": "absolute",
  9571. "bottom": "50px",
  9572. "right": "50px",
  9573. "zIndex": "9999",
  9574. "backgroundColor": "#2268bc",
  9575. "color": "#fff",
  9576. "padding": "12px 20px",
  9577. "cursor": "pointer",
  9578. "borderRadius": "4px",
  9579. },
  9580. "innerHTML": "上传模板"
  9581. })
  9582. let aTool = ''
  9583. let _loading = document.createElement('div')
  9584. _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;"
  9585. // _loading.id = "";
  9586. let _lchild = document.createElement('div')
  9587. let _limg = document.createElement('img')
  9588. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9589. _limg.style = "width: 26px;margin-right: 10px;"
  9590. _lchild.appendChild(_limg)
  9591. let _lspan = document.createElement('span')
  9592. _lspan.innerHTML = "上传中..."
  9593. _lchild.appendChild(_lspan)
  9594. _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%);"
  9595. _loading.appendChild(_lchild)
  9596. var _box = $$('div', {
  9597. "style": {
  9598. "position": "relative",
  9599. "width": "100%",
  9600. "height": "100%",
  9601. },
  9602. })
  9603. _box.appendChild(_loading)
  9604. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9605. switch (str) {
  9606. case "whiteboard":
  9607. aTool = 1;
  9608. _iframe = $$("iframe", {
  9609. "frameborder": "no",
  9610. "border": "0",
  9611. "scrolling ": "no",
  9612. "style": {
  9613. "cssText": "border:0;width:100%;height:100%"
  9614. },
  9615. "src": "https://beta.iwb.cocorobo.cn/"
  9616. })
  9617. _box.appendChild(_iframe);
  9618. _box.appendChild(_jie);
  9619. _formdiv = new U.UF.UI.form(
  9620. "电子白板",
  9621. _box, {
  9622. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9623. "style": {
  9624. "width": "90%",
  9625. "height": "90%",
  9626. "overflow": 'hidden'
  9627. },
  9628. "onresize": function () { }
  9629. }, {
  9630. closecallback: function () { }
  9631. }, {
  9632. "style": {
  9633. "height": "36px"
  9634. }
  9635. }).form; //创建窗体
  9636. _taskbar = {
  9637. "id": str + _formdiv.id,
  9638. "style": {
  9639. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9640. },
  9641. "name": "电子白板",
  9642. "forms": _formdiv,
  9643. "click": function () {
  9644. U.MD.D.I.openApplication(str, obj, info);
  9645. }
  9646. }
  9647. break;
  9648. case "mind":
  9649. aTool = 3;
  9650. _iframe = $$("iframe", {
  9651. "frameborder": "no",
  9652. "border": "0",
  9653. "scrolling ": "no",
  9654. "style": {
  9655. "cssText": "border:0;width:100%;height:100%"
  9656. },
  9657. "src": "/kityminder-editor/dist/index.html"
  9658. });
  9659. _box.appendChild(_iframe);
  9660. _box.appendChild(_jie);
  9661. _formdiv = new U.UF.UI.form(
  9662. "思维导图",
  9663. _box, { //"/jsmind/example/demo.html"
  9664. "id": "minds_Yu" + cid + stage + task + tool,
  9665. "style": {
  9666. "width": "90%",
  9667. "height": "90%",
  9668. "overflow": 'hidden'
  9669. },
  9670. "onresize": function () { }
  9671. }, {
  9672. closecallback: function () { }
  9673. }, {
  9674. "style": {
  9675. "height": "36px"
  9676. }
  9677. }).form; //创建窗体
  9678. _taskbar = {
  9679. "id": str + _formdiv.id,
  9680. "style": {
  9681. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9682. },
  9683. "name": "思维导图",
  9684. "forms": _formdiv,
  9685. "click": function () {
  9686. U.MD.D.I.openApplication(str, obj, info);
  9687. }
  9688. }
  9689. break;
  9690. case "doc":
  9691. aTool = 6;
  9692. _iframe = $$("iframe", {
  9693. "frameborder": "no",
  9694. "border": "0",
  9695. "scrolling ": "no",
  9696. "style": {
  9697. "cssText": "border:0;width:100%;height:100%"
  9698. },
  9699. "src": "/Office/Word/WordEditArea.htm"
  9700. })
  9701. _box.appendChild(_iframe);
  9702. _box.appendChild(_jie);
  9703. _formdiv = new U.UF.UI.form(
  9704. "协同文档",
  9705. _box, {
  9706. "id": "docs_Yu" + cid + stage + task + tool,
  9707. "style": {
  9708. "width": "90%",
  9709. "height": "90%",
  9710. "overflow": 'hidden'
  9711. },
  9712. "onresize": function () { }
  9713. }, {
  9714. closecallback: function () { }
  9715. }, {
  9716. "style": {
  9717. "height": "36px"
  9718. }
  9719. }).form; //创建窗体
  9720. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9721. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9722. })
  9723. _taskbar = {
  9724. "id": str + _formdiv.id,
  9725. "style": {
  9726. "backgroundImage": "url(/img/icon/doc.png)"
  9727. },
  9728. "name": "协同文档",
  9729. "forms": _formdiv,
  9730. "click": function () {
  9731. U.MD.D.I.openApplication(str, obj, info);
  9732. }
  9733. }
  9734. break;
  9735. case "CocoPi":
  9736. aTool = 57;
  9737. _iframe = $$("iframe", {
  9738. "allowpaymentrequest": "allowpaymentrequest",
  9739. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9740. "webkitallowfullscreen": "",
  9741. "mozallowfullscreen": "",
  9742. "frameborder": "no",
  9743. "border": "0",
  9744. "scrolling ": "no",
  9745. "style": {
  9746. "cssText": "border:0;width:100%;height:100%"
  9747. },
  9748. "src": "https://pi.cocorobo.cn/"
  9749. })
  9750. _box.appendChild(_iframe);
  9751. _box.appendChild(_jie);
  9752. _formdiv = new U.UF.UI.form(
  9753. "CocoPi",
  9754. _box, {
  9755. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9756. "style": {
  9757. "width": "90%",
  9758. "height": "90%",
  9759. "overflow": 'hidden'
  9760. },
  9761. "onresize": function () { }
  9762. }, {
  9763. closecallback: function () { }
  9764. }, {
  9765. "style": {
  9766. "height": "36px"
  9767. }
  9768. }).form; //创建窗体
  9769. _taskbar = {
  9770. "id": str + _formdiv.id,
  9771. "style": {
  9772. "backgroundImage": "url(/img/icon/cocopi.png)"
  9773. },
  9774. "name": "CocoPi",
  9775. "forms": _formdiv,
  9776. "click": function () {
  9777. U.MD.D.I.openApplication(str, obj, info);
  9778. }
  9779. }
  9780. break;
  9781. }
  9782. if (_iframe) {
  9783. if (str == 'doc') {
  9784. _iframe = _formdiv.querySelector('iframe')
  9785. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9786. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9787. })
  9788. if (onloadListener) {
  9789. _iframe.contentDocument.location.reload()
  9790. } else {
  9791. _iframe.contentDocument.location.reload()
  9792. }
  9793. } else if (str == 'mind') {
  9794. _iframe = _formdiv.querySelector('iframe')
  9795. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9796. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9797. })
  9798. if (onloadListener) {
  9799. _iframe.contentDocument.location.reload()
  9800. } else {
  9801. _iframe.contentDocument.location.reload()
  9802. }
  9803. } else if (str == 'whiteboard') {
  9804. _iframe = _formdiv.querySelector('iframe')
  9805. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9806. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9807. })
  9808. // if (onloadListener) {
  9809. // try {
  9810. // _iframe.src += "?cocorobo="+new Date().getTime()
  9811. // _iframe.contentWindow.document.location.reload()
  9812. // } catch (error) {
  9813. // }
  9814. // } else {
  9815. // _iframe.contentDocument.location.reload()
  9816. // }
  9817. } else if (str == 'CocoPi') {
  9818. _iframe = _formdiv.querySelector('iframe')
  9819. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9820. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9821. })
  9822. if (onloadListener) {
  9823. _iframe.contentDocument.location.reload()
  9824. } else {
  9825. _iframe.contentDocument.location.reload()
  9826. }
  9827. } else {
  9828. _iframe.onload = () => { };
  9829. }
  9830. _jie.onclick = async () => {
  9831. let text = ''
  9832. let type = '2'
  9833. if (aTool == 1) {
  9834. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9835. type = '3'
  9836. } else if (aTool == 6) {
  9837. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9838. type = '1'
  9839. } else if (aTool == 3) {
  9840. text = await U.MD.D.I.getEditorContent(_iframe);
  9841. type = '2'
  9842. } else if (aTool == 57) {
  9843. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9844. type = '4'
  9845. }
  9846. _loading.style.display = 'flex'
  9847. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9848. }
  9849. }
  9850. //U.MD.D.I.openClick(str);
  9851. //如果有任务栏信息
  9852. // if (_taskbar) {
  9853. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9854. // }
  9855. }
  9856. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9857. var xmlhttp;
  9858. var Mac, Sn, DeviceId
  9859. if (window.XMLHttpRequest) {
  9860. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9861. xmlhttp = new XMLHttpRequest();
  9862. } else {
  9863. // IE6, IE5 浏览器执行代码
  9864. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9865. }
  9866. xmlhttp.onreadystatechange = function () {
  9867. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9868. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9869. // resolve(res.value[0][0].text);
  9870. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9871. }
  9872. }
  9873. }
  9874. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9875. xmlhttp.send();
  9876. }
  9877. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9878. var xmlhttp;
  9879. var Mac, Sn, DeviceId
  9880. if (window.XMLHttpRequest) {
  9881. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9882. xmlhttp = new XMLHttpRequest();
  9883. } else {
  9884. // IE6, IE5 浏览器执行代码
  9885. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9886. }
  9887. xmlhttp.onreadystatechange = function () {
  9888. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9889. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9890. // resolve(res.value[0][0].text);
  9891. if (type == '2') {
  9892. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9893. } else if (type == '3') {
  9894. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9895. } else if (type == '4') {
  9896. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9897. }
  9898. } else {
  9899. if (type == '2') {
  9900. iframe.contentWindow.editor.minder.importData('json', '')
  9901. } else if (type == '3') {
  9902. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9903. } else if (type == '4') {
  9904. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9905. }
  9906. }
  9907. }
  9908. }
  9909. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9910. xmlhttp.send();
  9911. }
  9912. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9913. var xmlhttp;
  9914. var Mac, Sn, DeviceId
  9915. if (window.XMLHttpRequest) {
  9916. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9917. xmlhttp = new XMLHttpRequest();
  9918. } else {
  9919. // IE6, IE5 浏览器执行代码
  9920. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9921. }
  9922. xmlhttp.onreadystatechange = function () {
  9923. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9924. if (xmlhttp.response) {
  9925. // resolve(res.value[0][0].text);
  9926. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9927. // $(fileInput).val('');
  9928. // });
  9929. span.innerHTML = '上传成功'
  9930. setTimeout(() => {
  9931. loading.style.display = 'none'
  9932. }, 1000);
  9933. }
  9934. }
  9935. }
  9936. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9937. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9938. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9939. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9940. // 设置请求头,表示请求体的编码格式
  9941. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9942. // 设置请求体,使用url-encoded格式的数据
  9943. }
  9944. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9945. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9946. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9947. _userinfo = US.userInfo, //登录用户信息
  9948. _userid = US.userInfo.userid //登录用户id
  9949. let _iframe;
  9950. let _cid = cid,
  9951. _stage = stage,
  9952. _task = task,
  9953. _tool = tool;
  9954. var _jie = $$("div", {
  9955. "style": {
  9956. "position": "absolute",
  9957. "bottom": "50px",
  9958. "right": "50px",
  9959. "zIndex": "9999",
  9960. "backgroundColor": "#2268bc",
  9961. "color": "#fff",
  9962. "padding": "12px 20px",
  9963. "cursor": "pointer",
  9964. "borderRadius": "4px",
  9965. },
  9966. "innerHTML": "提交作业"
  9967. })
  9968. let aTool = ''
  9969. let _loading = document.createElement('div')
  9970. _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;"
  9971. // _loading.id = "";
  9972. let _lchild = document.createElement('div')
  9973. let _limg = document.createElement('img')
  9974. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9975. _limg.style = "width: 26px;margin-right: 10px;"
  9976. _lchild.appendChild(_limg)
  9977. let _lspan = document.createElement('span')
  9978. _lspan.innerHTML = "上传中..."
  9979. _lchild.appendChild(_lspan)
  9980. _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%);"
  9981. _loading.appendChild(_lchild)
  9982. var _box = $$('div', {
  9983. "style": {
  9984. "position": "relative",
  9985. "width": "100%",
  9986. "height": "100%",
  9987. },
  9988. })
  9989. _box.appendChild(_loading)
  9990. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9991. switch (str) {
  9992. case "CocoPi":
  9993. aTool = 57;
  9994. _iframe = $$("iframe", {
  9995. "allowpaymentrequest": "allowpaymentrequest",
  9996. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9997. "webkitallowfullscreen": "",
  9998. "mozallowfullscreen": "",
  9999. "frameborder": "no",
  10000. "border": "0",
  10001. "scrolling ": "no",
  10002. "style": {
  10003. "cssText": "border:0;width:100%;height:100%"
  10004. },
  10005. "src": "https://pi.cocorobo.cn/"
  10006. })
  10007. _box.appendChild(_iframe);
  10008. _box.appendChild(_jie);
  10009. _formdiv = new U.UF.UI.form(
  10010. "CocoPi",
  10011. _box, {
  10012. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10013. "style": {
  10014. "width": "90%",
  10015. "height": "90%",
  10016. "overflow": 'hidden'
  10017. },
  10018. "onresize": function () { }
  10019. }, {
  10020. closecallback: function () { }
  10021. }, {
  10022. "style": {
  10023. "height": "36px"
  10024. }
  10025. }).form; //创建窗体
  10026. _taskbar = {
  10027. "id": str + _formdiv.id,
  10028. "style": {
  10029. "backgroundImage": "url(/img/icon/cocopi.png)"
  10030. },
  10031. "name": "CocoPi",
  10032. "forms": _formdiv,
  10033. "click": function () {
  10034. U.MD.D.I.openApplication(str, obj, info);
  10035. }
  10036. }
  10037. break;
  10038. }
  10039. if (_iframe) {
  10040. if (str == 'CocoPi') {
  10041. _iframe = _formdiv.querySelector('iframe')
  10042. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10043. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10044. })
  10045. if (onloadListener) {
  10046. _iframe.contentDocument.location.reload()
  10047. } else {
  10048. _iframe.contentDocument.location.reload()
  10049. }
  10050. }
  10051. _jie.onclick = async () => {
  10052. let text = ''
  10053. if (aTool == 57) {
  10054. text = _iframe.contentWindow.getLoadXmlStr()
  10055. }
  10056. _loading.style.display = 'flex'
  10057. console.log(_loading);
  10058. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10059. _loading.style.display = 'none'
  10060. let _div = document.createElement('div')
  10061. _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;"
  10062. let _inner = document.createElement('div')
  10063. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10064. _inner.innerHTML = "上传成功"
  10065. _div.appendChild(_inner)
  10066. _iframe.contentWindow.window.document.body.appendChild(_div)
  10067. _div.onclick = () => {
  10068. _iframe.contentWindow.window.document.body.removeChild(_div)
  10069. }
  10070. setTimeout(() => {
  10071. _iframe.contentWindow.window.document.body.removeChild(_div)
  10072. }, 1000);
  10073. }, [], { "type": "POST", "withCredentials": true });
  10074. }
  10075. }
  10076. }
  10077. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10078. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10079. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10080. _userid = student.userid, //登录用户id
  10081. _username = student.student //用户名字
  10082. let _iframe;
  10083. let _cid = cid,
  10084. _stage = stage,
  10085. _task = task,
  10086. _tool = tool;
  10087. var _jie = $$("div", {
  10088. "style": {
  10089. "position": "absolute",
  10090. "bottom": "50px",
  10091. "right": "50px",
  10092. "zIndex": "9999",
  10093. "backgroundColor": "#2268bc",
  10094. "color": "#fff",
  10095. "padding": "12px 20px",
  10096. "cursor": "pointer",
  10097. "borderRadius": "4px",
  10098. },
  10099. "innerHTML": "提交作业"
  10100. })
  10101. let aTool = ''
  10102. let _loading = document.createElement('div')
  10103. _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;"
  10104. // _loading.id = "";
  10105. let _lchild = document.createElement('div')
  10106. let _limg = document.createElement('img')
  10107. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10108. _limg.style = "width: 26px;margin-right: 10px;"
  10109. _lchild.appendChild(_limg)
  10110. let _lspan = document.createElement('span')
  10111. _lspan.innerHTML = "上传中..."
  10112. _lchild.appendChild(_lspan)
  10113. _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%);"
  10114. _loading.appendChild(_lchild)
  10115. var _box = $$('div', {
  10116. "style": {
  10117. "position": "relative",
  10118. "width": "100%",
  10119. "height": "100%",
  10120. },
  10121. })
  10122. _box.appendChild(_loading)
  10123. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10124. switch (str) {
  10125. case "CocoPi":
  10126. aTool = 57;
  10127. _iframe = $$("iframe", {
  10128. "allowpaymentrequest": "allowpaymentrequest",
  10129. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10130. "webkitallowfullscreen": "",
  10131. "mozallowfullscreen": "",
  10132. "frameborder": "no",
  10133. "border": "0",
  10134. "scrolling ": "no",
  10135. "style": {
  10136. "cssText": "border:0;width:100%;height:100%"
  10137. },
  10138. "src": "https://pi.cocorobo.cn/"
  10139. })
  10140. _box.appendChild(_iframe);
  10141. _box.appendChild(_jie);
  10142. _formdiv = new U.UF.UI.form(
  10143. "CocoPi-" + _username,
  10144. _box, {
  10145. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10146. "style": {
  10147. "width": "90%",
  10148. "height": "90%",
  10149. "overflow": 'hidden'
  10150. },
  10151. "onresize": function () { }
  10152. }, {
  10153. closecallback: function () { }
  10154. }, {
  10155. "style": {
  10156. "height": "36px"
  10157. }
  10158. }).form; //创建窗体
  10159. _taskbar = {
  10160. "id": str + _formdiv.id,
  10161. "style": {
  10162. "backgroundImage": "url(/img/icon/cocopi.png)"
  10163. },
  10164. "name": "CocoPi",
  10165. "forms": _formdiv,
  10166. "click": function () {
  10167. U.MD.D.I.openApplication(str, obj, info);
  10168. }
  10169. }
  10170. break;
  10171. }
  10172. if (_iframe) {
  10173. if (str == 'CocoPi') {
  10174. _iframe = _formdiv.querySelector('iframe')
  10175. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10176. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10177. })
  10178. if (onloadListener) {
  10179. _iframe.contentDocument.location.reload()
  10180. } else {
  10181. _iframe.contentDocument.location.reload()
  10182. }
  10183. }
  10184. _jie.onclick = async () => {
  10185. let text = ''
  10186. if (aTool == 57) {
  10187. text = _iframe.contentWindow.getLoadXmlStr()
  10188. }
  10189. _loading.style.display = 'flex'
  10190. console.log(_loading);
  10191. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10192. _loading.style.display = 'none'
  10193. let _div = document.createElement('div')
  10194. _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;"
  10195. let _inner = document.createElement('div')
  10196. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10197. _inner.innerHTML = "上传成功"
  10198. _div.appendChild(_inner)
  10199. _iframe.contentWindow.window.document.body.appendChild(_div)
  10200. _div.onclick = () => {
  10201. _iframe.contentWindow.window.document.body.removeChild(_div)
  10202. }
  10203. setTimeout(() => {
  10204. _iframe.contentWindow.window.document.body.removeChild(_div)
  10205. }, 1000);
  10206. }, [], { "type": "POST", "withCredentials": true });
  10207. }
  10208. }
  10209. }
  10210. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10211. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10212. if (res.value[0].length > 0) {
  10213. if (atool == 57) {
  10214. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10215. }
  10216. } else {
  10217. if (atool == 57) {
  10218. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10219. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10220. }
  10221. }
  10222. }, [], { "type": "POST", "withCredentials": true });
  10223. }