DeskTop.js 660 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583
  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. ];
  1402. //stia
  1403. U.MD.D.I.stiaStudentDeskIcon = [
  1404. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1405. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1406. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgTeacherDeskIcon = [
  1411. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1412. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. ];
  1414. //szdjg
  1415. U.MD.D.I.szdjgStudentDeskIcon = [
  1416. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1420. ];
  1421. //010607
  1422. U.MD.D.I.x010607TeacherDeskIcon = [
  1423. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1424. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1426. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1427. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1428. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1429. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1432. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1433. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1434. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1435. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1436. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1437. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1438. ];
  1439. //010607
  1440. U.MD.D.I.x010607StudentDeskIcon = [
  1441. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1445. ];
  1446. //010608
  1447. U.MD.D.I.x010608TeacherDeskIcon = [
  1448. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1449. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1451. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1452. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1453. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1454. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1455. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1456. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1458. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1459. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1460. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1461. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.x010608StudentDeskIcon = [
  1465. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1466. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1469. ];
  1470. //xhly
  1471. U.MD.D.I.xhlyTeacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. ];
  1474. //010608
  1475. U.MD.D.I.xhlyStudentDeskIcon = [
  1476. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. ];
  1478. //北师大
  1479. U.MD.D.I.BSDNSteacherDeskIcon = [
  1480. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1481. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1482. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1483. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1484. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1487. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1490. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1491. ];
  1492. //北师大
  1493. U.MD.D.I.BSDNSstudentDeskIcon = [
  1494. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1498. ];
  1499. //CUHK_EDU
  1500. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1501. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1502. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1504. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1507. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1509. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1510. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1511. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1512. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1513. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1514. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1515. ];
  1516. //CUHK_EDU
  1517. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1518. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1519. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1520. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1522. ];
  1523. //010503
  1524. U.MD.D.I.x010503TeacherDeskIcon = [
  1525. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1526. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1527. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1528. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1529. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. ];
  1535. //010503
  1536. U.MD.D.I.x010503StudentDeskIcon = [
  1537. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //SPROUT Lab
  1543. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1547. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1548. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1549. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1550. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1553. ];
  1554. //SPROUT Lab
  1555. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1556. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. ];
  1560. //010204
  1561. U.MD.D.I.x010204TeacherDeskIcon = [
  1562. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1563. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. ];
  1565. //010204
  1566. U.MD.D.I.x010204StudentDeskIcon = [
  1567. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1568. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1569. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1571. ];
  1572. //trail
  1573. U.MD.D.I.trailTeacherDeskIcon = [
  1574. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1575. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. ];
  1577. //trail
  1578. U.MD.D.I.trailStudentDeskIcon = [
  1579. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010504
  1585. U.MD.D.I.x010504TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1589. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1590. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1595. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1596. ];
  1597. //010504
  1598. U.MD.D.I.x010504StudentDeskIcon = [
  1599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. ];
  1604. //SCNUET
  1605. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1611. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1612. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1614. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1615. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1617. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1618. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1619. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1620. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1621. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1623. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1624. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1625. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1626. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1629. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1630. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1631. ];
  1632. //SCNUET
  1633. U.MD.D.I.SCNUETAdminDeskIcon = [
  1634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1639. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1640. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1641. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1642. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1643. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1644. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1646. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1647. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1648. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1652. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1653. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1654. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1655. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1656. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1657. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1658. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1659. ];
  1660. //SCNUET
  1661. U.MD.D.I.SCNUETStudentDeskIcon = [
  1662. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1663. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1666. ];
  1667. //x020201
  1668. U.MD.D.I.x020201TeacherDeskIcon = [
  1669. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1670. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1673. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1676. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1677. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1678. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1679. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1680. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1681. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1682. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1683. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1684. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1685. ];
  1686. //x020201
  1687. U.MD.D.I.x020201AdminDeskIcon = [
  1688. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1689. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1690. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1693. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1694. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1695. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1696. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1697. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1698. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1699. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1700. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1701. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1702. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1703. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1705. ];
  1706. //020201
  1707. U.MD.D.I.x020201StudentDeskIcon = [
  1708. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1711. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. ];
  1713. //010611
  1714. U.MD.D.I.x010611TeacherDeskIcon = [
  1715. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1716. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1718. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1719. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1724. ];
  1725. //010611
  1726. U.MD.D.I.x010611StudentDeskIcon = [
  1727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. ];
  1732. //tianyuan
  1733. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1736. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1737. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1738. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1740. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1743. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1744. ];
  1745. //010611
  1746. U.MD.D.I.tianyuanStudentDeskIcon = [
  1747. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1749. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. ];
  1752. //#region 桌面初始化a
  1753. /**
  1754. * 初始化桌面的起始函数
  1755. *
  1756. */
  1757. U.MD.D.I.init = function () {
  1758. if ($("#U_MD_D_K")[0]) {
  1759. //初始化桌面图标
  1760. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1761. // var clickUrl = ':12588/requestIp.php';
  1762. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1763. // U.MD.D.I.Ip = data;
  1764. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1765. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1766. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1767. // })
  1768. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1769. // })
  1770. }
  1771. }
  1772. /**
  1773. * 模式切换
  1774. *
  1775. */
  1776. U.MD.D.I.ModeCheck = function (type) {
  1777. if (US.Config.type == type) {
  1778. return
  1779. }
  1780. US.Config.type = type
  1781. $('.U_PBL_Check .active')[0].className = ''
  1782. if (type == 1) {
  1783. $('.U_PBL_Check div')[0].className = 'active'
  1784. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1785. } else {
  1786. $('.U_PBL_Check div')[1].className = 'active'
  1787. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1788. }
  1789. //初始化桌面图标
  1790. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1791. if (type == 2) {
  1792. U.MD.D.I.openApplication("project")
  1793. }
  1794. }
  1795. /**
  1796. * 隐藏任务栏
  1797. *
  1798. * @param {element} 桌面元素
  1799. */
  1800. U.MD.D.I.hiddenTaskbar = function (el) {
  1801. //任务栏位置变小
  1802. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1803. //桌面的位置变大
  1804. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1805. }
  1806. /**
  1807. * 隐藏任务栏
  1808. *
  1809. * @param {element} 桌面元素
  1810. */
  1811. U.MD.D.I.hiddenTaskbarout = function (el) {
  1812. //任务栏位置变小
  1813. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1814. //任务栏位置变化
  1815. U.selectEl(el).css({ "bottom": "-60px" });
  1816. //桌面的位置变大
  1817. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1818. }
  1819. }
  1820. /**
  1821. * 初始化打印桌面图标
  1822. *
  1823. * @param {element} 桌面元素
  1824. */
  1825. U.MD.D.I.initDesktopIcons = function (el, type) {
  1826. var i, //用于循环
  1827. _content, //桌面图标元素
  1828. _iconcontent, //桌面图标元素
  1829. _frag = $$("frag"), //定义一个碎片元素
  1830. _type = US.userInfo.type,
  1831. _org = US.userInfo.org,
  1832. _oid = US.userInfo.organizeid,
  1833. _role = US.userInfo.role,
  1834. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1835. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1836. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1837. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1838. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1839. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1840. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1841. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1842. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1843. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1844. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1845. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1846. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1847. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1848. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1849. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1850. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1851. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1852. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1853. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1854. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1855. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1856. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1857. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1858. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1859. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1860. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1861. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1862. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1863. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1864. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1865. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1866. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1867. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1868. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1869. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1870. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1871. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1872. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1873. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1874. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1875. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1876. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1877. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1878. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1879. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1880. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1881. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1882. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1883. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1884. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1885. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1886. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1887. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1888. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1889. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1890. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1891. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1892. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1893. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1894. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1895. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1896. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1897. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1898. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1899. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1900. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1901. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1902. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1903. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1904. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1905. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1906. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1907. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1908. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1909. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1910. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1911. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1912. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1913. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1914. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1915. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1916. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1917. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1918. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1919. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1920. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1921. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1922. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1923. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1924. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1925. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1926. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1927. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1928. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1929. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1930. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1931. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1932. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1933. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1934. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1935. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1936. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1937. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1938. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1939. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1940. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1941. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1942. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1943. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1944. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1945. 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'];
  1946. 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'];
  1947. //清楚桌面图标
  1948. el.innerHTML = "";
  1949. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1950. _teacherDesktopIconInfo.push(
  1951. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1952. { "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)" } },
  1953. )
  1954. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1955. }
  1956. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1957. _teacherDesktopIconInfo.push(
  1958. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1959. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1960. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1961. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1962. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1963. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1964. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1965. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1966. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1968. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1970. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1971. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1972. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1973. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1974. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1975. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1976. )
  1977. }
  1978. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1979. _teacherDesktopIconInfo.push(
  1980. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1981. )
  1982. }
  1983. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1984. // _teacherDesktopIconInfo.push(
  1985. // )
  1986. // }
  1987. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1988. _teacherDesktopIconInfo.push(
  1989. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1990. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1991. )
  1992. }
  1993. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1994. _teacherDesktopIconInfo.push(
  1995. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1996. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1997. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1999. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2000. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2001. )
  2002. _studentDesktopIconInfo.push(
  2003. )
  2004. }
  2005. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2006. _teacherDesktopIconInfo.push(
  2007. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2008. )
  2009. _studentDesktopIconInfo.push(
  2010. )
  2011. }
  2012. //010606 组织
  2013. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2014. _teacherDesktopIconInfo.push(
  2015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2016. )
  2017. _studentDesktopIconInfo.push(
  2018. )
  2019. }
  2020. //麒麟二中 和 民新小学
  2021. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2022. _teacherDesktopIconInfo.push(
  2023. )
  2024. }
  2025. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2026. _teacherDesktopIconInfo.push(
  2027. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2028. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2029. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2030. )
  2031. }
  2032. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2033. _hkTeacherDeskIconInfo.push(
  2034. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2035. )
  2036. }
  2037. //北师大附中(010601)
  2038. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2039. // _teacherDesktopIconInfo.push(
  2040. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2041. // )
  2042. // _studentDesktopIconInfo.push(
  2043. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. // )
  2045. // }
  2046. //樂善堂余近卿中學
  2047. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2048. _teacherDesktopIconInfo.push(
  2049. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2050. )
  2051. }
  2052. // Education Artificial Intelligence
  2053. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2054. _teacherDesktopIconInfo.push(
  2055. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2056. )
  2057. }
  2058. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2059. _teacherDesktopIconInfo.push(
  2060. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2061. )
  2062. }
  2063. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2064. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2065. _teacherDesktopIconInfo.push(
  2066. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2067. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2068. )
  2069. }
  2070. //麒麟二中
  2071. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2072. _studentDesktopIconInfo.push(
  2073. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2074. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2075. )
  2076. }
  2077. //万科双语
  2078. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2079. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2080. if (el.Name == '项目管理') {
  2081. el.Name = 'PBL项目'
  2082. }
  2083. return el
  2084. })
  2085. _studentDesktopIconInfo3.push(
  2086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2087. )
  2088. }
  2089. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2090. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2091. return el.Name != '魔盒识字' && el.Name != '24点'
  2092. })
  2093. }
  2094. 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) {
  2095. _studentDesktopIconInfo.push(
  2096. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2097. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2098. )
  2099. }
  2100. //循环创建桌面图标
  2101. if (type == 1) {
  2102. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2103. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2104. _content = $$("div", {
  2105. className: "U_MD_D_KO",
  2106. "onmousedown": U.UF.C.closure(function (obj) {
  2107. //防止拖动图标即打开了桌面应用
  2108. U.MD.D.click(this, obj);
  2109. }, [_studentDesktopIconInfo[i]]),
  2110. "onclick": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_studentDesktopIconInfo[i]])
  2114. }, _frag); //
  2115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2118. }
  2119. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2120. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2121. _content = $$("div", {
  2122. className: "U_MD_D_KO",
  2123. "onmousedown": U.UF.C.closure(function (obj) {
  2124. //防止拖动图标即打开了桌面应用
  2125. U.MD.D.click(this, obj);
  2126. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2127. "onclick": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_hkZJLSStudentDeskIconInfo[i]])
  2131. }, _frag); //
  2132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2135. } //
  2136. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2137. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2138. _content = $$("div", {
  2139. className: "U_MD_D_KO",
  2140. "onmousedown": U.UF.C.closure(function (obj) {
  2141. //防止拖动图标即打开了桌面应用
  2142. U.MD.D.click(this, obj);
  2143. }, [_ytyStudentDeskIconInfo[i]]),
  2144. "onclick": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_ytyStudentDeskIconInfo[i]])
  2148. }, _frag); //
  2149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2152. } //
  2153. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2154. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2155. _content = $$("div", {
  2156. className: "U_MD_D_KO",
  2157. "onmousedown": U.UF.C.closure(function (obj) {
  2158. //防止拖动图标即打开了桌面应用
  2159. U.MD.D.click(this, obj);
  2160. }, [_jccssylStudentDeskIconInfo[i]]),
  2161. "onclick": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_jccssylStudentDeskIconInfo[i]])
  2165. }, _frag); //
  2166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2169. }
  2170. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2171. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2172. _content = $$("div", {
  2173. className: "U_MD_D_KO",
  2174. "onmousedown": U.UF.C.closure(function (obj) {
  2175. //防止拖动图标即打开了桌面应用
  2176. U.MD.D.click(this, obj);
  2177. }, [_scnuaiStudentDeskIconInfo[i]]),
  2178. "onclick": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_scnuaiStudentDeskIconInfo[i]])
  2182. }, _frag); //
  2183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2186. }
  2187. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2188. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2189. _content = $$("div", {
  2190. className: "U_MD_D_KO",
  2191. "onmousedown": U.UF.C.closure(function (obj) {
  2192. //防止拖动图标即打开了桌面应用
  2193. U.MD.D.click(this, obj);
  2194. }, [_caleStudentDeskIconInfo[i]]),
  2195. "onclick": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_caleStudentDeskIconInfo[i]])
  2199. }, _frag); //
  2200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2203. }
  2204. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2205. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2206. _content = $$("div", {
  2207. className: "U_MD_D_KO",
  2208. "onmousedown": U.UF.C.closure(function (obj) {
  2209. //防止拖动图标即打开了桌面应用
  2210. U.MD.D.click(this, obj);
  2211. }, [_thuioeStudentDeskIconInfo[i]]),
  2212. "onclick": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_thuioeStudentDeskIconInfo[i]])
  2216. }, _frag); //
  2217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2220. }
  2221. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2222. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2223. _content = $$("div", {
  2224. className: "U_MD_D_KO",
  2225. "onmousedown": U.UF.C.closure(function (obj) {
  2226. //防止拖动图标即打开了桌面应用
  2227. U.MD.D.click(this, obj);
  2228. }, [_tpcStudentDeskIconInfo[i]]),
  2229. "onclick": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_tpcStudentDeskIconInfo[i]])
  2233. }, _frag); //
  2234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2237. } //
  2238. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2239. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2240. _content = $$("div", {
  2241. className: "U_MD_D_KO",
  2242. "onmousedown": U.UF.C.closure(function (obj) {
  2243. //防止拖动图标即打开了桌面应用
  2244. U.MD.D.click(this, obj);
  2245. }, [_chjyjStudentDeskIconInfo[i]]),
  2246. "onclick": U.UF.C.closure(function (obj) {
  2247. //防止拖动图标即打开了桌面应用
  2248. U.MD.D.click(this, obj);
  2249. }, [_chjyjStudentDeskIconInfo[i]])
  2250. }, _frag); //
  2251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2254. }
  2255. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2256. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2257. _content = $$("div", {
  2258. className: "U_MD_D_KO",
  2259. "onmousedown": U.UF.C.closure(function (obj) {
  2260. //防止拖动图标即打开了桌面应用
  2261. U.MD.D.click(this, obj);
  2262. }, [_szjkyStudentDeskIconInfo[i]]),
  2263. "onclick": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_szjkyStudentDeskIconInfo[i]])
  2267. }, _frag); //
  2268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2271. }
  2272. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2273. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2274. _content = $$("div", {
  2275. className: "U_MD_D_KO",
  2276. "onmousedown": U.UF.C.closure(function (obj) {
  2277. //防止拖动图标即打开了桌面应用
  2278. U.MD.D.click(this, obj);
  2279. }, [_x020201StudentDeskIconInfo[i]]),
  2280. "onclick": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_x020201StudentDeskIconInfo[i]])
  2284. }, _frag); //
  2285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2288. }
  2289. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2290. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2291. _content = $$("div", {
  2292. className: "U_MD_D_KO",
  2293. "onmousedown": U.UF.C.closure(function (obj) {
  2294. //防止拖动图标即打开了桌面应用
  2295. U.MD.D.click(this, obj);
  2296. }, [_SCNUETStudentDeskIconInfo[i]]),
  2297. "onclick": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_SCNUETStudentDeskIconInfo[i]])
  2301. }, _frag); //
  2302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2305. }
  2306. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2307. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2308. _content = $$("div", {
  2309. className: "U_MD_D_KO",
  2310. "onmousedown": U.UF.C.closure(function (obj) {
  2311. //防止拖动图标即打开了桌面应用
  2312. U.MD.D.click(this, obj);
  2313. }, [_dseiStudentDeskIconInfo[i]]),
  2314. "onclick": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_dseiStudentDeskIconInfo[i]])
  2318. }, _frag); //
  2319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2322. }
  2323. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2324. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2325. _content = $$("div", {
  2326. className: "U_MD_D_KO",
  2327. "onmousedown": U.UF.C.closure(function (obj) {
  2328. //防止拖动图标即打开了桌面应用
  2329. U.MD.D.click(this, obj);
  2330. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2331. "onclick": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2335. }, _frag); //
  2336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2339. }
  2340. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2341. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2342. _content = $$("div", {
  2343. className: "U_MD_D_KO",
  2344. "onmousedown": U.UF.C.closure(function (obj) {
  2345. //防止拖动图标即打开了桌面应用
  2346. U.MD.D.click(this, obj);
  2347. }, [_nsfxStudentDeskIconInfo[i]]),
  2348. "onclick": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_nsfxStudentDeskIconInfo[i]])
  2352. }, _frag); //
  2353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2356. }
  2357. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2358. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2359. _content = $$("div", {
  2360. className: "U_MD_D_KO",
  2361. "onmousedown": U.UF.C.closure(function (obj) {
  2362. //防止拖动图标即打开了桌面应用
  2363. U.MD.D.click(this, obj);
  2364. }, [_stiaStudentDeskIconInfo[i]]),
  2365. "onclick": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_stiaStudentDeskIconInfo[i]])
  2369. }, _frag); //
  2370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2373. }
  2374. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2375. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2376. _content = $$("div", {
  2377. className: "U_MD_D_KO",
  2378. "onmousedown": U.UF.C.closure(function (obj) {
  2379. //防止拖动图标即打开了桌面应用
  2380. U.MD.D.click(this, obj);
  2381. }, [_szdjgStudentDeskIconInfo[i]]),
  2382. "onclick": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_szdjgStudentDeskIconInfo[i]])
  2386. }, _frag); //
  2387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2390. }
  2391. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2392. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2393. _content = $$("div", {
  2394. className: "U_MD_D_KO",
  2395. "onmousedown": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_x010607StudentDeskIconInfo[i]]),
  2399. "onclick": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_x010607StudentDeskIconInfo[i]])
  2403. }, _frag); //
  2404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2407. }
  2408. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2409. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2410. _content = $$("div", {
  2411. className: "U_MD_D_KO",
  2412. "onmousedown": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_xhlyStudentDeskIconInfo[i]]),
  2416. "onclick": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_xhlyStudentDeskIconInfo[i]])
  2420. }, _frag); //
  2421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2424. }
  2425. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2426. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2443. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_x010503StudentDeskIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_x010503StudentDeskIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2458. }
  2459. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2460. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_x010504StudentDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_x010504StudentDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2475. }
  2476. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2477. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2478. _content = $$("div", {
  2479. className: "U_MD_D_KO",
  2480. "onmousedown": U.UF.C.closure(function (obj) {
  2481. //防止拖动图标即打开了桌面应用
  2482. U.MD.D.click(this, obj);
  2483. }, [_x010204StudentDeskIconInfo[i]]),
  2484. "onclick": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_x010204StudentDeskIconInfo[i]])
  2488. }, _frag); //
  2489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2492. }
  2493. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2494. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2495. _content = $$("div", {
  2496. className: "U_MD_D_KO",
  2497. "onmousedown": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_trailStudentDeskIconInfo[i]]),
  2501. "onclick": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_trailStudentDeskIconInfo[i]])
  2505. }, _frag); //
  2506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2509. }
  2510. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2511. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2528. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_x010608StudentDeskIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_x010608StudentDeskIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2545. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2546. _content = $$("div", {
  2547. className: "U_MD_D_KO",
  2548. "onmousedown": U.UF.C.closure(function (obj) {
  2549. //防止拖动图标即打开了桌面应用
  2550. U.MD.D.click(this, obj);
  2551. }, [_x010611StudentDeskIconInfo[i]]),
  2552. "onclick": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_x010611StudentDeskIconInfo[i]])
  2556. }, _frag); //
  2557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2560. }
  2561. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2562. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2563. _content = $$("div", {
  2564. className: "U_MD_D_KO",
  2565. "onmousedown": U.UF.C.closure(function (obj) {
  2566. //防止拖动图标即打开了桌面应用
  2567. U.MD.D.click(this, obj);
  2568. }, [_tianyuantudentDeskIconInfo[i]]),
  2569. "onclick": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_tianyuantudentDeskIconInfo[i]])
  2573. }, _frag); //
  2574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2577. }
  2578. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2579. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_siesStudentDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_siesStudentDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2594. }
  2595. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2596. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_guzmsStudentDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_guzmsStudentDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2613. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2614. _content = $$("div", {
  2615. className: "U_MD_D_KO",
  2616. "onmousedown": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_hkStudentDeskIconInfo[i]]),
  2620. "onclick": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_hkStudentDeskIconInfo[i]])
  2624. }, _frag); //
  2625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2628. }
  2629. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2630. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2631. _content = $$("div", {
  2632. className: "U_MD_D_KO",
  2633. "onmousedown": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_hkaceStudentDeskIconInfo[i]]),
  2637. "onclick": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_hkaceStudentDeskIconInfo[i]])
  2641. }, _frag); //
  2642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2645. }
  2646. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2647. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_BSDNSstudentDesktopIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2664. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2665. _content = $$("div", {
  2666. className: "U_MD_D_KO",
  2667. "onmousedown": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_cocobizStudentDeskIconInfo[i]]),
  2671. "onclick": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_cocobizStudentDeskIconInfo[i]])
  2675. }, _frag); //
  2676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2679. }
  2680. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2681. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2682. _content = $$("div", {
  2683. className: "U_MD_D_KO",
  2684. "onmousedown": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2688. "onclick": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_xxzjkyStudentDeskIconInfo[i]])
  2692. }, _frag); //
  2693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2696. }
  2697. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2698. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2699. _content = $$("div", {
  2700. className: "U_MD_D_KO",
  2701. "onmousedown": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_studentDesktopIconInfo[i]]),
  2705. "onclick": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_studentDesktopIconInfo[i]])
  2709. }, _frag); //
  2710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2713. }
  2714. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2715. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2716. _content = $$("div", {
  2717. className: "U_MD_D_KO",
  2718. "onmousedown": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_tcStudentDeskIconInfo[i]]),
  2722. "onclick": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_tcStudentDeskIconInfo[i]])
  2726. }, _frag); //
  2727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2730. }
  2731. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2732. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2733. _content = $$("div", {
  2734. className: "U_MD_D_KO",
  2735. "onmousedown": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_szscStudentDeskIconInfo[i]]),
  2739. "onclick": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_szscStudentDeskIconInfo[i]])
  2743. }, _frag); //
  2744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2747. }
  2748. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2749. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2750. _content = $$("div", {
  2751. className: "U_MD_D_KO",
  2752. "onmousedown": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_studentDesktopIconInfo3[i]]),
  2756. "onclick": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_studentDesktopIconInfo3[i]])
  2760. }, _frag); //
  2761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2764. }
  2765. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2766. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2767. _content = $$("div", {
  2768. className: "U_MD_D_KO",
  2769. "onmousedown": U.UF.C.closure(function (obj) {
  2770. //防止拖动图标即打开了桌面应用
  2771. U.MD.D.click(this, obj);
  2772. }, [_studentDesktopIconInfo2[i]]),
  2773. "onclick": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_studentDesktopIconInfo2[i]])
  2777. }, _frag); //
  2778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2781. }
  2782. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2783. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2784. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2785. continue
  2786. }
  2787. _content = $$("div", {
  2788. className: "U_MD_D_KO",
  2789. "onmousedown": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_wanketeacherDesktopIconInfo[i]]),
  2793. "onclick": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_wanketeacherDesktopIconInfo[i]])
  2797. }, _frag); //
  2798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2801. }
  2802. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2803. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_wankeAdminDesktopIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_wankeAdminDesktopIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2820. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2821. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2822. continue
  2823. }
  2824. _content = $$("div", {
  2825. className: "U_MD_D_KO",
  2826. "onmousedown": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2830. "onclick": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_scnuaiTeacherDeskIconInfo[i]])
  2834. }, _frag); //
  2835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2838. }
  2839. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2840. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2841. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2842. continue
  2843. }
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_BSDNSteacherDesktopIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2860. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_scnuaiAdminDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_scnuaiAdminDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2877. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2878. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2879. continue
  2880. }
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_jccssylTeacherDeskIconInfo[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_jccssylTeacherDeskIconInfo[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2895. }
  2896. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2897. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2898. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2899. continue
  2900. }
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_caleTeacherDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_caleTeacherDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2917. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_tpcOrganizerDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_tpcOrganizerDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2934. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2935. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2936. continue
  2937. }
  2938. _content = $$("div", {
  2939. className: "U_MD_D_KO",
  2940. "onmousedown": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_tpcTeacherDeskIconInfo[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_tpcTeacherDeskIconInfo[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2952. }
  2953. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2954. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2955. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2956. continue
  2957. }
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_teacherDesktopIconInfo2[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_teacherDesktopIconInfo2[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2972. }
  2973. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2974. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2975. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2976. continue
  2977. }
  2978. _content = $$("div", {
  2979. className: "U_MD_D_KO",
  2980. "onmousedown": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_thuioeTeacherDeskIconInfo[i]]),
  2984. "onclick": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_thuioeTeacherDeskIconInfo[i]])
  2988. }, _frag); //
  2989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2992. }
  2993. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2994. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2995. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2996. continue
  2997. }
  2998. _content = $$("div", {
  2999. className: "U_MD_D_KO",
  3000. "onmousedown": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_lotechTeacherDeskIconInfo[i]]),
  3004. "onclick": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_lotechTeacherDeskIconInfo[i]])
  3008. }, _frag); //
  3009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3012. }//
  3013. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3014. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3015. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3016. continue
  3017. }
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3034. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3035. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3036. continue
  3037. }
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_siesTeacherDeskIconInfo[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_siesTeacherDeskIconInfo[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3054. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3055. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_guzmsTeacherDeskIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_guzmsTeacherDeskIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3074. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3075. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3076. continue
  3077. }
  3078. _content = $$("div", {
  3079. className: "U_MD_D_KO",
  3080. "onmousedown": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_longhuaTeacherDeskIconInfo[i]]),
  3084. "onclick": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_longhuaTeacherDeskIconInfo[i]])
  3088. }, _frag); //
  3089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3092. }
  3093. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3094. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3095. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3096. continue
  3097. }
  3098. _content = $$("div", {
  3099. className: "U_MD_D_KO",
  3100. "onmousedown": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_ytyTeacherDeskIconInfo[i]]),
  3104. "onclick": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_ytyTeacherDeskIconInfo[i]])
  3108. }, _frag); //
  3109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3112. }
  3113. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3114. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3115. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3116. continue
  3117. }
  3118. _content = $$("div", {
  3119. className: "U_MD_D_KO",
  3120. "onmousedown": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3124. "onclick": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_yunhaiTeacherDeskIconInfo[i]])
  3128. }, _frag); //
  3129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3132. } //_hkStudentDeskIconInfo
  3133. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3134. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3135. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3136. continue
  3137. }
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3154. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3155. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3156. continue
  3157. }
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_hkTeacherDeskIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_hkTeacherDeskIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3174. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_hkaceTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_hkaceTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3194. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3195. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3196. continue
  3197. }
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_cocobizTeacherDeskIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_cocobizTeacherDeskIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3212. }
  3213. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3214. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3215. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3216. continue
  3217. }
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3234. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_gdjgAdminDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_gdjgAdminDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3251. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3252. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3253. continue
  3254. }
  3255. _content = $$("div", {
  3256. className: "U_MD_D_KO",
  3257. "onmousedown": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_gdjgTeacherDeskIconInfo[i]]),
  3261. "onclick": U.UF.C.closure(function (obj) {
  3262. //防止拖动图标即打开了桌面应用
  3263. U.MD.D.click(this, obj);
  3264. }, [_gdjgTeacherDeskIconInfo[i]])
  3265. }, _frag); //
  3266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3269. }
  3270. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3271. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3272. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3273. continue
  3274. }
  3275. _content = $$("div", {
  3276. className: "U_MD_D_KO",
  3277. "onmousedown": U.UF.C.closure(function (obj) {
  3278. //防止拖动图标即打开了桌面应用
  3279. U.MD.D.click(this, obj);
  3280. }, [_szherTeacherDeskIconInfo[i]]),
  3281. "onclick": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_szherTeacherDeskIconInfo[i]])
  3285. }, _frag); //
  3286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3289. }
  3290. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3291. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3292. _content = $$("div", {
  3293. className: "U_MD_D_KO",
  3294. "onmousedown": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_heyuannAdminDeskIconInfo[i]]),
  3298. "onclick": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_heyuannAdminDeskIconInfo[i]])
  3302. }, _frag); //
  3303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3306. }
  3307. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3308. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3309. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3310. continue
  3311. }
  3312. _content = $$("div", {
  3313. className: "U_MD_D_KO",
  3314. "onmousedown": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_heyuanTeacherDeskIconInfo[i]]),
  3318. "onclick": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_heyuanTeacherDeskIconInfo[i]])
  3322. }, _frag); //
  3323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3326. } //
  3327. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3328. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_dseiAdminDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_dseiAdminDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3345. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_dseiTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_dseiTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. } //
  3364. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3365. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_chjyjAdminDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_chjyjAdminDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3380. }//
  3381. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3382. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_chjyjTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_chjyjTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. }
  3401. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3402. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_szjkyAdminDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_szjkyAdminDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3417. }//
  3418. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3419. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3420. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_szjkyTeacherDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_szjkyTeacherDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3439. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3440. _content = $$("div", {
  3441. className: "U_MD_D_KO",
  3442. "onmousedown": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_x020201AdminDeskIconInfo[i]]),
  3446. "onclick": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_x020201AdminDeskIconInfo[i]])
  3450. }, _frag); //
  3451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3454. }//
  3455. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3456. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3457. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3458. continue
  3459. }
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_x020201TeacherDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_x020201TeacherDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3476. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3477. _content = $$("div", {
  3478. className: "U_MD_D_KO",
  3479. "onmousedown": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_SCNUETAdminDeskIconInfo[i]]),
  3483. "onclick": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_SCNUETAdminDeskIconInfo[i]])
  3487. }, _frag); //
  3488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3491. }//
  3492. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3493. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3494. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3495. continue
  3496. }
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_SCNUETTeacherDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3513. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖动图标即打开了桌面应用
  3518. U.MD.D.click(this, obj);
  3519. }, [_futianAdminDeskIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_futianAdminDeskIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3528. }
  3529. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3530. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3531. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3532. continue
  3533. }
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_futianTeacherDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_futianTeacherDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3550. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3551. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖动图标即打开了桌面应用
  3558. U.MD.D.click(this, obj);
  3559. }, [_MingdeTeacherDeskIcon[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_MingdeTeacherDeskIcon[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3568. }
  3569. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3570. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖动图标即打开了桌面应用
  3575. U.MD.D.click(this, obj);
  3576. }, [_lhsAdminDesktopIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_lhsAdminDesktopIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3585. }
  3586. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3587. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3588. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3589. continue
  3590. }
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖动图标即打开了桌面应用
  3595. U.MD.D.click(this, obj);
  3596. }, [_lhsteacherDesktopIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖动图标即打开了桌面应用
  3599. U.MD.D.click(this, obj);
  3600. }, [_lhsteacherDesktopIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3607. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3608. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3609. continue
  3610. }
  3611. _content = $$("div", {
  3612. className: "U_MD_D_KO",
  3613. "onmousedown": U.UF.C.closure(function (obj) {
  3614. //防止拖动图标即打开了桌面应用
  3615. U.MD.D.click(this, obj);
  3616. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3617. "onclick": U.UF.C.closure(function (obj) {
  3618. //防止拖动图标即打开了桌面应用
  3619. U.MD.D.click(this, obj);
  3620. }, [_zhoujiateacherDesktopIconInfo[i]])
  3621. }, _frag); //
  3622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3625. }
  3626. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3627. for (i = 0; i < _hanDeskIcon.length; i++) {
  3628. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3629. continue
  3630. }
  3631. _content = $$("div", {
  3632. className: "U_MD_D_KO",
  3633. "onmousedown": U.UF.C.closure(function (obj) {
  3634. //防止拖动图标即打开了桌面应用
  3635. U.MD.D.click(this, obj);
  3636. }, [_hanDeskIcon[i]]),
  3637. "onclick": U.UF.C.closure(function (obj) {
  3638. //防止拖动图标即打开了桌面应用
  3639. U.MD.D.click(this, obj);
  3640. }, [_hanDeskIcon[i]])
  3641. }, _frag); //
  3642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3645. }
  3646. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3647. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3648. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3649. continue
  3650. }
  3651. _content = $$("div", {
  3652. className: "U_MD_D_KO",
  3653. "onmousedown": U.UF.C.closure(function (obj) {
  3654. //防止拖动图标即打开了桌面应用
  3655. U.MD.D.click(this, obj);
  3656. }, [_orgStemDeskIcon[i]]),
  3657. "onclick": U.UF.C.closure(function (obj) {
  3658. //防止拖动图标即打开了桌面应用
  3659. U.MD.D.click(this, obj);
  3660. }, [_orgStemDeskIcon[i]])
  3661. }, _frag); //
  3662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3665. }
  3666. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3667. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3668. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3669. continue
  3670. }
  3671. _content = $$("div", {
  3672. className: "U_MD_D_KO",
  3673. "onmousedown": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_szulsDeskIcon[i]]),
  3677. "onclick": U.UF.C.closure(function (obj) {
  3678. //防止拖动图标即打开了桌面应用
  3679. U.MD.D.click(this, obj);
  3680. }, [_szulsDeskIcon[i]])
  3681. }, _frag); //
  3682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3685. }
  3686. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3687. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3688. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3689. continue
  3690. }
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. "onmousedown": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_orgDesktopIconInfo[i]]),
  3697. "onclick": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_orgDesktopIconInfo[i]])
  3701. }, _frag); //
  3702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3705. }
  3706. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3707. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3708. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3709. continue
  3710. }
  3711. _content = $$("div", {
  3712. className: "U_MD_D_KO",
  3713. "onmousedown": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_schoolDesktopIconInfo[i]]),
  3717. "onclick": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_schoolDesktopIconInfo[i]])
  3721. }, _frag); //
  3722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3725. }
  3726. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3727. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3728. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3729. continue
  3730. }
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_GMteacherDesktopIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_GMteacherDesktopIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3745. }
  3746. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3747. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3748. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_SONGteacherDesktopIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_SONGteacherDesktopIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3767. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_GMstudentDesktopIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_GMstudentDesktopIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3782. }
  3783. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3784. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_tcTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_tcTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3804. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3805. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3806. continue
  3807. }
  3808. _content = $$("div", {
  3809. className: "U_MD_D_KO",
  3810. "onmousedown": U.UF.C.closure(function (obj) {
  3811. //防止拖动图标即打开了桌面应用
  3812. U.MD.D.click(this, obj);
  3813. }, [_tcOrganizerDeskIconInfo[i]]),
  3814. "onclick": U.UF.C.closure(function (obj) {
  3815. //防止拖动图标即打开了桌面应用
  3816. U.MD.D.click(this, obj);
  3817. }, [_tcOrganizerDeskIconInfo[i]])
  3818. }, _frag); //
  3819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3822. }
  3823. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3824. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3825. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3826. continue
  3827. }
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_szscTeacherDeskIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_szscTeacherDeskIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3844. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3845. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3846. continue
  3847. }
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_szscOrganizerDeskIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_szscOrganizerDeskIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3862. }
  3863. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3864. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3865. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3866. continue
  3867. }
  3868. _content = $$("div", {
  3869. className: "U_MD_D_KO",
  3870. "onmousedown": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_nsfxTeacherDeskIconInfo[i]]),
  3874. "onclick": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_nsfxTeacherDeskIconInfo[i]])
  3878. }, _frag); //
  3879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3882. }
  3883. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3884. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3885. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3886. continue
  3887. }
  3888. _content = $$("div", {
  3889. className: "U_MD_D_KO",
  3890. "onmousedown": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_stiaTeacherDeskIconInfo[i]]),
  3894. "onclick": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_stiaTeacherDeskIconInfo[i]])
  3898. }, _frag); //
  3899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3902. }
  3903. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3904. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3905. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3906. continue
  3907. }
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_szdjgTeacherDeskIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_szdjgTeacherDeskIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3924. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3925. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3926. continue
  3927. }
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_x010607TeacherDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_x010607TeacherDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3942. }
  3943. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3944. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3945. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_xhlyTeacherDeskIconInfo[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_xhlyTeacherDeskIconInfo[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3964. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3965. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3966. continue
  3967. }
  3968. _content = $$("div", {
  3969. className: "U_MD_D_KO",
  3970. "onmousedown": U.UF.C.closure(function (obj) {
  3971. //防止拖动图标即打开了桌面应用
  3972. U.MD.D.click(this, obj);
  3973. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3974. "onclick": U.UF.C.closure(function (obj) {
  3975. //防止拖动图标即打开了桌面应用
  3976. U.MD.D.click(this, obj);
  3977. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3978. }, _frag); //
  3979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3982. }
  3983. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3984. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3985. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3986. continue
  3987. }
  3988. _content = $$("div", {
  3989. className: "U_MD_D_KO",
  3990. "onmousedown": U.UF.C.closure(function (obj) {
  3991. //防止拖动图标即打开了桌面应用
  3992. U.MD.D.click(this, obj);
  3993. }, [_x010503TeacherDeskIconInfo[i]]),
  3994. "onclick": U.UF.C.closure(function (obj) {
  3995. //防止拖动图标即打开了桌面应用
  3996. U.MD.D.click(this, obj);
  3997. }, [_x010503TeacherDeskIconInfo[i]])
  3998. }, _frag); //
  3999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4002. }
  4003. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4004. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4005. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4006. continue
  4007. }
  4008. _content = $$("div", {
  4009. className: "U_MD_D_KO",
  4010. "onmousedown": U.UF.C.closure(function (obj) {
  4011. //防止拖动图标即打开了桌面应用
  4012. U.MD.D.click(this, obj);
  4013. }, [_x010504TeacherDeskIconInfo[i]]),
  4014. "onclick": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_x010504TeacherDeskIconInfo[i]])
  4018. }, _frag); //
  4019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4022. }
  4023. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4024. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4025. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4026. continue
  4027. }
  4028. _content = $$("div", {
  4029. className: "U_MD_D_KO",
  4030. "onmousedown": U.UF.C.closure(function (obj) {
  4031. //防止拖动图标即打开了桌面应用
  4032. U.MD.D.click(this, obj);
  4033. }, [_x010204TeacherDeskIconInfo[i]]),
  4034. "onclick": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_x010204TeacherDeskIconInfo[i]])
  4038. }, _frag); //
  4039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4042. }
  4043. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4044. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4045. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4046. continue
  4047. }
  4048. _content = $$("div", {
  4049. className: "U_MD_D_KO",
  4050. "onmousedown": U.UF.C.closure(function (obj) {
  4051. //防止拖动图标即打开了桌面应用
  4052. U.MD.D.click(this, obj);
  4053. }, [_trailTeacherDeskIconInfo[i]]),
  4054. "onclick": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_trailTeacherDeskIconInfo[i]])
  4058. }, _frag); //
  4059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4062. }
  4063. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4064. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4065. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4066. continue
  4067. }
  4068. _content = $$("div", {
  4069. className: "U_MD_D_KO",
  4070. "onmousedown": U.UF.C.closure(function (obj) {
  4071. //防止拖动图标即打开了桌面应用
  4072. U.MD.D.click(this, obj);
  4073. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4074. "onclick": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4078. }, _frag); //
  4079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4082. }
  4083. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4084. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4085. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4086. continue
  4087. }
  4088. _content = $$("div", {
  4089. className: "U_MD_D_KO",
  4090. "onmousedown": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_x010608TeacherDeskIconInfo[i]]),
  4094. "onclick": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_x010608TeacherDeskIconInfo[i]])
  4098. }, _frag); //
  4099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4102. }
  4103. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4104. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4105. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4106. continue
  4107. }
  4108. _content = $$("div", {
  4109. className: "U_MD_D_KO",
  4110. "onmousedown": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_x010611TeacherDeskIconInfo[i]]),
  4114. "onclick": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_x010611TeacherDeskIconInfo[i]])
  4118. }, _frag); //
  4119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4122. }
  4123. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4124. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4125. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4126. continue
  4127. }
  4128. _content = $$("div", {
  4129. className: "U_MD_D_KO",
  4130. "onmousedown": U.UF.C.closure(function (obj) {
  4131. //防止拖动图标即打开了桌面应用
  4132. U.MD.D.click(this, obj);
  4133. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4134. "onclick": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_tianyuanTeacherDeskIconInfo[i]])
  4138. }, _frag); //
  4139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4142. }
  4143. } else {
  4144. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4145. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4146. continue
  4147. }
  4148. _content = $$("div", {
  4149. className: "U_MD_D_KO",
  4150. "onmousedown": U.UF.C.closure(function (obj) {
  4151. //防止拖动图标即打开了桌面应用
  4152. U.MD.D.click(this, obj);
  4153. }, [_teacherDesktopIconInfo[i]]),
  4154. "onclick": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_teacherDesktopIconInfo[i]])
  4158. }, _frag); //
  4159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4162. }
  4163. }
  4164. } else {
  4165. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4166. _content = $$("div", {
  4167. className: "U_MD_D_KO",
  4168. style: { 'width': '124px', 'height': '145px' },
  4169. "onmousedown": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_easyDesktopIconInfo[i]]),
  4173. "onclick": U.UF.C.closure(function (obj) {
  4174. //防止拖动图标即打开了桌面应用
  4175. U.MD.D.click(this, obj);
  4176. }, [_easyDesktopIconInfo[i]])
  4177. }, _frag); //
  4178. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4181. }
  4182. }
  4183. if (type == 1) {
  4184. //加载好后给图标定位
  4185. U.MD.D.iconPostion($(_frag).Child());
  4186. } else {
  4187. //加载好后给图标定位
  4188. U.MD.D.iconPostion2($(_frag).Child());
  4189. }
  4190. //把图标加载到页面
  4191. el.appendChild(_frag);
  4192. }
  4193. /**
  4194. * 显示任务栏
  4195. *
  4196. * @param {element} 桌面元素
  4197. */
  4198. U.MD.D.I.displayTaskbar = function (el) {
  4199. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4200. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4201. //任务栏位置变化
  4202. U.selectEl(el).css({ "bottom": "0px" });
  4203. //桌面位置变话
  4204. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4205. }
  4206. }
  4207. //#region 桌面图标拖动逻辑
  4208. /**
  4209. * 桌面排列图标
  4210. *
  4211. * @param {element} 桌面元素
  4212. * @param {object} 上下相距的距离
  4213. * @param {object} 左右相距的距离
  4214. * @return {object} 命名空间
  4215. */
  4216. U.MD.D.iconPostion = function (childs, top, left) {
  4217. var i; //用于循环处理
  4218. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4219. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4220. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4221. for (i = 0; i < childs.length; i++) {
  4222. //如果竖排top超过了范围处理
  4223. if (top + 95 > US.height - 10) {
  4224. //left超过了页面范围处理,则向上重叠打印处理
  4225. if ((left + 180) > US.width) {
  4226. top -= 110;
  4227. left -= 90;
  4228. }
  4229. //没有超过范围,那么left+90添加到下一个竖排打印
  4230. else {
  4231. left += 90;
  4232. top = 15;
  4233. };
  4234. }
  4235. //给图标的位置赋值
  4236. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4237. if (i < childs.length - 1) {
  4238. //页面图标每次向下加95
  4239. top += 95;
  4240. }
  4241. }
  4242. //返回最后调用的图标的位置
  4243. return [top, left];
  4244. }
  4245. /**
  4246. * 桌面排列图标
  4247. *
  4248. * @param {element} 桌面元素
  4249. * @param {object} 上下相距的距离
  4250. * @param {object} 左右相距的距离
  4251. * @return {object} 命名空间
  4252. */
  4253. U.MD.D.iconPostion2 = function (childs, top, left) {
  4254. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4255. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4256. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4257. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4258. for (i = 0; i < childs.length; i++) {
  4259. //如果竖排top超过了范围处理
  4260. if (left + 150 > US.width - 10) {
  4261. //left超过了页面范围处理,则向上重叠打印处理
  4262. if ((top + 180) > US.Height) {
  4263. top -= 150;
  4264. left -= 150;
  4265. }
  4266. //没有超过范围,那么left+90添加到下一个竖排打印
  4267. else {
  4268. top += 150;
  4269. left = ol;
  4270. };
  4271. }
  4272. //给图标的位置赋值
  4273. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4274. if (i < childs.length - 1) {
  4275. //页面图标每次向下加95
  4276. left += 150;
  4277. }
  4278. }
  4279. //返回最后调用的图标的位置
  4280. return [top, left];
  4281. }
  4282. /**
  4283. * 桌面点击事件逻辑
  4284. *
  4285. * @param {element} 桌面元素
  4286. * @param {object} 上下相距的距离
  4287. * @param {object} 左右相距的距离
  4288. * @return {object} 命名空间
  4289. */
  4290. U.MD.D.click = function (el, obj) {
  4291. var _buttonnumber = event.button; //点击的按钮的事件值
  4292. var _userinfo = US.userInfo;
  4293. U.UF.EV.stopBubble(); //阻止向上冒泡
  4294. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4295. if (_buttonnumber < 2) {
  4296. //如果是click事件的处理
  4297. if (event.type == "click") {
  4298. //如果元素在mousemove事件中没有移动则出发click事件
  4299. if (!U.MD.D.I.IsDrag) {
  4300. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4301. U.alert("请先登录您的账号!");
  4302. setTimeout(() => {
  4303. U.MD.U.L.login();
  4304. }, 2000);
  4305. } else {
  4306. //打开应用处理
  4307. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4308. }
  4309. }
  4310. }
  4311. //如果是mouse事件的处理
  4312. else {
  4313. if (US.Config.type == '1') {
  4314. //拖动处理,添加拖动和拖动结束事件
  4315. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4316. }
  4317. }
  4318. U.MD.D.I.IsDrag = false;
  4319. }
  4320. }
  4321. /**
  4322. * 拖动的处理
  4323. *
  4324. */
  4325. U.MD.D.iconMove = function () {
  4326. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4327. U.MD.D.I.IsDrag = true;
  4328. }
  4329. /**
  4330. * 拖动结束后,这里是定位处理,以网状的形式定位
  4331. *
  4332. * @param {element} 拖动的元素
  4333. * @return {object} 命名空间
  4334. */
  4335. U.MD.D.iconUp = function (el) {
  4336. var _top = 15,
  4337. _left = 20,
  4338. _margin,
  4339. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4340. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4341. if (_positioninfo["OT"] > 15) {
  4342. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4343. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4344. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4345. }
  4346. if (_positioninfo["OL"] > 20) {
  4347. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4348. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4349. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4350. }
  4351. //while循环判断么一个重叠的元素
  4352. do {
  4353. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4354. _top = _positioninfo[0] + 95; //得到定位后的top
  4355. _left = _positioninfo[1]; //得到定位后的left
  4356. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4357. }
  4358. /**
  4359. * 判断拖动后图标是否重叠
  4360. *
  4361. * @param {element} 拖动的元素
  4362. * @param {element} 桌面所有的元素
  4363. * @param {array} 拖动元素的位置
  4364. ----------[0] 上 top
  4365. ----------[1] 左 left
  4366. * @return {object} 命名空间
  4367. */
  4368. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4369. //循环所有的图标
  4370. for (var i = 0; i < childs.length; i++) {
  4371. //判断有没有和该图标诶子重叠的元素
  4372. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4373. return childs[i]; //如果有返回
  4374. }
  4375. }
  4376. }
  4377. //#endregion
  4378. //#endregion
  4379. //#region 桌面应用
  4380. /**
  4381. * 打开应用
  4382. *
  4383. * @param {string} 类型
  4384. -----------------Disk 网盘系统
  4385. -----------------PDisk 学习系统网盘
  4386. -----------------Poto 图片
  4387. -----------------Video 视频
  4388. -----------------Music 音乐
  4389. -----------------Word word
  4390. -----------------Excel excel
  4391. -----------------Txt 记事本
  4392. -----------------PB 学习系统
  4393. -----------------Blog 朋友圈系统
  4394. -----------------FTP ftp系统
  4395. -----------------Group 好友群
  4396. -----------------SY 首页系统
  4397. -----------------Set 个人设置
  4398. -----------------XSet 系统设置
  4399. -----------------App 我们所有的app
  4400. -----------------BC c.1473.cn 平台
  4401. -----------------CWeb d.1473.cn 变成平台
  4402. -----------------其他的外联系统 我们统一用iframe打开
  4403. * @param {array} 类型
  4404. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4405. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4406. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4407. 如果第一个参数为其他,则无第二个参数
  4408. * @returns {array}
  4409. */
  4410. window.addEventListener('message', function (e) { // 监听 message 事件
  4411. // alert(e.data.type);
  4412. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4413. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4414. //3是展示全部阶段 2学生 1老师 4专家
  4415. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4417. //3是展示全部阶段 2学生 1老师 4专家
  4418. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4420. //3是展示全部阶段 2学生 1老师 4专家
  4421. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4423. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4424. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4425. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4427. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4428. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4431. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4433. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4435. //3是展示全部阶段 2学生 1老师 4专家
  4436. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4437. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4438. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4439. U.MD.D.I.selectUser();
  4440. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4441. var _formel = document.getElementById("study");
  4442. U.UF.F.windowZooming(_formel);
  4443. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4444. var _formel = document.getElementById("studyDetail");
  4445. U.UF.F.windowZooming(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4447. var _formel = document.getElementById("studyDetail");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4450. var _formel = document.getElementById("studentStudy");
  4451. U.UF.F.windowZooming(_formel);
  4452. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4453. // var _formel = document.getElementById("study");
  4454. //如果最大化了,那么就把他缩小
  4455. // if (_formel.ismaximize) {
  4456. // return;
  4457. // }
  4458. // U.UF.F.windowZooming(_formel);
  4459. // U.UF.F.topWindow(_formel);
  4460. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4461. // var _formel = document.getElementById("studyDetail");
  4462. //如果最大化了,那么就把他缩小
  4463. // if (_formel.ismaximize) {
  4464. // return;
  4465. // }
  4466. // U.UF.F.windowZooming(_formel);
  4467. // U.UF.F.topWindow(_formel);
  4468. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4469. // var _formel = document.getElementById("studentStudy");
  4470. // if (_formel.ismaximize) {
  4471. // return;
  4472. // }
  4473. // U.UF.F.windowZooming(_formel);
  4474. // U.UF.F.topWindow(_formel);
  4475. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4476. var _formel = document.getElementById("study");
  4477. // if (_formel.ismaximize) {
  4478. // return;
  4479. // }
  4480. // U.UF.F.windowZooming(_formel);
  4481. U.UF.F.topWindow(_formel);
  4482. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4483. var _formel = document.getElementById("studentIndex");
  4484. U.UF.F.windowZooming(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4486. var _formel = document.getElementById("studyDetailS");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4489. var _formel = document.getElementById("studioIndex");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4492. var _formel = document.getElementById("studyDetailStudio");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4495. var _formel = document.getElementById("studyDetailStudio");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4498. var _formel = document.getElementById("studyDetailNT");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4501. var _formel = document.getElementById("studyDetailS");
  4502. U.UF.F.windowZooming(_formel);
  4503. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4504. var _formel = document.getElementById("studyDetailS");
  4505. U.UF.F.topWindow(_formel);
  4506. } else if (e.data.tools && e.data.tools == "1") {
  4507. // U.MD.D.I.openApplication("whiteboard")
  4508. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "2") {
  4510. U.MD.D.I.openApplication("note")
  4511. } else if (e.data.tools && e.data.tools == "3") {
  4512. // U.MD.D.I.openApplication("mind")
  4513. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "4") {
  4515. U.MD.D.I.openApplication("investigation")
  4516. } else if (e.data.tools && e.data.tools == "6") {
  4517. // U.MD.D.I.openApplication("doc")
  4518. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4519. } else if (e.data.tools && e.data.tools == "7") {
  4520. // U.MD.D.I.openApplication("mindNetwork")
  4521. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4522. } else if (e.data.tools && e.data.tools == "8") {
  4523. U.MD.D.I.openApplication("library")
  4524. } else if (e.data.tools && e.data.tools == "17") {
  4525. U.MD.D.I.openApplication("stuLibrary")
  4526. } else if (e.data.tools && e.data.tools == "18") {
  4527. U.MD.D.I.openApplication("train")
  4528. } else if (e.data.tools && e.data.tools == "21") {
  4529. U.MD.D.I.openApplication("program")
  4530. } else if (e.data.tools && e.data.tools == "22") {
  4531. U.MD.D.I.openApplication("AIprogram2")
  4532. } else if (e.data.tools && e.data.tools == "23") {
  4533. U.MD.D.I.openApplication("Pythonprogram")
  4534. } else if (e.data.tools && e.data.tools == "24") {
  4535. U.MD.D.I.openApplication("AIprogram")
  4536. } else if (e.data.tools && e.data.tools == "25") {
  4537. U.MD.D.I.openApplication("sys")
  4538. } else if (e.data.tools && e.data.tools == "26") {
  4539. // U.MD.D.I.openApplication("courseDesign")
  4540. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4541. } else if (e.data.tools && e.data.tools == "31") {
  4542. U.MD.D.I.openApplication("netWorkPanel")
  4543. } else if (e.data.tools && e.data.tools == "32") {
  4544. U.MD.D.I.openApplication("codeEdit")
  4545. } else if (e.data.tools && e.data.tools == "57") {
  4546. U.MD.D.I.openApplication("CocoPi")
  4547. } else if (e.data.tools && e.data.tools == "63") {
  4548. U.MD.D.I.openApplication("Wood")
  4549. } else if (e.data.tools && e.data.tools == "58") {
  4550. U.MD.D.I.openApplication("car")
  4551. } else if (e.data.tools && e.data.tools == "59") {
  4552. U.MD.D.I.openApplication("lineSearch")
  4553. } else if (e.data.tools && e.data.tools == "60") {
  4554. U.MD.D.I.openApplication("deepLearning")
  4555. } else if (e.data.tools && e.data.tools == "61") {
  4556. U.MD.D.I.openApplication("allHistory")
  4557. } else if (e.data.tools && e.data.tools == "28") {
  4558. U.MD.D.I.openApplication("translation")
  4559. } else if (e.data.tools && e.data.tools == "37") {
  4560. U.MD.D.I.openApplication("mohe")
  4561. } else if (e.data.tools && e.data.tools == "38") {
  4562. U.MD.D.I.openApplication("24game")
  4563. } else if (e.data.tools && e.data.tools == "39") {
  4564. U.MD.D.I.openApplication("GeoGebra")
  4565. } else if (e.data.tools && e.data.tools == "43") {
  4566. U.MD.D.I.openApplication("studentEvaluate")
  4567. } else if (e.data.tools && e.data.tools == "44") {
  4568. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4569. } else if (e.data.tools && e.data.tools == "46") {
  4570. U.MD.D.I.openApplication("project")
  4571. } else if (e.data.tools && e.data.tools == "71") {
  4572. U.MD.D.I.openApplication("aigptCourse")
  4573. } else if (e.data.tools && e.data.tools == "1s") {
  4574. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "3s") {
  4576. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "6s") {
  4578. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "1studio") {
  4580. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "3studio") {
  4582. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "6studio") {
  4584. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "3y") {
  4586. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "1y") {
  4588. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4589. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4590. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4591. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4592. U.MD.D.I.openApplication("AIAnalyse")
  4593. } else if (e.data.tools && e.data.tools == "1teacher") {
  4594. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4595. } else if (e.data.tools && e.data.tools == "3teacher") {
  4596. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4597. } else if (e.data.tools && e.data.tools == "7teacher") {
  4598. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4599. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4600. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4602. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4603. } else if (e.data.tools && e.data.tools == "1E") {
  4604. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4605. } else if (e.data.tools && e.data.tools == "3E") {
  4606. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4607. } else if (e.data.tools && e.data.tools == "57y") {
  4608. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "57u") {
  4610. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4611. } else if (e.data.tools && e.data.tools == "57teacher") {
  4612. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4613. } else if (e.data.tools && e.data.tools == "64") {
  4614. U.MD.D.I.openApplication("AIChat")
  4615. } else if (e.data.tools && e.data.tools == "66") {
  4616. U.MD.D.I.openApplication("formulaEdi")
  4617. } else if (e.data.tools && e.data.tools == "67") {
  4618. U.MD.D.I.openApplication("molStr")
  4619. } else if (e.data.tools && e.data.tools == "68") {
  4620. U.MD.D.I.openApplication("timeAxis")
  4621. } else if (e.data.tools && e.data.tools == "openCourse") {
  4622. let _data = {
  4623. typea: e.data.typea || '',
  4624. typeb: e.data.typeb || '',
  4625. typed: e.data.typed || '',
  4626. }
  4627. U.MD.D.I.openInApplication("index", _data)
  4628. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4629. let _data = {
  4630. classid: e.data.classid || '',
  4631. }
  4632. U.MD.D.I.openInApplication("dataClass", _data)
  4633. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4634. let _data = {
  4635. cid: e.data.cid || '',
  4636. gid: e.data.gid || '',
  4637. }
  4638. U.MD.D.I.openInApplication("opencCscl", _data)
  4639. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4640. U.MD.D.I.openApplication("dataBoardTest")
  4641. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4642. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4643. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4644. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4645. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4646. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4647. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4648. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4650. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4652. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4653. }else if (e.data.tools && e.data.tools == "loginSz") {
  4654. U.MD.D.I.openInApplication("loginSz")
  4655. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4656. if($('#classroom_observation_board')[0]){
  4657. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4658. }
  4659. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4660. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4661. if($('#classroom_observation_ob_comment')[0]){
  4662. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4663. }
  4664. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4665. }else if (e.data.tools && e.data.tools == "logout"){
  4666. U.MD.U.LO.logoutSystem()
  4667. }else if (e.data.tools && e.data.tools == "getLogin"){
  4668. let _iframe = $('#UI_Login')[0];
  4669. if (_iframe) {
  4670. var userInfo = US.userInfo;
  4671. var type = 2
  4672. if(userInfo && userInfo.userid){
  4673. type = 1
  4674. }
  4675. _contentWindow = _iframe.contentWindow;
  4676. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4677. }
  4678. }
  4679. });
  4680. U.MD.D.I.selectUser = function () {
  4681. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4682. if (res.value[0].length > 0) {
  4683. US.userInfo = res.value[0][0];
  4684. $(".userName")[0].innerHTML = US.userInfo.username;
  4685. }
  4686. }, [], { "type": "GET", "withCredentials": true });
  4687. }
  4688. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4689. var _userinfo = US.userInfo, //登录用户信息
  4690. _userid = US.userInfo.userid, //登录用户id
  4691. _oid = _userinfo.organizeid,
  4692. _type = US.userInfo.type,
  4693. _org = US.userInfo.org,
  4694. _role = US.userInfo.role,
  4695. _classId = US.userInfo.classid;
  4696. if (_type == 4) {
  4697. tType = 4
  4698. }
  4699. switch (str) {
  4700. case "studyDetailNT": //无终端模式
  4701. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4702. setTimeout(() => {
  4703. U.MD.U.L.login();
  4704. }, 2000);
  4705. } else {
  4706. _formdiv = new U.UF.UI.form(
  4707. "课程详情",
  4708. $$("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 }), {
  4709. "id": "studyDetailNT",
  4710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _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); } }
  4716. break;
  4717. }
  4718. case "studyDetail":
  4719. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4720. setTimeout(() => {
  4721. U.MD.U.L.login();
  4722. }, 2000);
  4723. } else {
  4724. _formdiv = new U.UF.UI.form(
  4725. "课程详情",
  4726. $$("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 }), {
  4727. "id": "studyDetail",
  4728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4729. "onresize": function () { }
  4730. }, {
  4731. closecallback: function () { }
  4732. }, { "style": { "height": "36px" } }).form; //创建窗体
  4733. _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); } }
  4734. break;
  4735. }
  4736. case "studyDetailTrain":
  4737. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4738. setTimeout(() => {
  4739. U.MD.U.L.login();
  4740. }, 2000);
  4741. } else {
  4742. _formdiv = new U.UF.UI.form(
  4743. "培训详情",
  4744. $$("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 }), {
  4745. "id": "studyDetailTrain",
  4746. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4747. "onresize": function () { }
  4748. }, {
  4749. closecallback: function () { }
  4750. }, { "style": { "height": "36px" } }).form; //创建窗体
  4751. _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); } }
  4752. break;
  4753. }
  4754. case "studyDetailS":
  4755. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4756. setTimeout(() => {
  4757. U.MD.U.L.login();
  4758. }, 2000);
  4759. } else {
  4760. _formdiv = new U.UF.UI.form(
  4761. "项目详情",
  4762. $$("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 }), {
  4763. "id": "studyDetailS",
  4764. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4765. "onresize": function () { }
  4766. }, {
  4767. closecallback: function () { }
  4768. }, { "style": { "height": "36px" } }).form; //创建窗体
  4769. _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); } }
  4770. break;
  4771. }
  4772. case "studyDetailStudio":
  4773. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4774. setTimeout(() => {
  4775. U.MD.U.L.login();
  4776. }, 2000);
  4777. } else {
  4778. _formdiv = new U.UF.UI.form(
  4779. "工作详情",
  4780. $$("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 }), {
  4781. "id": "studyDetailStudio",
  4782. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4783. "onresize": function () { }
  4784. }, {
  4785. closecallback: function () { }
  4786. }, { "style": { "height": "36px" } }).form; //创建窗体
  4787. _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); } }
  4788. break;
  4789. }
  4790. case "studyDetailS5":
  4791. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4792. setTimeout(() => {
  4793. U.MD.U.L.login();
  4794. }, 2000);
  4795. } else {
  4796. _formdiv = new U.UF.UI.form(
  4797. "项目详情",
  4798. $$("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 }), {
  4799. "id": "studyDetailS",
  4800. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4801. "onresize": function () { }
  4802. }, {
  4803. closecallback: function () { }
  4804. }, { "style": { "height": "36px" } }).form; //创建窗体
  4805. _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); } }
  4806. break;
  4807. }
  4808. case "studyDetailGM":
  4809. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4810. setTimeout(() => {
  4811. U.MD.U.L.login();
  4812. }, 2000);
  4813. } else {
  4814. _formdiv = new U.UF.UI.form(
  4815. "课程详情",
  4816. $$("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 }), {
  4817. "id": "studyDetail",
  4818. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4819. "onresize": function () { }
  4820. }, {
  4821. closecallback: function () { }
  4822. }, { "style": { "height": "36px" } }).form; //创建窗体
  4823. _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); } }
  4824. break;
  4825. }
  4826. case "hanUrl":
  4827. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4828. setTimeout(() => {
  4829. U.MD.U.L.login();
  4830. }, 2000);
  4831. } else {
  4832. _formdiv = new U.UF.UI.form(
  4833. "汉字宫",
  4834. $$("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" }), {
  4835. "id": "hanUrl",
  4836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4837. "onresize": function () { }
  4838. }, {
  4839. closecallback: function () { }
  4840. }, { "style": { "height": "36px" } }).form; //创建窗体
  4841. _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); } }
  4842. break;
  4843. }
  4844. case "index":
  4845. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4846. setTimeout(() => {
  4847. U.MD.U.L.login();
  4848. }, 2000);
  4849. } else {
  4850. _formdiv = new U.UF.UI.form(
  4851. "课程中心",
  4852. $$("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 }), {
  4853. "id": "study",
  4854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4855. "onresize": function () { }
  4856. }, {
  4857. closecallback: function () { }
  4858. }, { "style": { "height": "36px" } }).form; //创建窗体
  4859. _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); } }
  4860. break;
  4861. }
  4862. case "dataClass":
  4863. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4864. setTimeout(() => {
  4865. U.MD.U.L.login();
  4866. }, 2000);
  4867. } else {
  4868. _formdiv = new U.UF.UI.form(
  4869. "数据报告",
  4870. $$("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 }), {
  4871. "id": "dataClass",
  4872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4873. "onresize": function () { }
  4874. }, {
  4875. closecallback: function () { }
  4876. }, { "style": { "height": "36px" } }).form; //创建窗体
  4877. _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); } }
  4878. break;
  4879. }
  4880. case "opencCscl":
  4881. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4882. setTimeout(() => {
  4883. U.MD.U.L.login();
  4884. }, 2000);
  4885. } else {
  4886. _formdiv = new U.UF.UI.form(
  4887. "协同建构",
  4888. $$("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 }), {
  4889. "id": "futureClass",
  4890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4891. "onresize": function () { }
  4892. }, {
  4893. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4894. }, { "style": { "height": "36px" } }).form; //创建窗体
  4895. _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); } }
  4896. break;
  4897. }
  4898. case "openCourseUpdate":
  4899. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4900. setTimeout(() => {
  4901. U.MD.U.L.login();
  4902. }, 2000);
  4903. } else {
  4904. _formdiv = new U.UF.UI.form(
  4905. "课程管理",
  4906. $$("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 }), {
  4907. "id": "openCourseUpdate",
  4908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4909. "onresize": function () { }
  4910. }, {
  4911. closecallback: function () { }
  4912. }, { "style": { "height": "36px" } }).form; //创建窗体
  4913. break;
  4914. }
  4915. case "openNewCourseUpdate":
  4916. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4917. setTimeout(() => {
  4918. U.MD.U.L.login();
  4919. }, 2000);
  4920. } else {
  4921. _formdiv = new U.UF.UI.form(
  4922. "课程管理",
  4923. $$("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 }), {
  4924. "id": "openCourseUpdate",
  4925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4926. "onresize": function () { }
  4927. }, {
  4928. closecallback: function () { }
  4929. }, { "style": { "height": "36px" } }).form; //创建窗体
  4930. break;
  4931. }
  4932. case "openCourseEUpdate":
  4933. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4934. setTimeout(() => {
  4935. U.MD.U.L.login();
  4936. }, 2000);
  4937. } else {
  4938. _formdiv = new U.UF.UI.form(
  4939. "课程管理",
  4940. $$("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 }), {
  4941. "id": "openCourseUpdate",
  4942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. break;
  4948. }
  4949. case "openCourseAiUpdate":
  4950. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4951. setTimeout(() => {
  4952. U.MD.U.L.login();
  4953. }, 2000);
  4954. } else {
  4955. _formdiv = new U.UF.UI.form(
  4956. "课程管理",
  4957. $$("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 }), {
  4958. "id": "openCourseUpdate",
  4959. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4960. "onresize": function () { }
  4961. }, {
  4962. closecallback: function () { }
  4963. }, { "style": { "height": "36px" } }).form; //创建窗体
  4964. break;
  4965. }
  4966. case "openCourseAiUpdate2":
  4967. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4968. setTimeout(() => {
  4969. U.MD.U.L.login();
  4970. }, 2000);
  4971. } else {
  4972. _formdiv = new U.UF.UI.form(
  4973. "课程管理",
  4974. $$("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 }), {
  4975. "id": "openCourseUpdate",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. break;
  4982. }
  4983. case "openCourseNewUpdate":
  4984. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4985. setTimeout(() => {
  4986. U.MD.U.L.login();
  4987. }, 2000);
  4988. } else {
  4989. _formdiv = new U.UF.UI.form(
  4990. "课程管理",
  4991. $$("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 }), {
  4992. "id": "openCourseUpdate",
  4993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. break;
  4999. }
  5000. case "inviteLoginSz":
  5001. _formdiv = new U.UF.UI.form(
  5002. "随机码登录",
  5003. $$("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 }), {
  5004. "id": "loginSz",
  5005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. break;
  5011. case "loginSz":
  5012. _formdiv = new U.UF.UI.form(
  5013. "教师登录",
  5014. $$("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" }), {
  5015. "id": "loginSz",
  5016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. break;
  5022. case "teacher":
  5023. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5024. setTimeout(() => {
  5025. U.MD.U.L.login();
  5026. }, 2000);
  5027. } else {
  5028. _formdiv = new U.UF.UI.form(
  5029. "教师管理",
  5030. $$("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 }), {
  5031. "id": "teacher",
  5032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5033. "onresize": function () { }
  5034. }, {
  5035. closecallback: function () { }
  5036. }, { "style": { "height": "36px" } }).form; //创建窗体
  5037. break;
  5038. }
  5039. case "dataBoardSZArea":
  5040. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5041. setTimeout(() => {
  5042. U.MD.U.L.login();
  5043. }, 2000);
  5044. } else {
  5045. _formdiv = new U.UF.UI.form(
  5046. "综合数据看板",
  5047. $$("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 }), {
  5048. "id": "dataBoardSZArea",
  5049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5050. "onresize": function () { }
  5051. }, {
  5052. closecallback: function () { }
  5053. }, { "style": { "height": "36px" } }).form; //创建窗体
  5054. break;
  5055. }
  5056. case "dataBoardSZCity":
  5057. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5058. setTimeout(() => {
  5059. U.MD.U.L.login();
  5060. }, 2000);
  5061. } else {
  5062. _formdiv = new U.UF.UI.form(
  5063. "综合数据看板",
  5064. $$("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 }), {
  5065. "id": "dataBoardSZCity",
  5066. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5067. "onresize": function () { }
  5068. }, {
  5069. closecallback: function () { }
  5070. }, { "style": { "height": "36px" } }).form; //创建窗体
  5071. break;
  5072. }
  5073. case "classroom_observation_board":
  5074. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5075. setTimeout(() => {
  5076. U.MD.U.L.login();
  5077. }, 2000);
  5078. } else {
  5079. _formdiv = new U.UF.UI.form(
  5080. "课堂观察",
  5081. $$("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 }), {
  5082. "id": "classroom_observation_board",
  5083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //创建窗体
  5088. break;
  5089. }
  5090. case "classroom_observation_ob_comment":
  5091. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5092. setTimeout(() => {
  5093. U.MD.U.L.login();
  5094. }, 2000);
  5095. } else {
  5096. _formdiv = new U.UF.UI.form(
  5097. "课堂审核",
  5098. $$("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 }), {
  5099. "id": "classroom_observation_ob_comment",
  5100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. break;
  5106. }
  5107. }
  5108. }
  5109. U.MD.D.I.openApplication = function (str, obj, info) {
  5110. obj = obj || {};
  5111. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5112. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5113. _userinfo = US.userInfo, //登录用户信息
  5114. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5115. _oid = obj.organizeid || _userinfo.organizeid,
  5116. _type = US.userInfo.type,
  5117. _org = US.userInfo.org,
  5118. _role = US.userInfo.role,
  5119. _classId = US.userInfo.classid,
  5120. _TscreenType = 1
  5121. _screenType = 2,
  5122. _SscreenType = 3;
  5123. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5124. return;
  5125. }
  5126. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5127. switch (str) {
  5128. case "studnetProject": //好友打开
  5129. _formdiv = new U.UF.UI.form(
  5130. "我的项目",
  5131. $$("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 }), {
  5132. "id": "studnetProject",
  5133. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //创建窗体
  5138. _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); } }
  5139. break;
  5140. case "studentEvaluate": //好友打开
  5141. _formdiv = new U.UF.UI.form(
  5142. "我的评价",
  5143. $$("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 }), {
  5144. "id": "studentEvaluate",
  5145. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. _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); } }
  5151. break;
  5152. case "my":
  5153. _formdiv = new U.UF.UI.form(
  5154. "我的资料",
  5155. $$("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 }), {
  5156. "id": "my",
  5157. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _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); } }
  5163. break;
  5164. case "program":
  5165. _formdiv = new U.UF.UI.form(
  5166. "编程平台",
  5167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5168. "id": "program",
  5169. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5170. "onresize": function () { }
  5171. }, {
  5172. closecallback: function () { }
  5173. }, { "style": { "height": "36px" } }).form; //创建窗体
  5174. _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); } }
  5175. break;
  5176. case "library":
  5177. _formdiv = new U.UF.UI.form(
  5178. "素材库",
  5179. $$("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 }), {
  5180. "id": "library",
  5181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. _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); } }
  5187. break;
  5188. case "whiteboard":
  5189. _formdiv = new U.UF.UI.form(
  5190. "电子白板",
  5191. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5192. "id": "whiteboard",
  5193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _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); } }
  5199. break;
  5200. case "investigation":
  5201. _formdiv = new U.UF.UI.form(
  5202. "问卷调查",
  5203. $$("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 }), {
  5204. "id": "investigation",
  5205. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5206. "onresize": function () { }
  5207. }, {
  5208. closecallback: function () { }
  5209. }, { "style": { "height": "36px" } }).form; //创建窗体
  5210. _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); } }
  5211. break;
  5212. case "note":
  5213. _formdiv = new U.UF.UI.form(
  5214. "便签分类",
  5215. $$("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 }), {
  5216. "id": "note",
  5217. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //创建窗体
  5222. _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); } }
  5223. break;
  5224. // case "score":
  5225. // _formdiv = new U.UF.UI.form(
  5226. // "量规评分",
  5227. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5228. // "id": "score",
  5229. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5230. // "onresize": function() {}
  5231. // }, {
  5232. // closecallback: function() {}
  5233. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. // _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); } }
  5235. // break;
  5236. case "mind":
  5237. _formdiv = new U.UF.UI.form(
  5238. "思维导图",
  5239. $$("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"
  5240. "id": "mind",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _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); } }
  5247. break;
  5248. case "doc":
  5249. // U.MD.D.I.isRoom();
  5250. _formdiv = new U.UF.UI.form(
  5251. "协同文档",
  5252. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5253. "id": "doc",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5260. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5261. // })
  5262. _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); } }
  5263. break;
  5264. case "studentStudy":
  5265. _formdiv = new U.UF.UI.form(
  5266. "课程中心",
  5267. $$("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
  5268. "id": "studentStudy",
  5269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. case "train": //好友打开
  5277. _formdiv = new U.UF.UI.form(
  5278. "训练平台",
  5279. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5280. "id": "train",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. case "mindNetwork": //好友打开
  5289. _formdiv = new U.UF.UI.form(
  5290. "思维网格",
  5291. $$("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 }), {
  5292. "id": "mindNetwork",
  5293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _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); } }
  5299. break;
  5300. case "studentClassRoom": //好友打开
  5301. _formdiv = new U.UF.UI.form(
  5302. "实时课堂",
  5303. $$("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 }), {
  5304. "id": "studentClassRoom",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. setTimeout(() => {
  5312. U.UF.F.windowZooming(_formdiv)
  5313. }, 0);
  5314. break;
  5315. }
  5316. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5317. switch (str) {
  5318. case "studnetProject": //好友打开
  5319. _formdiv = new U.UF.UI.form(
  5320. "我的项目",
  5321. $$("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 }), {
  5322. "id": "studnetProject",
  5323. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5324. "onresize": function () { }
  5325. }, {
  5326. closecallback: function () { }
  5327. }, { "style": { "height": "36px" } }).form; //创建窗体
  5328. _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); } }
  5329. break;
  5330. case "studentEvaluate": //好友打开
  5331. _formdiv = new U.UF.UI.form(
  5332. "我的评价",
  5333. $$("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 }), {
  5334. "id": "studentEvaluate",
  5335. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _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); } }
  5341. break;
  5342. case "my":
  5343. _formdiv = new U.UF.UI.form(
  5344. "我的资料",
  5345. $$("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 }), {
  5346. "id": "my",
  5347. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5348. "onresize": function () { }
  5349. }, {
  5350. closecallback: function () { }
  5351. }, { "style": { "height": "36px" } }).form; //创建窗体
  5352. _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); } }
  5353. break;
  5354. case "program":
  5355. _formdiv = new U.UF.UI.form(
  5356. "编程平台",
  5357. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5358. "id": "program",
  5359. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5360. "onresize": function () { }
  5361. }, {
  5362. closecallback: function () { }
  5363. }, { "style": { "height": "36px" } }).form; //创建窗体
  5364. _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); } }
  5365. break;
  5366. case "library":
  5367. _formdiv = new U.UF.UI.form(
  5368. "素材库",
  5369. $$("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 }), {
  5370. "id": "library",
  5371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _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); } }
  5377. break;
  5378. case "whiteboard":
  5379. _formdiv = new U.UF.UI.form(
  5380. "电子白板",
  5381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5382. "id": "whiteboard",
  5383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5384. "onresize": function () { }
  5385. }, {
  5386. closecallback: function () { }
  5387. }, { "style": { "height": "36px" } }).form; //创建窗体
  5388. _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); } }
  5389. break;
  5390. case "investigation":
  5391. _formdiv = new U.UF.UI.form(
  5392. "问卷调查",
  5393. $$("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 }), {
  5394. "id": "investigation",
  5395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. _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); } }
  5401. break;
  5402. case "note":
  5403. _formdiv = new U.UF.UI.form(
  5404. "便签分类",
  5405. $$("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 }), {
  5406. "id": "note",
  5407. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. _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); } }
  5413. break;
  5414. // case "score":
  5415. // _formdiv = new U.UF.UI.form(
  5416. // "量规评分",
  5417. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5418. // "id": "score",
  5419. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5420. // "onresize": function() {}
  5421. // }, {
  5422. // closecallback: function() {}
  5423. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5424. // _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); } }
  5425. // break;
  5426. case "mind":
  5427. _formdiv = new U.UF.UI.form(
  5428. "思维导图",
  5429. $$("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"
  5430. "id": "mind",
  5431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5432. "onresize": function () { }
  5433. }, {
  5434. closecallback: function () { }
  5435. }, { "style": { "height": "36px" } }).form; //创建窗体
  5436. _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); } }
  5437. break;
  5438. case "doc":
  5439. // U.MD.D.I.isRoom();
  5440. _formdiv = new U.UF.UI.form(
  5441. "协同文档",
  5442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5443. "id": "doc",
  5444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5450. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5451. })
  5452. _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); } }
  5453. break;
  5454. case "train": //好友打开
  5455. _formdiv = new U.UF.UI.form(
  5456. "训练平台",
  5457. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5458. "id": "train",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "studentStudy":
  5467. _formdiv = new U.UF.UI.form(
  5468. "课程中心",
  5469. $$("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
  5470. "id": "studentStudy",
  5471. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5477. break;
  5478. case "mindNetwork": //好友打开
  5479. _formdiv = new U.UF.UI.form(
  5480. "思维网格",
  5481. $$("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 }), {
  5482. "id": "mindNetwork",
  5483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5489. break;
  5490. case "studentClassRoom": //好友打开
  5491. _formdiv = new U.UF.UI.form(
  5492. "实时课堂",
  5493. $$("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 }), {
  5494. "id": "studentClassRoom",
  5495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5501. setTimeout(() => {
  5502. U.UF.F.windowZooming(_formdiv)
  5503. }, 0);
  5504. break;
  5505. }
  5506. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5507. //选择应用处理
  5508. switch (str) {
  5509. case "project": //好友打开
  5510. _formdiv = new U.UF.UI.form(
  5511. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5512. $$("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 }), {
  5513. "id": "project",
  5514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //创建窗体
  5519. _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); } }
  5520. break;
  5521. case "student":
  5522. _formdiv = new U.UF.UI.form(
  5523. "学生管理",
  5524. $$("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 }), {
  5525. "id": "student",
  5526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _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); } }
  5532. break;
  5533. case "evaluate":
  5534. _formdiv = new U.UF.UI.form(
  5535. "学生评价",
  5536. $$("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 }), {
  5537. "id": "evaluate",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. _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); } }
  5544. break;
  5545. case "sys":
  5546. _formdiv = new U.UF.UI.form(
  5547. "目标管理",
  5548. $$("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 }), {
  5549. "id": "sys",
  5550. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _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); } }
  5556. break;
  5557. case "courseDesign":
  5558. _formdiv = new U.UF.UI.form(
  5559. "项目设计",
  5560. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5561. "id": "courseDesign",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. _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); } }
  5568. break;
  5569. case "program":
  5570. _formdiv = new U.UF.UI.form(
  5571. "编程平台",
  5572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5573. "id": "program",
  5574. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //创建窗体
  5579. _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); } }
  5580. break;
  5581. case "class":
  5582. _formdiv = new U.UF.UI.form(
  5583. "班级管理",
  5584. $$("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 }), {
  5585. "id": "class",
  5586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5587. "onresize": function () { }
  5588. }, {
  5589. closecallback: function () { }
  5590. }, { "style": { "height": "36px" } }).form; //创建窗体
  5591. _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); } }
  5592. break;
  5593. case "Grade":
  5594. _formdiv = new U.UF.UI.form(
  5595. "年级管理",
  5596. $$("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 }), {
  5597. "id": "Grade",
  5598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //创建窗体
  5603. _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); } }
  5604. break;
  5605. case "teacherOffice":
  5606. _formdiv = new U.UF.UI.form(
  5607. "教研室",
  5608. $$("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 }), {
  5609. "id": "teacherOffice",
  5610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //创建窗体
  5615. _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); } }
  5616. break;
  5617. case "my":
  5618. _formdiv = new U.UF.UI.form(
  5619. "我的资料",
  5620. $$("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 }), {
  5621. "id": "my",
  5622. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "notice":
  5630. _formdiv = new U.UF.UI.form(
  5631. "通知公告",
  5632. $$("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 }), {
  5633. "id": "notice",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "library":
  5642. _formdiv = new U.UF.UI.form(
  5643. "素材库",
  5644. $$("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 }), {
  5645. "id": "library",
  5646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "whiteboard":
  5654. _formdiv = new U.UF.UI.form(
  5655. "电子白板",
  5656. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5657. "id": "whiteboard",
  5658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. case "investigation":
  5666. _formdiv = new U.UF.UI.form(
  5667. "问卷调查",
  5668. $$("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 }), {
  5669. "id": "investigation",
  5670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _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); } }
  5676. break;
  5677. case "note":
  5678. _formdiv = new U.UF.UI.form(
  5679. "便签分类",
  5680. $$("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 }), {
  5681. "id": "note",
  5682. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //创建窗体
  5687. _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); } }
  5688. break;
  5689. // case "score":
  5690. // _formdiv = new U.UF.UI.form(
  5691. // "量规评分",
  5692. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5693. // "id": "score",
  5694. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. // "onresize": function() {}
  5696. // }, {
  5697. // closecallback: function() {}
  5698. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. // _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); } }
  5700. // break;
  5701. case "mind":
  5702. _formdiv = new U.UF.UI.form(
  5703. "思维导图",
  5704. $$("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"
  5705. "id": "mind",
  5706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //创建窗体
  5711. _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); } }
  5712. break;
  5713. case "doc":
  5714. // U.MD.D.I.isRoom();
  5715. _formdiv = new U.UF.UI.form(
  5716. "协同文档",
  5717. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5718. "id": "doc",
  5719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5725. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5726. })
  5727. _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); } }
  5728. break;
  5729. case "study":
  5730. _formdiv = new U.UF.UI.form(
  5731. "课程中心",
  5732. $$("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
  5733. "id": "study",
  5734. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5740. break;
  5741. case "mindNetwork": //好友打开
  5742. _formdiv = new U.UF.UI.form(
  5743. "思维网格",
  5744. $$("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 }), {
  5745. "id": "mindNetwork",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5752. break;
  5753. case "train": //好友打开
  5754. _formdiv = new U.UF.UI.form(
  5755. "训练平台",
  5756. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5757. "id": "mindNetwork",
  5758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5764. break;
  5765. case "teacherClassRoom": //好友打开
  5766. _formdiv = new U.UF.UI.form(
  5767. "实时课堂",
  5768. $$("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 }), {
  5769. "id": "teacherClassRoom",
  5770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5776. setTimeout(() => {
  5777. U.UF.F.windowZooming(_formdiv)
  5778. }, 0);
  5779. break;
  5780. }
  5781. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5782. switch (str) {
  5783. case "project": //好友打开
  5784. _formdiv = new U.UF.UI.form(
  5785. "课程管理",
  5786. $$("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 }), {
  5787. "id": "project",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. case "evaluate":
  5796. _formdiv = new U.UF.UI.form(
  5797. "学生评价",
  5798. $$("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 }), {
  5799. "id": "evaluate",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _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); } }
  5806. break;
  5807. case "notice":
  5808. _formdiv = new U.UF.UI.form(
  5809. "通知公告",
  5810. $$("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 }), {
  5811. "id": "notice",
  5812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. _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); } }
  5818. break;
  5819. case "stuLibrary":
  5820. _formdiv = new U.UF.UI.form(
  5821. "学习资料",
  5822. $$("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 }), {
  5823. "id": "stuLibrary",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. case "program":
  5832. _formdiv = new U.UF.UI.form(
  5833. "编程平台",
  5834. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5835. "id": "program",
  5836. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. _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); } }
  5842. break;
  5843. case "whiteboard":
  5844. _formdiv = new U.UF.UI.form(
  5845. "电子白板",
  5846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5847. "id": "whiteboard",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _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); } }
  5854. break;
  5855. case "investigation":
  5856. _formdiv = new U.UF.UI.form(
  5857. "问卷调查",
  5858. $$("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 }), {
  5859. "id": "investigation",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. case "mind":
  5868. _formdiv = new U.UF.UI.form(
  5869. "思维导图",
  5870. $$("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"
  5871. "id": "mind",
  5872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //创建窗体
  5877. _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); } }
  5878. break;
  5879. case "doc":
  5880. // U.MD.D.I.isRoom();
  5881. _formdiv = new U.UF.UI.form(
  5882. "协同文档",
  5883. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5884. "id": "doc",
  5885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5891. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5892. })
  5893. _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); } }
  5894. break;
  5895. case "study":
  5896. _formdiv = new U.UF.UI.form(
  5897. "课程中心",
  5898. $$("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
  5899. "id": "study",
  5900. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5906. break;
  5907. case "mindNetwork": //好友打开
  5908. _formdiv = new U.UF.UI.form(
  5909. "思维网格",
  5910. $$("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 }), {
  5911. "id": "mindNetwork",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5918. break;
  5919. case "train": //好友打开
  5920. _formdiv = new U.UF.UI.form(
  5921. "训练平台",
  5922. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5923. "id": "train",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. case "sys":
  5932. _formdiv = new U.UF.UI.form(
  5933. "目标管理",
  5934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5935. "id": "sys",
  5936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5942. break;
  5943. case "courseDesign":
  5944. _formdiv = new U.UF.UI.form(
  5945. "项目设计",
  5946. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5947. "id": "courseDesign",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5954. break;
  5955. }
  5956. } else if (!_type) {
  5957. switch (str) {
  5958. case "my":
  5959. _formdiv = new U.UF.UI.form(
  5960. "我的资料",
  5961. $$("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 }), {
  5962. "id": "my",
  5963. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _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); } }
  5969. break;
  5970. }
  5971. }
  5972. switch (str) {
  5973. // AIprogram2 AI体验 aihub.cocorobo.cn
  5974. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5975. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5976. case "formulaEdi": //公式编辑
  5977. _formdiv = new U.UF.UI.form(
  5978. "公式编辑",
  5979. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5980. "id": "formulaEdi",
  5981. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _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); } }
  5987. break;
  5988. case "molStr": //分子结构
  5989. _formdiv = new U.UF.UI.form(
  5990. "分子结构",
  5991. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5992. "id": "molStr",
  5993. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _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); } }
  5999. break;
  6000. case "timeAxis": //时间轴
  6001. _formdiv = new U.UF.UI.form(
  6002. "时间轴",
  6003. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6004. "id": "timeAxis",
  6005. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _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); } }
  6011. break;
  6012. case "AIprogram2": //AI体验
  6013. _formdiv = new U.UF.UI.form(
  6014. "AI体验",
  6015. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6016. "id": "AIprogram2",
  6017. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "Pythonprogram": //python编程
  6025. _formdiv = new U.UF.UI.form(
  6026. "Python编程",
  6027. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6028. "id": "Pythonprogram",
  6029. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "AIprogram": //ai编程
  6037. _formdiv = new U.UF.UI.form(
  6038. "AI编程平台",
  6039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6040. "id": "AIprogram",
  6041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "CocoPi": //CocoPi
  6049. _formdiv = new U.UF.UI.form(
  6050. "CocoPi",
  6051. $$("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" }), {
  6052. "id": "CocoPi",
  6053. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. case "Wood": //Wood
  6061. _formdiv = new U.UF.UI.form(
  6062. "海龟编程",
  6063. $$("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/" }), {
  6064. "id": "Wood",
  6065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //创建窗体
  6070. _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); } }
  6071. break;
  6072. case "car": //模拟驾驶
  6073. _formdiv = new U.UF.UI.form(
  6074. "模拟驾驶",
  6075. $$("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/" }), {
  6076. "id": "car",
  6077. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "lineSearch": //路径搜索
  6085. _formdiv = new U.UF.UI.form(
  6086. "路径搜索",
  6087. $$("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/" }), {
  6088. "id": "lineSearch",
  6089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. case "deepLearning": //深度学习
  6097. _formdiv = new U.UF.UI.form(
  6098. "深度学习",
  6099. $$("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/#" }), {
  6100. "id": "deepLearning",
  6101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _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); } }
  6107. break;
  6108. case "allHistory": //深度学习
  6109. _formdiv = new U.UF.UI.form(
  6110. "全历史",
  6111. $$("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/" }), {
  6112. "id": "allHistory",
  6113. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. case "chatPDF": //ai编程
  6121. _formdiv = new U.UF.UI.form(
  6122. "chatPDF",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6124. "id": "chatPDF",
  6125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _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); } }
  6131. break;
  6132. case "resources": //国家教育
  6133. _formdiv = new U.UF.UI.form(
  6134. "国家教育",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6136. "id": "resources",
  6137. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "codeEdit": //源码编辑
  6145. _formdiv = new U.UF.UI.form(
  6146. "源码编辑",
  6147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6148. "id": "codeEdit",
  6149. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break; //
  6156. case "MindMap": //MindMap
  6157. _formdiv = new U.UF.UI.form(
  6158. "MindMap",
  6159. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6160. "id": "MindMap",
  6161. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _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); } }
  6167. break;
  6168. case "netWorkPanel": //netWorkPanel
  6169. _formdiv = new U.UF.UI.form(
  6170. "netWorkPanel",
  6171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6172. "id": "netWorkPanel",
  6173. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "GeoGebra": //GeoGebra
  6181. _formdiv = new U.UF.UI.form(
  6182. "GeoGebra",
  6183. $$("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" }), {
  6184. "id": "GeoGebra",
  6185. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. _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); } }
  6191. break;
  6192. case "translation": //翻译
  6193. _formdiv = new U.UF.UI.form(
  6194. "翻译",
  6195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6196. "id": "translation",
  6197. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. case "mohe": //魔盒
  6205. _formdiv = new U.UF.UI.form(
  6206. "魔盒识字",
  6207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6208. "id": "mohe",
  6209. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //创建窗体
  6214. _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); } }
  6215. break;
  6216. case "24game": //24点
  6217. _formdiv = new U.UF.UI.form(
  6218. "24点",
  6219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6220. "id": "24game",
  6221. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //创建窗体
  6226. _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); } }
  6227. break;
  6228. case "case":
  6229. _formdiv = new U.UF.UI.form(
  6230. "课程进展",
  6231. $$("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 }), {
  6232. "id": "case",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _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); } }
  6239. break;
  6240. case "snf":
  6241. _formdiv = new U.UF.UI.form(
  6242. "赛诺梵",
  6243. $$("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" }), {
  6244. "id": "snf",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _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); } }
  6251. break;
  6252. case "hanFamily":
  6253. _formdiv = new U.UF.UI.form(
  6254. "汉字家族",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6256. "id": "hanFamily",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _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); } }
  6263. break;
  6264. case "hanClassics":
  6265. _formdiv = new U.UF.UI.form(
  6266. "国学经典",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6268. "id": "hanClassics",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _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); } }
  6275. break;
  6276. case "hanTraining":
  6277. _formdiv = new U.UF.UI.form(
  6278. "笔画训练",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6280. "id": "hanTraining",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _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); } }
  6287. break;
  6288. case "hanClass":
  6289. _formdiv = new U.UF.UI.form(
  6290. "书法课堂",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6292. "id": "hanClass",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _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); } }
  6299. break;
  6300. case "han":
  6301. _formdiv = new U.UF.UI.form(
  6302. "汉字宫",
  6303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6304. "id": "han",
  6305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _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); } }
  6311. break;
  6312. case "projectGM": //课程管理
  6313. _formdiv = new U.UF.UI.form(
  6314. "课程管理",
  6315. $$("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 }), {
  6316. "id": "projectGM",
  6317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //创建窗体
  6322. _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); } }
  6323. break;
  6324. case "studyGM": //课程中心
  6325. _formdiv = new U.UF.UI.form(
  6326. "课程中心",
  6327. $$("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
  6328. "id": "study",
  6329. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6330. "onresize": function () { }
  6331. }, {
  6332. closecallback: function () { }
  6333. }, { "style": { "height": "36px" } }).form; //创建窗体
  6334. _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); } }
  6335. break;
  6336. // studentGM
  6337. case "studentGM": //学生管理
  6338. _formdiv = new U.UF.UI.form(
  6339. "学生管理",
  6340. $$("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 }), {
  6341. "id": "studentGM",
  6342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _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); } }
  6348. break;
  6349. case "evaluateGM": //学生评价
  6350. _formdiv = new U.UF.UI.form(
  6351. "学生评价",
  6352. $$("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 }), {
  6353. "id": "evaluateGM",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. // classGM
  6362. case "classGM": //班级管理
  6363. _formdiv = new U.UF.UI.form(
  6364. "班级管理",
  6365. $$("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 }), {
  6366. "id": "classGM",
  6367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. _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); } }
  6373. break;
  6374. // dataGM
  6375. case "dataGM":
  6376. _formdiv = new U.UF.UI.form(
  6377. "我的资料",
  6378. $$("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 }), {
  6379. "id": "dataGM",
  6380. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _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); } }
  6386. break;
  6387. // caseGM
  6388. case "caseGM": //课程进展
  6389. _formdiv = new U.UF.UI.form(
  6390. "课程进展",
  6391. $$("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 }), {
  6392. "id": "caseGM",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. // meterialGM
  6401. case "meterialGM": //素材库
  6402. _formdiv = new U.UF.UI.form(
  6403. "素材库",
  6404. $$("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 }), {
  6405. "id": "meterialGM",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. // evaluateSGM
  6414. case "evaluateSGM": //我的评价
  6415. _formdiv = new U.UF.UI.form(
  6416. "我的评价",
  6417. $$("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 }), {
  6418. "id": "evaluateSGM",
  6419. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6420. "onresize": function () { }
  6421. }, {
  6422. closecallback: function () { }
  6423. }, { "style": { "height": "36px" } }).form; //创建窗体
  6424. _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); } }
  6425. break;
  6426. case "jupyter": //jupyter
  6427. _formdiv = new U.UF.UI.form(
  6428. "jupyter",
  6429. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6430. "id": "jupyter",
  6431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6432. "onresize": function () { }
  6433. }, {
  6434. closecallback: function () { }
  6435. }, { "style": { "height": "36px" } }).form; //创建窗体
  6436. _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); } }
  6437. break;
  6438. case "number": //数字实验室
  6439. _formdiv = new U.UF.UI.form(
  6440. "数字实验室",
  6441. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6442. "id": "number",
  6443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //创建窗体
  6448. _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); } }
  6449. break;
  6450. case "studentCourse": //项目管理 学生
  6451. _formdiv = new U.UF.UI.form(
  6452. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6453. $$("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 }), {
  6454. "id": "studentCourse",
  6455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //创建窗体
  6460. _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); } }
  6461. break;
  6462. case "studentCourseS": //项目管理 老师
  6463. _formdiv = new U.UF.UI.form(
  6464. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6465. $$("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 }), {
  6466. "id": "studentCourseS",
  6467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //创建窗体
  6472. _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); } }
  6473. break;
  6474. case "studentIndex": //项目中心
  6475. _formdiv = new U.UF.UI.form(
  6476. "项目中心",
  6477. $$("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 }), {
  6478. "id": "studentIndex",
  6479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6480. "onresize": function () { }
  6481. }, {
  6482. closecallback: function () { }
  6483. }, { "style": { "height": "36px" } }).form; //创建窗体
  6484. _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); } }
  6485. break;
  6486. case "CaseDesignS":
  6487. _formdiv = new U.UF.UI.form(
  6488. "项目进展",
  6489. $$("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 }), {
  6490. "id": "case",
  6491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6492. "onresize": function () { }
  6493. }, {
  6494. closecallback: function () { }
  6495. }, { "style": { "height": "36px" } }).form; //创建窗体
  6496. _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); } }
  6497. break;
  6498. case "tcStudent": //腾讯学生管理
  6499. _formdiv = new U.UF.UI.form(
  6500. "学生管理",
  6501. $$("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 }), {
  6502. "id": "tcStudent",
  6503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. _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); } }
  6509. break;
  6510. case "tcSchool": //腾讯学校管理
  6511. _formdiv = new U.UF.UI.form(
  6512. "学校管理",
  6513. $$("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 }), {
  6514. "id": "tcSchool",
  6515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _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); } }
  6521. break;
  6522. case "tcTeacher": //腾讯学校管理
  6523. _formdiv = new U.UF.UI.form(
  6524. "教师管理",
  6525. $$("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 }), {
  6526. "id": "tcTeacher",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "teacher":
  6535. _formdiv = new U.UF.UI.form(
  6536. "教师管理",
  6537. $$("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 }), {
  6538. "id": "teacher",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "tcData": //腾讯我的资料
  6547. _formdiv = new U.UF.UI.form(
  6548. "我的资料",
  6549. $$("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 }), {
  6550. "id": "tcData",
  6551. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "tcNotice": //腾讯消息通知
  6559. _formdiv = new U.UF.UI.form(
  6560. "消息通知",
  6561. $$("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 }), {
  6562. "id": "tcNotice",
  6563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "myReport": //好友打开
  6571. _formdiv = new U.UF.UI.form(
  6572. "我的评价",
  6573. $$("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 }), {
  6574. "id": "myReport",
  6575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "learnAna": //好友打开
  6583. _formdiv = new U.UF.UI.form(
  6584. "学习分析",
  6585. $$("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 }), {
  6586. "id": "learnAna",
  6587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "AIChat": //AI共创
  6595. _formdiv = new U.UF.UI.form(
  6596. "AI共创",
  6597. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6598. "id": "AIChat",
  6599. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. istop: true,
  6603. closecallback: function () { $("#aichat_icon").remove(); },
  6604. narrowcallback: function () {
  6605. if (!$("#aichat_icon")[0]) {
  6606. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6607. }
  6608. },
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _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); } }
  6611. break;
  6612. case "ainew": //AI共创
  6613. _formdiv = new U.UF.UI.form(
  6614. "AI协同",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6616. "id": "ainew",
  6617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. break;
  6624. case "gpt4": //gpt4
  6625. _formdiv = new U.UF.UI.form(
  6626. "AI助手",
  6627. $$("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 }), {
  6628. "id": "gpt4",
  6629. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "aigpt": //gpt4
  6637. _formdiv = new U.UF.UI.form(
  6638. "AI助手+",
  6639. $$("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 }), {
  6640. "id": "aigpt",
  6641. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () {
  6645. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6646. }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6650. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6651. })
  6652. break;
  6653. case "aiKnowledge": //aiKnowledge
  6654. _formdiv = new U.UF.UI.form(
  6655. "知识建构",
  6656. $$("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 }), {
  6657. "id": "aiKnowledge",
  6658. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _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); } }
  6664. break;
  6665. case "futureClass": //AI共创
  6666. _formdiv = new U.UF.UI.form(
  6667. "协同建构",
  6668. $$("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
  6669. "id": "synergyCourse",
  6670. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () {
  6674. $("iframe", _formdiv)[0].contentWindow.loginout();
  6675. }
  6676. }, { "style": { "height": "36px" } }).form; //创建窗体
  6677. _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); } }
  6678. break;
  6679. case "aiagent": //ai agent
  6680. _formdiv = new U.UF.UI.form(
  6681. "AI Agent",
  6682. $$("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" }), {
  6683. "id": "AIAgent",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { }
  6686. }, {
  6687. closecallback: function () { }
  6688. }, { "style": { "height": "36px" } }).form; //创建窗体
  6689. _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); } }
  6690. break;
  6691. case "dataBoard": //数据看板
  6692. _formdiv = new U.UF.UI.form(
  6693. "数据看板",
  6694. $$("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 }), {
  6695. "id": "dataBoard",
  6696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6697. "onresize": function () { }
  6698. }, {
  6699. closecallback: function () { }
  6700. }, { "style": { "height": "36px" } }).form; //创建窗体
  6701. _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); } }
  6702. break;
  6703. case "dataBoardSies": //数据融合
  6704. _formdiv = new U.UF.UI.form(
  6705. "数据融合",
  6706. $$("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 }), {
  6707. "id": "dataBoardSies",
  6708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6709. "onresize": function () { }
  6710. }, {
  6711. closecallback: function () { }
  6712. }, { "style": { "height": "36px" } }).form; //创建窗体
  6713. _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); } }
  6714. break;
  6715. case "dataBoardNew": //数据看板
  6716. _formdiv = new U.UF.UI.form(
  6717. "综合看板",
  6718. $$("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 }), {
  6719. "id": "dataBoardNew",
  6720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6721. "onresize": function () { }
  6722. }, {
  6723. closecallback: function () { }
  6724. }, { "style": { "height": "36px" } }).form; //创建窗体
  6725. _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); } }
  6726. break;
  6727. case "dataBoardTest": //数据看板
  6728. _formdiv = new U.UF.UI.form(
  6729. "评测看板",
  6730. $$("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 }), {
  6731. "id": "dataBoardTest",
  6732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. _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); } }
  6738. break;
  6739. case "AIAnalyse": //AI共创
  6740. _formdiv = new U.UF.UI.form(
  6741. "AI分析",
  6742. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6743. "id": "AIAnalyse",
  6744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6745. "onresize": function () { }
  6746. }, {
  6747. closecallback: function () { }
  6748. }, { "style": { "height": "36px" } }).form; //创建窗体
  6749. _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); } }
  6750. break;
  6751. case "studioCourse": //AI共创
  6752. _formdiv = new U.UF.UI.form(
  6753. "工作管理",
  6754. $$("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 }), {
  6755. "id": "studioCourse",
  6756. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //创建窗体
  6761. _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); } }
  6762. break;
  6763. case "studioIndex": //AI共创
  6764. _formdiv = new U.UF.UI.form(
  6765. "工作中心",
  6766. $$("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 }), {
  6767. "id": "studioIndex",
  6768. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6769. "onresize": function () { }
  6770. }, {
  6771. closecallback: function () { }
  6772. }, { "style": { "height": "36px" } }).form; //创建窗体
  6773. _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); } }
  6774. break;
  6775. case "source":
  6776. _formdiv = new U.UF.UI.form(
  6777. "教学资源",
  6778. $$("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 }), {
  6779. "id": "source",
  6780. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6781. "onresize": function () { }
  6782. }, {
  6783. closecallback: function () { }
  6784. }, { "style": { "height": "36px" } }).form; //创建窗体
  6785. _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); } }
  6786. break;
  6787. case "testTeacher":
  6788. _formdiv = new U.UF.UI.form(
  6789. "智能表单",
  6790. $$("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 }), {
  6791. "id": "testTeacher",
  6792. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //创建窗体
  6797. _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); } }
  6798. break;
  6799. case "testStudent":
  6800. _formdiv = new U.UF.UI.form(
  6801. "教师中心",
  6802. $$("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 }), {
  6803. "id": "testStudent",
  6804. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //创建窗体
  6809. _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); } }
  6810. break;
  6811. case "testTeacherSies":
  6812. _formdiv = new U.UF.UI.form(
  6813. "教师管理",
  6814. $$("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 }), {
  6815. "id": "testTeacherSies",
  6816. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _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); } }
  6822. break;
  6823. case "testStudentSies":
  6824. _formdiv = new U.UF.UI.form(
  6825. "教师中心",
  6826. $$("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 }), {
  6827. "id": "testStudentSies",
  6828. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6829. "onresize": function () { }
  6830. }, {
  6831. closecallback: function () { }
  6832. }, { "style": { "height": "36px" } }).form; //创建窗体
  6833. _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); } }
  6834. break;
  6835. case "ytpbl": //消息通知
  6836. _formdiv = new U.UF.UI.form(
  6837. "案例征集",
  6838. $$("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 }), {
  6839. "id": "ytpbl",
  6840. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6841. "onresize": function () { }
  6842. }, {
  6843. closecallback: function () { }
  6844. }, { "style": { "height": "36px" } }).form; //创建窗体
  6845. _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); } }
  6846. // 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");
  6847. break;
  6848. case "aiCourseResource": //人工智能窗体
  6849. _formdiv = new U.UF.UI.form(
  6850. false,
  6851. $$("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 }), {
  6852. "id": "aiCourseResource",
  6853. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6854. "onresize": function () { },
  6855. "isdrag": false,
  6856. }, {
  6857. closecallback: function () { }
  6858. }, { "style": { "height": "36px" } }).form; //创建窗体
  6859. _taskbar = ''
  6860. break;
  6861. case "szdjgCocooroboX": //图形化编程
  6862. _formdiv = new U.UF.UI.form(
  6863. "图形化编程",
  6864. $$("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" }), {
  6865. "id": "szdjgCocooroboX",
  6866. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //创建窗体
  6871. _taskbar = ''
  6872. break;
  6873. case "szdjgPython": //python编程
  6874. _formdiv = new U.UF.UI.form(
  6875. "Python编程",
  6876. $$("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" }), {
  6877. "id": "szdjgPython",
  6878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, { "style": { "height": "36px" } }).form; //创建窗体
  6883. _taskbar = ''
  6884. break;
  6885. case "Record":
  6886. _formdiv = new U.UF.UI.form(
  6887. "观察记录",
  6888. $$("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 }), {
  6889. "id": "Record",
  6890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6891. "onresize": function () { }
  6892. }, {
  6893. closecallback: function () { }
  6894. }, { "style": { "height": "36px" } }).form; //创建窗体
  6895. _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); } }
  6896. break;
  6897. case "aigptCourse":
  6898. _formdiv = new U.UF.UI.form(
  6899. "AI智能体",
  6900. $$("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' }), {
  6901. "id": "aigptCourse",
  6902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6903. "onresize": function () { }
  6904. }, {
  6905. closecallback: function () { }
  6906. }, { "style": { "height": "36px" } }).form; //创建窗体
  6907. _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); } }
  6908. break;
  6909. case "classroomObservation":
  6910. _formdiv = new U.UF.UI.form(
  6911. "课堂观察",
  6912. $$("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 }), {
  6913. "id": "classroomObservation",
  6914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, { "style": { "height": "36px" } }).form; //创建窗体
  6919. _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); } }
  6920. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6921. break;
  6922. case "pblCourse":
  6923. _formdiv = new U.UF.UI.form(
  6924. "学生PBL",
  6925. $$("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 }), {
  6926. "id": "pblCourse",
  6927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6928. "onresize": function () { }
  6929. }, {
  6930. closecallback: function () { }
  6931. }, { "style": { "height": "36px" } }).form; //创建窗体
  6932. _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); } }
  6933. break;
  6934. case "appStore":
  6935. _formdiv = new U.UF.UI.form(
  6936. "CocoFlow",
  6937. $$("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 }), {
  6938. "id": "pblCourse",
  6939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6940. "onresize": function () { }
  6941. }, {
  6942. closecallback: function () { }
  6943. }, { "style": { "height": "36px" } }).form; //创建窗体
  6944. _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); } }
  6945. break;
  6946. case "userExamine":
  6947. _formdiv = new U.UF.UI.form(
  6948. "账号申请",
  6949. $$("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" }), {
  6950. "id": "userExamine",
  6951. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, { "style": { "height": "36px" } }).form; //创建窗体
  6956. break;
  6957. }
  6958. //U.MD.D.I.openClick(str);
  6959. //如果有任务栏信息
  6960. if (_taskbar) {
  6961. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6962. }
  6963. }
  6964. // U.MD.D.I.openClick = function(str){
  6965. // var click = '';
  6966. // switch(str){
  6967. // case 'friend':
  6968. // click = '我的好友';
  6969. // break;
  6970. // case 'domain':
  6971. // click = '域名管理';
  6972. // break;
  6973. // case 'disk':
  6974. // click = '我的云盘';
  6975. // break;
  6976. // case 'word':
  6977. // click = 'Word';
  6978. // break;
  6979. // case 'excel':
  6980. // click = 'Execl';
  6981. // break;
  6982. // case 'txt':
  6983. // click = '文本文件';
  6984. // break;
  6985. // case 'lookupFriend':
  6986. // click = '查找好友';
  6987. // break;
  6988. // case 'ftp':
  6989. // click = 'FTP';
  6990. // break;
  6991. // case 'group':
  6992. // click = '群组';
  6993. // break;
  6994. // case 'set':
  6995. // click = '我的设置';
  6996. // break;
  6997. // case 'systemSet':
  6998. // click = '系统设置';
  6999. // break;
  7000. // case 'boomYun':
  7001. // click = '互联办公';
  7002. // break;
  7003. // case 'xz':
  7004. // click = '云端下载';
  7005. // break;
  7006. // case 'client':
  7007. // click = '有思浏览器';
  7008. // break;
  7009. // case 'backEndProgramming':
  7010. // click = '在线后台编程';
  7011. // break;
  7012. // case 'frontEndProgramming':
  7013. // click = '在线前端编程';
  7014. // break;
  7015. // default: break;
  7016. // }
  7017. // if(U.MD.D.I.Ip && click){
  7018. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7019. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7020. // })
  7021. // }
  7022. // }
  7023. /**
  7024. *函数作用:ajax简易函数,使用post格式
  7025. *@param url {data} 后台地址
  7026. *@param data {data} 参数json
  7027. *@param fn {data} 回调函数
  7028. *
  7029. */
  7030. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7031. // var xhr = new XMLHttpRequest();
  7032. // xhr.open("GET",url,true);
  7033. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7034. // xhr.onreadystatechange = function(){
  7035. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7036. // fn.call(this,xhr.responseText);
  7037. // }
  7038. // };
  7039. // xhr.send();
  7040. // }
  7041. /*判断是否是内网IP*/
  7042. // U.MD.D.I.isInnerIPFn = function(str){
  7043. // var curPageUrl = str;
  7044. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7045. // curPageUrl =curPageUrl.replace(reg1,'');
  7046. // // console.log('curPageUrl-1 '+curPageUrl);
  7047. // var reg2 = /\:+/g;//替换冒号为一点
  7048. // curPageUrl =curPageUrl.replace(reg2,'.');
  7049. // // console.log('curPageUrl-2 '+curPageUrl);
  7050. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7051. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7052. // if(curPageUrl[2] != '16'){
  7053. // return ipAddress;
  7054. // }else{
  7055. // return false;
  7056. // }
  7057. // }
  7058. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7059. // //compatibility for firefox and chrome
  7060. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7061. // var pc = new myPeerConnection({
  7062. // iceServers: []
  7063. // }),
  7064. // noop = function() {},
  7065. // localIPs = {},
  7066. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7067. // key;
  7068. // function iterateIP(ip) {
  7069. // if (!localIPs[ip]) onNewIP(ip);
  7070. // localIPs[ip] = true;
  7071. // }
  7072. // //create a bogus data channel
  7073. // pc.createDataChannel("");
  7074. // // create offer and set local description
  7075. // pc.createOffer().then(function(sdp) {
  7076. // sdp.sdp.split('\n').forEach(function(line) {
  7077. // if (line.indexOf('candidate') < 0) return;
  7078. // line.match(ipRegex).forEach(iterateIP);
  7079. // });
  7080. // pc.setLocalDescription(sdp, noop, noop);
  7081. // }).catch(function(reason) {
  7082. // // An error occurred, so handle the failure to connect
  7083. // });
  7084. // //sten for candidate events
  7085. // pc.onicecandidate = function(ice) {
  7086. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7087. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7088. // };
  7089. // }
  7090. // U.MD.D.I.getUserIpBool = function(callback){
  7091. // U.MD.D.I.getUserIP(function(ip){
  7092. // alert("Got IP! :" + ip);
  7093. // });
  7094. //}
  7095. //#endregion
  7096. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7097. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7098. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7099. _userinfo = US.userInfo, //登录用户信息
  7100. _userid = US.userInfo.userid //登录用户id
  7101. let _iframe;
  7102. let _cid = cid,
  7103. _stage = stage,
  7104. _task = task,
  7105. _tool = tool;
  7106. var _jie = $$("div", {
  7107. "style": {
  7108. "position": "absolute",
  7109. "bottom": "50px",
  7110. "right": "50px",
  7111. "zIndex": "9999",
  7112. "backgroundColor": "#2268bc",
  7113. "color": "#fff",
  7114. "padding": "12px 20px",
  7115. "cursor": "pointer",
  7116. "borderRadius": "4px",
  7117. },
  7118. "innerHTML": "提交作业"
  7119. })
  7120. let aTool = ''
  7121. let _loading = document.createElement('div')
  7122. _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;"
  7123. // _loading.id = "";
  7124. let _lchild = document.createElement('div')
  7125. let _limg = document.createElement('img')
  7126. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7127. _limg.style = "width: 26px;margin-right: 10px;"
  7128. _lchild.appendChild(_limg)
  7129. let _lspan = document.createElement('span')
  7130. _lspan.innerHTML = "上传中..."
  7131. _lchild.appendChild(_lspan)
  7132. _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%);"
  7133. _loading.appendChild(_lchild)
  7134. var _box = $$('div', {
  7135. "style": {
  7136. "position": "relative",
  7137. "width": "100%",
  7138. "height": "100%",
  7139. },
  7140. })
  7141. _box.appendChild(_loading)
  7142. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7143. switch (str) {
  7144. case "whiteboard":
  7145. aTool = 1;
  7146. _iframe = $$("iframe", {
  7147. "frameborder": "no",
  7148. "border": "0",
  7149. "scrolling ": "no",
  7150. "style": {
  7151. "cssText": "border:0;width:100%;height:100%"
  7152. },
  7153. "src": "https://beta.iwb.cocorobo.cn/"
  7154. })
  7155. _box.appendChild(_iframe);
  7156. _box.appendChild(_jie);
  7157. _formdiv = new U.UF.UI.form(
  7158. "电子白板",
  7159. _box, {
  7160. "id": "whiteboard" + cid + stage + task + tool,
  7161. "style": {
  7162. "width": "90%",
  7163. "height": "90%",
  7164. "overflow": 'hidden'
  7165. },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, {
  7170. "style": {
  7171. "height": "36px"
  7172. }
  7173. }).form; //创建窗体
  7174. _taskbar = {
  7175. "id": str + _formdiv.id,
  7176. "style": {
  7177. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7178. },
  7179. "name": "电子白板",
  7180. "forms": _formdiv,
  7181. "click": function () {
  7182. U.MD.D.I.openApplication(str, obj, info);
  7183. }
  7184. }
  7185. break;
  7186. case "mind":
  7187. aTool = 3;
  7188. _iframe = $$("iframe", {
  7189. "frameborder": "no",
  7190. "border": "0",
  7191. "scrolling ": "no",
  7192. "style": {
  7193. "cssText": "border:0;width:100%;height:100%"
  7194. },
  7195. "src": "/kityminder-editor/dist/index.html"
  7196. })
  7197. _box.appendChild(_iframe);
  7198. _box.appendChild(_jie);
  7199. _formdiv = new U.UF.UI.form(
  7200. "思维导图",
  7201. _box, { //"/jsmind/example/demo.html"
  7202. "id": "mind" + cid + stage + task + tool,
  7203. "style": {
  7204. "width": "90%",
  7205. "height": "90%",
  7206. "overflow": 'hidden'
  7207. },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, {
  7212. "style": {
  7213. "height": "36px"
  7214. }
  7215. }).form; //创建窗体
  7216. _taskbar = {
  7217. "id": str + _formdiv.id,
  7218. "style": {
  7219. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7220. },
  7221. "name": "思维导图",
  7222. "forms": _formdiv,
  7223. "click": function () {
  7224. U.MD.D.I.openApplication(str, obj, info);
  7225. }
  7226. }
  7227. break;
  7228. case "MindMap":
  7229. aTool = 3;
  7230. _iframe = $$("iframe", {
  7231. "frameborder": "no",
  7232. "border": "0",
  7233. "scrolling ": "no",
  7234. "style": {
  7235. "cssText": "border:0;width:100%;height:100%"
  7236. },
  7237. "src": "//cloud.cocorobo.cn/mind/"
  7238. })
  7239. _box.appendChild(_iframe);
  7240. _box.appendChild(_jie);
  7241. _formdiv = new U.UF.UI.form(
  7242. "思维导图",
  7243. _box, { //"/jsmind/example/demo.html"
  7244. "id": "mind" + cid + stage + task + tool,
  7245. "style": {
  7246. "width": "90%",
  7247. "height": "90%",
  7248. "overflow": 'hidden'
  7249. },
  7250. "onresize": function () { }
  7251. }, {
  7252. closecallback: function () { }
  7253. }, {
  7254. "style": {
  7255. "height": "36px"
  7256. }
  7257. }).form; //创建窗体
  7258. _taskbar = {
  7259. "id": str + _formdiv.id,
  7260. "style": {
  7261. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7262. },
  7263. "name": "思维导图",
  7264. "forms": _formdiv,
  7265. "click": function () {
  7266. U.MD.D.I.openApplication(str, obj, info);
  7267. }
  7268. }
  7269. break;
  7270. case "doc":
  7271. aTool = 6;
  7272. _iframe = $$("iframe", {
  7273. "frameborder": "no",
  7274. "border": "0",
  7275. "scrolling ": "no",
  7276. "style": {
  7277. "cssText": "border:0;width:100%;height:100%"
  7278. },
  7279. "src": "/Office/Word/WordEditArea.htm"
  7280. })
  7281. _box.appendChild(_iframe);
  7282. _box.appendChild(_jie);
  7283. _formdiv = new U.UF.UI.form(
  7284. "协同文档",
  7285. _box, {
  7286. "id": "doc" + cid + stage + task + tool,
  7287. "style": {
  7288. "width": "90%",
  7289. "height": "90%",
  7290. "overflow": 'hidden'
  7291. },
  7292. "onresize": function () { }
  7293. }, {
  7294. closecallback: function () { }
  7295. }, {
  7296. "style": {
  7297. "height": "36px"
  7298. }
  7299. }).form; //创建窗体
  7300. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7301. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7302. })
  7303. _taskbar = {
  7304. "id": str + _formdiv.id,
  7305. "style": {
  7306. "backgroundImage": "url(/img/icon/doc.png)"
  7307. },
  7308. "name": "协同文档",
  7309. "forms": _formdiv,
  7310. "click": function () {
  7311. U.MD.D.I.openApplication(str, obj, info);
  7312. }
  7313. }
  7314. break;
  7315. case "mindNetwork": //好友打开
  7316. aTool = 7;
  7317. _iframe = $$("iframe", {
  7318. "webkitallowfullscreen": "",
  7319. "mozallowfullscreen": "",
  7320. "allowfullscreen": "",
  7321. "frameborder": "no",
  7322. "border": "0",
  7323. "scrolling ": "no",
  7324. "style": {
  7325. "cssText": "border:0; width:100%; height:100%;"
  7326. },
  7327. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7328. })
  7329. _box.appendChild(_iframe);
  7330. _box.appendChild(_jie);
  7331. _formdiv = new U.UF.UI.form(
  7332. "思维网格",
  7333. _box, {
  7334. "id": "mindNetwork" + cid + stage + task + tool,
  7335. "style": {
  7336. "width": "90%",
  7337. "height": "90%",
  7338. "overflow": 'hidden'
  7339. },
  7340. "onresize": function () { }
  7341. }, {
  7342. closecallback: function () { }
  7343. }, {
  7344. "style": {
  7345. "height": "36px"
  7346. }
  7347. }).form; //创建窗体
  7348. _taskbar = {
  7349. "id": str + _formdiv.id,
  7350. "style": {
  7351. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7352. },
  7353. "name": "思维网格",
  7354. "forms": _formdiv,
  7355. "click": function () {
  7356. U.MD.D.I.openApplication(str, obj, info);
  7357. }
  7358. }
  7359. break;
  7360. case "courseDesign":
  7361. _iframe = $$("iframe", {
  7362. "webkitallowfullscreen": "",
  7363. "mozallowfullscreen": "",
  7364. "allowfullscreen": "",
  7365. "frameborder": "no",
  7366. "border": "0",
  7367. "scrolling ": "no",
  7368. "style": {
  7369. "cssText": "border:0; width:100%; height:100%;"
  7370. },
  7371. "src": "/course-design-vue"
  7372. })
  7373. _box.appendChild(_iframe);
  7374. _box.appendChild(_jie);
  7375. _formdiv = new U.UF.UI.form(
  7376. "项目设计",
  7377. _box, {
  7378. "id": "courseDesign" + cid + stage + task + tool,
  7379. "style": {
  7380. "width": "90%",
  7381. "height": "90%",
  7382. "overflow": 'hidden'
  7383. },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, {
  7388. "style": {
  7389. "height": "36px"
  7390. }
  7391. }).form; //创建窗体
  7392. _taskbar = {
  7393. "id": str + _formdiv.id,
  7394. "style": {
  7395. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7396. },
  7397. "name": "项目设计",
  7398. "forms": _formdiv,
  7399. "click": function () {
  7400. U.MD.D.I.openApplication(str, obj, info);
  7401. }
  7402. }
  7403. break;
  7404. }
  7405. const script1 = document.createElement("script");
  7406. script1.type = "text/javascript";
  7407. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7408. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7409. const script2 = document.createElement("script");
  7410. script2.type = "text/javascript";
  7411. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7412. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7413. const script3 = document.createElement("script");
  7414. script3.type = "text/javascript";
  7415. script3.charset = "UTF-8";
  7416. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7417. const script4 = document.createElement("script");
  7418. script4.type = "text/javascript";
  7419. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7420. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7421. if (_iframe) {
  7422. if (str == 'doc') {
  7423. _iframe = _formdiv.querySelector('iframe')
  7424. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7425. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7426. _iframe.contentWindow.document.body.appendChild(script1);
  7427. _iframe.contentWindow.document.body.appendChild(script2);
  7428. // _iframe.contentWindow.document.body.appendChild(script3);
  7429. _iframe.contentWindow.document.body.appendChild(script4);
  7430. })
  7431. if (onloadListener) {
  7432. _iframe.contentDocument.location.reload()
  7433. } else {
  7434. _iframe.contentDocument.location.reload()
  7435. }
  7436. } else if (str == 'courseDesign') {
  7437. U.UF.DL.iframeLoad(_iframe, function () {
  7438. // _iframe.contentWindow.U.MD.O.W.load();
  7439. // _iframe.contentWindow.document.body.appendChild(script1);
  7440. _iframe.contentWindow.document.body.appendChild(script2);
  7441. _iframe.contentWindow.document.body.appendChild(script4);
  7442. })
  7443. } else if (str == 'mind') {
  7444. _iframe = _formdiv.querySelector('iframe')
  7445. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7446. //
  7447. _iframe.contentWindow.document.body.appendChild(script1);
  7448. _iframe.contentWindow.document.body.appendChild(script2);
  7449. _iframe.contentWindow.document.body.appendChild(script4);
  7450. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7451. })
  7452. if (onloadListener) {
  7453. _iframe.contentDocument.location.reload()
  7454. } else {
  7455. _iframe.contentDocument.location.reload()
  7456. }
  7457. } else if (str == 'whiteboard') {
  7458. _iframe = _formdiv.querySelector('iframe')
  7459. let onloadListener = _iframe.onload = () => {
  7460. _iframe.contentWindow.document.body.appendChild(script1);
  7461. _iframe.contentWindow.document.body.appendChild(script2);
  7462. _iframe.contentWindow.document.body.appendChild(script4);
  7463. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7464. };
  7465. // if (onloadListener) {
  7466. // try {
  7467. // _iframe.src += "?cocorobo="+new Date().getTime()
  7468. // _iframe.contentWindow.document.location.reload()
  7469. // } catch (error) {
  7470. // }
  7471. // } else {
  7472. // _iframe.contentDocument.location.reload()
  7473. // }
  7474. } else {
  7475. _iframe.onload = () => {
  7476. _iframe.contentWindow.document.body.appendChild(script1);
  7477. _iframe.contentWindow.document.body.appendChild(script2);
  7478. // _iframe.contentWindow.document.body.appendChild(script3);
  7479. _iframe.contentWindow.document.body.appendChild(script4);
  7480. };
  7481. }
  7482. _jie.onclick = async () => {
  7483. let text = ''
  7484. if (aTool == 1) {
  7485. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7486. } else if (aTool == 6) {
  7487. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7488. } else if (aTool == 3) {
  7489. text = await U.MD.D.I.getEditorContent(_iframe);
  7490. }
  7491. _loading.style.display = 'flex'
  7492. console.log(_loading);
  7493. var _ajs = _iframe.contentWindow.document.createElement("script");
  7494. _ajs.type = "text/javascript";
  7495. _ajs.innerHTML =
  7496. // 'console.log(' + _loading + ');\n' +
  7497. 'var _js = document.createElement("script");\n' +
  7498. '_js.type="text/javascript";\n' +
  7499. '_js.charset="UTF-8";\n' +
  7500. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7501. "_js.onload = function(){\n" +
  7502. ' var a = document.getElementsByTagName("img")\n' +
  7503. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7504. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7505. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7506. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7507. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7508. "beforeUpload_shishi(file," +
  7509. "'" +
  7510. _userid +
  7511. "'" +
  7512. ", " +
  7513. "'" +
  7514. _cid +
  7515. "'" +
  7516. ", " +
  7517. "'" +
  7518. _stage +
  7519. "'" +
  7520. ", " +
  7521. "'" +
  7522. _task +
  7523. "'" +
  7524. ", " +
  7525. "'" +
  7526. _tool +
  7527. "'" +
  7528. ", " +
  7529. "'" +
  7530. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7531. "'" +
  7532. ", " +
  7533. "'" +
  7534. aTool +
  7535. "'" +
  7536. ", " +
  7537. "`" +
  7538. text +
  7539. "`" +
  7540. ")\n" +
  7541. " });\n" +
  7542. "}\n" +
  7543. "document.head.appendChild(_js);\n";
  7544. _iframe.contentWindow.document.head.appendChild(_ajs);
  7545. }
  7546. }
  7547. //U.MD.D.I.openClick(str);
  7548. //如果有任务栏信息
  7549. // if (_taskbar) {
  7550. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7551. // }
  7552. }
  7553. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7554. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7555. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7556. _userinfo = US.userInfo, //登录用户信息
  7557. _userid = US.userInfo.userid //登录用户id
  7558. let _iframe;
  7559. let _cid = cid,
  7560. _stage = stage,
  7561. _task = task,
  7562. _tool = tool;
  7563. var _jie = $$("div", {
  7564. "style": {
  7565. "position": "absolute",
  7566. "bottom": "50px",
  7567. "right": "50px",
  7568. "zIndex": "9999",
  7569. "backgroundColor": "#2268bc",
  7570. "color": "#fff",
  7571. "padding": "12px 20px",
  7572. "cursor": "pointer",
  7573. "borderRadius": "4px",
  7574. },
  7575. "innerHTML": "提交作业"
  7576. })
  7577. let aTool = ''
  7578. let _loading = document.createElement('div')
  7579. _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;"
  7580. // _loading.id = "";
  7581. let _lchild = document.createElement('div')
  7582. let _limg = document.createElement('img')
  7583. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7584. _limg.style = "width: 26px;margin-right: 10px;"
  7585. _lchild.appendChild(_limg)
  7586. let _lspan = document.createElement('span')
  7587. _lspan.innerHTML = "上传中..."
  7588. _lchild.appendChild(_lspan)
  7589. _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%);"
  7590. _loading.appendChild(_lchild)
  7591. let _box = $$('div', {
  7592. "style": {
  7593. "position": "relative",
  7594. "width": "100%",
  7595. "height": "100%",
  7596. },
  7597. })
  7598. _box.appendChild(_loading)
  7599. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7600. switch (str) {
  7601. case "whiteboard":
  7602. aTool = 1;
  7603. _iframe = $$("iframe", {
  7604. "frameborder": "no",
  7605. "border": "0",
  7606. "scrolling ": "no",
  7607. "style": {
  7608. "cssText": "border:0;width:100%;height:100%"
  7609. },
  7610. "src": "https://beta.iwb.cocorobo.cn/"
  7611. })
  7612. _box.appendChild(_iframe);
  7613. _box.appendChild(_jie);
  7614. _formdiv = new U.UF.UI.form(
  7615. "电子白板",
  7616. _box, {
  7617. "id": "whiteboard" + cid + stage + task + tool,
  7618. "style": {
  7619. "width": "90%",
  7620. "height": "90%",
  7621. "overflow": 'hidden'
  7622. },
  7623. "onresize": function () { }
  7624. }, {
  7625. closecallback: function () { }
  7626. }, {
  7627. "style": {
  7628. "height": "36px"
  7629. }
  7630. }).form; //创建窗体
  7631. _taskbar = {
  7632. "id": str + _formdiv.id,
  7633. "style": {
  7634. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7635. },
  7636. "name": "电子白板",
  7637. "forms": _formdiv,
  7638. "click": function () {
  7639. U.MD.D.I.openApplication(str, obj, info);
  7640. }
  7641. }
  7642. break;
  7643. case "mind":
  7644. aTool = 3;
  7645. _iframe = $$("iframe", {
  7646. "frameborder": "no",
  7647. "border": "0",
  7648. "scrolling ": "no",
  7649. "style": {
  7650. "cssText": "border:0;width:100%;height:100%"
  7651. },
  7652. "src": "/kityminder-editor/dist/index.html"
  7653. })
  7654. _box.appendChild(_iframe);
  7655. _box.appendChild(_jie);
  7656. _formdiv = new U.UF.UI.form(
  7657. "思维导图",
  7658. _box, { //"/jsmind/example/demo.html"
  7659. "id": "mind" + cid + stage + task + tool,
  7660. "style": {
  7661. "width": "90%",
  7662. "height": "90%",
  7663. "overflow": 'hidden'
  7664. },
  7665. "onresize": function () { }
  7666. }, {
  7667. closecallback: function () { }
  7668. }, {
  7669. "style": {
  7670. "height": "36px"
  7671. }
  7672. }).form; //创建窗体
  7673. _taskbar = {
  7674. "id": str + _formdiv.id,
  7675. "style": {
  7676. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7677. },
  7678. "name": "思维导图",
  7679. "forms": _formdiv,
  7680. "click": function () {
  7681. U.MD.D.I.openApplication(str, obj, info);
  7682. }
  7683. }
  7684. break;
  7685. case "MindMap":
  7686. aTool = 3;
  7687. _iframe = $$("iframe", {
  7688. "frameborder": "no",
  7689. "border": "0",
  7690. "scrolling ": "no",
  7691. "style": {
  7692. "cssText": "border:0;width:100%;height:100%"
  7693. },
  7694. "src": "//cloud.cocorobo.cn/mind/"
  7695. })
  7696. _box.appendChild(_iframe);
  7697. _box.appendChild(_jie);
  7698. _formdiv = new U.UF.UI.form(
  7699. "思维导图",
  7700. _box, { //"/jsmind/example/demo.html"
  7701. "id": "mind" + cid + stage + task + tool,
  7702. "style": {
  7703. "width": "90%",
  7704. "height": "90%",
  7705. "overflow": 'hidden'
  7706. },
  7707. "onresize": function () { }
  7708. }, {
  7709. closecallback: function () { }
  7710. }, {
  7711. "style": {
  7712. "height": "36px"
  7713. }
  7714. }).form; //创建窗体
  7715. _taskbar = {
  7716. "id": str + _formdiv.id,
  7717. "style": {
  7718. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7719. },
  7720. "name": "思维导图",
  7721. "forms": _formdiv,
  7722. "click": function () {
  7723. U.MD.D.I.openApplication(str, obj, info);
  7724. }
  7725. }
  7726. break;
  7727. case "doc":
  7728. aTool = 6;
  7729. _iframe = $$("iframe", {
  7730. "frameborder": "no",
  7731. "border": "0",
  7732. "scrolling ": "no",
  7733. "style": {
  7734. "cssText": "border:0;width:100%;height:100%"
  7735. },
  7736. "src": "/Office/Word/WordEditArea.htm"
  7737. })
  7738. _box.appendChild(_iframe);
  7739. _box.appendChild(_jie);
  7740. _formdiv = new U.UF.UI.form(
  7741. "协同文档",
  7742. _box, {
  7743. "id": "doc" + cid + stage + task + tool,
  7744. "style": {
  7745. "width": "90%",
  7746. "height": "90%",
  7747. "overflow": 'hidden'
  7748. },
  7749. "onresize": function () { }
  7750. }, {
  7751. closecallback: function () { }
  7752. }, {
  7753. "style": {
  7754. "height": "36px"
  7755. }
  7756. }).form; //创建窗体
  7757. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7758. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7759. })
  7760. _taskbar = {
  7761. "id": str + _formdiv.id,
  7762. "style": {
  7763. "backgroundImage": "url(/img/icon/doc.png)"
  7764. },
  7765. "name": "协同文档",
  7766. "forms": _formdiv,
  7767. "click": function () {
  7768. U.MD.D.I.openApplication(str, obj, info);
  7769. }
  7770. }
  7771. break;
  7772. case "mindNetwork": //好友打开
  7773. aTool = 7;
  7774. _iframe = $$("iframe", {
  7775. "webkitallowfullscreen": "",
  7776. "mozallowfullscreen": "",
  7777. "allowfullscreen": "",
  7778. "frameborder": "no",
  7779. "border": "0",
  7780. "scrolling ": "no",
  7781. "style": {
  7782. "cssText": "border:0; width:100%; height:100%;"
  7783. },
  7784. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7785. })
  7786. _box.appendChild(_iframe);
  7787. _box.appendChild(_jie);
  7788. _formdiv = new U.UF.UI.form(
  7789. "思维网格",
  7790. _box, {
  7791. "id": "mindNetwork" + cid + stage + task + tool,
  7792. "style": {
  7793. "width": "90%",
  7794. "height": "90%",
  7795. "overflow": 'hidden'
  7796. },
  7797. "onresize": function () { }
  7798. }, {
  7799. closecallback: function () { }
  7800. }, {
  7801. "style": {
  7802. "height": "36px"
  7803. }
  7804. }).form; //创建窗体
  7805. _taskbar = {
  7806. "id": str + _formdiv.id,
  7807. "style": {
  7808. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7809. },
  7810. "name": "思维网格",
  7811. "forms": _formdiv,
  7812. "click": function () {
  7813. U.MD.D.I.openApplication(str, obj, info);
  7814. }
  7815. }
  7816. break;
  7817. case "courseDesign":
  7818. _iframe = $$("iframe", {
  7819. "webkitallowfullscreen": "",
  7820. "mozallowfullscreen": "",
  7821. "allowfullscreen": "",
  7822. "frameborder": "no",
  7823. "border": "0",
  7824. "scrolling ": "no",
  7825. "style": {
  7826. "cssText": "border:0; width:100%; height:100%;"
  7827. },
  7828. "src": "/course-design-vue"
  7829. })
  7830. _box.appendChild(_iframe);
  7831. _box.appendChild(_jie);
  7832. _formdiv = new U.UF.UI.form(
  7833. "项目设计",
  7834. _box, {
  7835. "id": "courseDesign" + cid + stage + task + tool,
  7836. "style": {
  7837. "width": "90%",
  7838. "height": "90%",
  7839. "overflow": 'hidden'
  7840. },
  7841. "onresize": function () { }
  7842. }, {
  7843. closecallback: function () { }
  7844. }, {
  7845. "style": {
  7846. "height": "36px"
  7847. }
  7848. }).form; //创建窗体
  7849. _taskbar = {
  7850. "id": str + _formdiv.id,
  7851. "style": {
  7852. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7853. },
  7854. "name": "项目设计",
  7855. "forms": _formdiv,
  7856. "click": function () {
  7857. U.MD.D.I.openApplication(str, obj, info);
  7858. }
  7859. }
  7860. break;
  7861. }
  7862. const script1 = document.createElement("script");
  7863. script1.type = "text/javascript";
  7864. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7865. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7866. const script2 = document.createElement("script");
  7867. script2.type = "text/javascript";
  7868. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7869. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7870. const script3 = document.createElement("script");
  7871. script3.type = "text/javascript";
  7872. script3.charset = "UTF-8";
  7873. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7874. const script4 = document.createElement("script");
  7875. script4.type = "text/javascript";
  7876. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7877. script4.src = window.origin + "/js/Common/jietu2E.js";
  7878. if (_iframe) {
  7879. if (str == 'doc') {
  7880. _iframe = _formdiv.querySelector('iframe')
  7881. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7882. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7883. _iframe.contentWindow.document.body.appendChild(script1);
  7884. _iframe.contentWindow.document.body.appendChild(script2);
  7885. // _iframe.contentWindow.document.body.appendChild(script3);
  7886. _iframe.contentWindow.document.body.appendChild(script4);
  7887. })
  7888. if (onloadListener) {
  7889. _iframe.contentDocument.location.reload()
  7890. } else {
  7891. _iframe.contentDocument.location.reload()
  7892. }
  7893. } else if (str == 'courseDesign') {
  7894. U.UF.DL.iframeLoad(_iframe, function () {
  7895. // _iframe.contentWindow.U.MD.O.W.load();
  7896. // _iframe.contentWindow.document.body.appendChild(script1);
  7897. _iframe.contentWindow.document.body.appendChild(script2);
  7898. _iframe.contentWindow.document.body.appendChild(script4);
  7899. })
  7900. } else if (str == 'mind') {
  7901. _iframe = _formdiv.querySelector('iframe')
  7902. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7903. //
  7904. _iframe.contentWindow.document.body.appendChild(script1);
  7905. _iframe.contentWindow.document.body.appendChild(script2);
  7906. _iframe.contentWindow.document.body.appendChild(script4);
  7907. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7908. })
  7909. if (onloadListener) {
  7910. _iframe.contentDocument.location.reload()
  7911. } else {
  7912. _iframe.contentDocument.location.reload()
  7913. }
  7914. } else if (str == 'whiteboard') {
  7915. _iframe = _formdiv.querySelector('iframe')
  7916. let onloadListener = _iframe.onload = () => {
  7917. _iframe.contentWindow.document.body.appendChild(script1);
  7918. _iframe.contentWindow.document.body.appendChild(script2);
  7919. _iframe.contentWindow.document.body.appendChild(script4);
  7920. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7921. };
  7922. // if (onloadListener) {
  7923. // try {
  7924. // _iframe.src += "?cocorobo="+new Date().getTime()
  7925. // _iframe.contentWindow.document.location.reload()
  7926. // } catch (error) {
  7927. // }
  7928. // } else {
  7929. // _iframe.contentDocument.location.reload()
  7930. // }
  7931. } else {
  7932. _iframe.onload = () => {
  7933. _iframe.contentWindow.document.body.appendChild(script1);
  7934. _iframe.contentWindow.document.body.appendChild(script2);
  7935. // _iframe.contentWindow.document.body.appendChild(script3);
  7936. _iframe.contentWindow.document.body.appendChild(script4);
  7937. };
  7938. }
  7939. _jie.onclick = async () => {
  7940. let text = ''
  7941. if (aTool == 1) {
  7942. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7943. } else if (aTool == 6) {
  7944. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7945. } else if (aTool == 3) {
  7946. text = await U.MD.D.I.getEditorContent(_iframe);
  7947. }
  7948. _loading.style.display = 'flex'
  7949. console.log(_loading);
  7950. var _ajs = _iframe.contentWindow.document.createElement("script");
  7951. _ajs.type = "text/javascript";
  7952. _ajs.innerHTML =
  7953. // 'console.log(' + _loading + ');\n' +
  7954. 'var _js = document.createElement("script");\n' +
  7955. '_js.type="text/javascript";\n' +
  7956. '_js.charset="UTF-8";\n' +
  7957. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7958. "_js.onload = function(){\n" +
  7959. ' var a = document.getElementsByTagName("img")\n' +
  7960. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7961. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7962. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7963. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7964. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7965. "beforeUpload_shishi(file," +
  7966. "'" +
  7967. _userid +
  7968. "'" +
  7969. ", " +
  7970. "'" +
  7971. _cid +
  7972. "'" +
  7973. ", " +
  7974. "'" +
  7975. _stage +
  7976. "'" +
  7977. ", " +
  7978. "'" +
  7979. _task +
  7980. "'" +
  7981. ", " +
  7982. "'" +
  7983. _tool +
  7984. "'" +
  7985. ", " +
  7986. "'" +
  7987. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7988. "'" +
  7989. ", " +
  7990. "'" +
  7991. aTool +
  7992. "'" +
  7993. ", " +
  7994. "`" +
  7995. text +
  7996. "`" +
  7997. ")\n" +
  7998. " });\n" +
  7999. "}\n" +
  8000. "document.head.appendChild(_js);\n";
  8001. _iframe.contentWindow.document.head.appendChild(_ajs);
  8002. }
  8003. }
  8004. //U.MD.D.I.openClick(str);
  8005. //如果有任务栏信息
  8006. // if (_taskbar) {
  8007. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8008. // }
  8009. }
  8010. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8011. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8012. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8013. _userid = student.userid, //登录用户id
  8014. _username = student.student //用户名字
  8015. let _iframe;
  8016. let _cid = cid,
  8017. _stage = stage,
  8018. _task = task,
  8019. _tool = tool;
  8020. var _jie = $$("div", {
  8021. "style": {
  8022. "position": "absolute",
  8023. "bottom": "50px",
  8024. "right": "50px",
  8025. "zIndex": "9999",
  8026. "backgroundColor": "#2268bc",
  8027. "color": "#fff",
  8028. "padding": "12px 20px",
  8029. "cursor": "pointer",
  8030. "borderRadius": "4px",
  8031. },
  8032. "innerHTML": "提交作业"
  8033. })
  8034. let aTool = ''
  8035. let _loading = document.createElement('div')
  8036. _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;"
  8037. // _loading.id = "";
  8038. let _lchild = document.createElement('div')
  8039. let _limg = document.createElement('img')
  8040. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8041. _limg.style = "width: 26px;margin-right: 10px;"
  8042. _lchild.appendChild(_limg)
  8043. let _lspan = document.createElement('span')
  8044. _lspan.innerHTML = "上传中..."
  8045. _lchild.appendChild(_lspan)
  8046. _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%);"
  8047. _loading.appendChild(_lchild)
  8048. var _box = $$('div', {
  8049. "style": {
  8050. "position": "relative",
  8051. "width": "100%",
  8052. "height": "100%",
  8053. },
  8054. })
  8055. _box.appendChild(_loading)
  8056. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8057. switch (str) {
  8058. case "whiteboard":
  8059. aTool = 1;
  8060. _iframe = $$("iframe", {
  8061. "frameborder": "no",
  8062. "border": "0",
  8063. "scrolling ": "no",
  8064. "style": {
  8065. "cssText": "border:0;width:100%;height:100%"
  8066. },
  8067. "src": "https://beta.iwb.cocorobo.cn/"
  8068. })
  8069. _box.appendChild(_iframe);
  8070. _box.appendChild(_jie);
  8071. _formdiv = new U.UF.UI.form(
  8072. "电子白板-" + _username,
  8073. _box, {
  8074. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8075. "style": {
  8076. "width": "90%",
  8077. "height": "90%",
  8078. "overflow": 'hidden'
  8079. },
  8080. "onresize": function () { }
  8081. }, {
  8082. closecallback: function () { }
  8083. }, {
  8084. "style": {
  8085. "height": "36px"
  8086. }
  8087. }).form; //创建窗体
  8088. _taskbar = {
  8089. "id": str + _formdiv.id,
  8090. "style": {
  8091. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8092. },
  8093. "name": "电子白板",
  8094. "forms": _formdiv,
  8095. "click": function () {
  8096. U.MD.D.I.openApplication(str, obj, info);
  8097. }
  8098. }
  8099. break;
  8100. case "mind":
  8101. aTool = 3;
  8102. _iframe = $$("iframe", {
  8103. "frameborder": "no",
  8104. "border": "0",
  8105. "scrolling ": "no",
  8106. "style": {
  8107. "cssText": "border:0;width:100%;height:100%"
  8108. },
  8109. "src": "/kityminder-editor/dist/index.html"
  8110. })
  8111. _box.appendChild(_iframe);
  8112. _box.appendChild(_jie);
  8113. _formdiv = new U.UF.UI.form(
  8114. "思维导图-" + _username,
  8115. _box, { //"/jsmind/example/demo.html"
  8116. "id": "mind" + cid + stage + task + tool + _userid,
  8117. "style": {
  8118. "width": "90%",
  8119. "height": "90%",
  8120. "overflow": 'hidden'
  8121. },
  8122. "onresize": function () { }
  8123. }, {
  8124. closecallback: function () { }
  8125. }, {
  8126. "style": {
  8127. "height": "36px"
  8128. }
  8129. }).form; //创建窗体
  8130. _taskbar = {
  8131. "id": str + _formdiv.id,
  8132. "style": {
  8133. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8134. },
  8135. "name": "思维导图",
  8136. "forms": _formdiv,
  8137. "click": function () {
  8138. U.MD.D.I.openApplication(str, obj, info);
  8139. }
  8140. }
  8141. break;
  8142. case "MindMap":
  8143. aTool = 3;
  8144. _iframe = $$("iframe", {
  8145. "frameborder": "no",
  8146. "border": "0",
  8147. "scrolling ": "no",
  8148. "style": {
  8149. "cssText": "border:0;width:100%;height:100%"
  8150. },
  8151. "src": "//cloud.cocorobo.cn/mind/"
  8152. })
  8153. _box.appendChild(_iframe);
  8154. _box.appendChild(_jie);
  8155. _formdiv = new U.UF.UI.form(
  8156. "思维导图-" + _username,
  8157. _box, { //"/jsmind/example/demo.html"
  8158. "id": "mind" + cid + stage + task + tool + _userid,
  8159. "style": {
  8160. "width": "90%",
  8161. "height": "90%",
  8162. "overflow": 'hidden'
  8163. },
  8164. "onresize": function () { }
  8165. }, {
  8166. closecallback: function () { }
  8167. }, {
  8168. "style": {
  8169. "height": "36px"
  8170. }
  8171. }).form; //创建窗体
  8172. _taskbar = {
  8173. "id": str + _formdiv.id,
  8174. "style": {
  8175. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8176. },
  8177. "name": "思维导图",
  8178. "forms": _formdiv,
  8179. "click": function () {
  8180. U.MD.D.I.openApplication(str, obj, info);
  8181. }
  8182. }
  8183. break;
  8184. case "doc":
  8185. aTool = 6;
  8186. _iframe = $$("iframe", {
  8187. "frameborder": "no",
  8188. "border": "0",
  8189. "scrolling ": "no",
  8190. "style": {
  8191. "cssText": "border:0;width:100%;height:100%"
  8192. },
  8193. "src": "/Office/Word/WordEditArea.htm"
  8194. })
  8195. _box.appendChild(_iframe);
  8196. _box.appendChild(_jie);
  8197. _formdiv = new U.UF.UI.form(
  8198. "协同文档-" + _username,
  8199. _box, {
  8200. "id": "doc" + cid + stage + task + tool + _userid,
  8201. "style": {
  8202. "width": "90%",
  8203. "height": "90%",
  8204. "overflow": 'hidden'
  8205. },
  8206. "onresize": function () { }
  8207. }, {
  8208. closecallback: function () { }
  8209. }, {
  8210. "style": {
  8211. "height": "36px"
  8212. }
  8213. }).form; //创建窗体
  8214. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8215. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8216. })
  8217. _taskbar = {
  8218. "id": str + _formdiv.id,
  8219. "style": {
  8220. "backgroundImage": "url(/img/icon/doc.png)"
  8221. },
  8222. "name": "协同文档",
  8223. "forms": _formdiv,
  8224. "click": function () {
  8225. U.MD.D.I.openApplication(str, obj, info);
  8226. }
  8227. }
  8228. break;
  8229. case "mindNetwork": //好友打开
  8230. aTool = 7;
  8231. _iframe = $$("iframe", {
  8232. "webkitallowfullscreen": "",
  8233. "mozallowfullscreen": "",
  8234. "allowfullscreen": "",
  8235. "frameborder": "no",
  8236. "border": "0",
  8237. "scrolling ": "no",
  8238. "style": {
  8239. "cssText": "border:0; width:100%; height:100%;"
  8240. },
  8241. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8242. })
  8243. _box.appendChild(_iframe);
  8244. _box.appendChild(_jie);
  8245. _formdiv = new U.UF.UI.form(
  8246. "思维网格-" + _username,
  8247. _box, {
  8248. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8249. "style": {
  8250. "width": "90%",
  8251. "height": "90%",
  8252. "overflow": 'hidden'
  8253. },
  8254. "onresize": function () { }
  8255. }, {
  8256. closecallback: function () { }
  8257. }, {
  8258. "style": {
  8259. "height": "36px"
  8260. }
  8261. }).form; //创建窗体
  8262. _taskbar = {
  8263. "id": str + _formdiv.id,
  8264. "style": {
  8265. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8266. },
  8267. "name": "思维网格",
  8268. "forms": _formdiv,
  8269. "click": function () {
  8270. U.MD.D.I.openApplication(str, obj, info);
  8271. }
  8272. }
  8273. break;
  8274. case "courseDesign":
  8275. _iframe = $$("iframe", {
  8276. "webkitallowfullscreen": "",
  8277. "mozallowfullscreen": "",
  8278. "allowfullscreen": "",
  8279. "frameborder": "no",
  8280. "border": "0",
  8281. "scrolling ": "no",
  8282. "style": {
  8283. "cssText": "border:0; width:100%; height:100%;"
  8284. },
  8285. "src": "/course-design-vue"
  8286. })
  8287. _box.appendChild(_iframe);
  8288. _box.appendChild(_jie);
  8289. _formdiv = new U.UF.UI.form(
  8290. "项目设计-" + _username,
  8291. _box, {
  8292. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8293. "style": {
  8294. "width": "90%",
  8295. "height": "90%",
  8296. "overflow": 'hidden'
  8297. },
  8298. "onresize": function () { }
  8299. }, {
  8300. closecallback: function () { }
  8301. }, {
  8302. "style": {
  8303. "height": "36px"
  8304. }
  8305. }).form; //创建窗体
  8306. _taskbar = {
  8307. "id": str + _formdiv.id,
  8308. "style": {
  8309. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8310. },
  8311. "name": "项目设计",
  8312. "forms": _formdiv,
  8313. "click": function () {
  8314. U.MD.D.I.openApplication(str, obj, info);
  8315. }
  8316. }
  8317. break;
  8318. }
  8319. const script1 = document.createElement("script");
  8320. script1.type = "text/javascript";
  8321. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8322. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8323. const script2 = document.createElement("script");
  8324. script2.type = "text/javascript";
  8325. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8326. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8327. const script3 = document.createElement("script");
  8328. script3.type = "text/javascript";
  8329. script3.charset = "UTF-8";
  8330. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8331. const script4 = document.createElement("script");
  8332. script4.type = "text/javascript";
  8333. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8334. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8335. if (_iframe) {
  8336. if (str == 'doc') {
  8337. _iframe = _formdiv.querySelector('iframe')
  8338. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8339. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8340. _iframe.contentWindow.document.body.appendChild(script1);
  8341. _iframe.contentWindow.document.body.appendChild(script2);
  8342. // _iframe.contentWindow.document.body.appendChild(script3);
  8343. _iframe.contentWindow.document.body.appendChild(script4);
  8344. })
  8345. if (onloadListener) {
  8346. _iframe.contentDocument.location.reload()
  8347. } else {
  8348. _iframe.contentDocument.location.reload()
  8349. }
  8350. } else if (str == 'courseDesign') {
  8351. U.UF.DL.iframeLoad(_iframe, function () {
  8352. // _iframe.contentWindow.U.MD.O.W.load();
  8353. // _iframe.contentWindow.document.body.appendChild(script1);
  8354. _iframe.contentWindow.document.body.appendChild(script2);
  8355. _iframe.contentWindow.document.body.appendChild(script4);
  8356. })
  8357. } else if (str == 'mind') {
  8358. _iframe = _formdiv.querySelector('iframe')
  8359. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8360. //
  8361. _iframe.contentWindow.document.body.appendChild(script1);
  8362. _iframe.contentWindow.document.body.appendChild(script2);
  8363. _iframe.contentWindow.document.body.appendChild(script4);
  8364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8365. })
  8366. if (onloadListener) {
  8367. _iframe.contentDocument.location.reload()
  8368. } else {
  8369. _iframe.contentDocument.location.reload()
  8370. }
  8371. } else if (str == 'whiteboard') {
  8372. _iframe = _formdiv.querySelector('iframe')
  8373. let onloadListener = _iframe.onload = () => {
  8374. _iframe.contentWindow.document.body.appendChild(script1);
  8375. _iframe.contentWindow.document.body.appendChild(script2);
  8376. _iframe.contentWindow.document.body.appendChild(script4);
  8377. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8378. };
  8379. // if (onloadListener) {
  8380. // try {
  8381. // _iframe.src += "?cocorobo="+new Date().getTime()
  8382. // _iframe.contentWindow.document.location.reload()
  8383. // } catch (error) {
  8384. // }
  8385. // } else {
  8386. // _iframe.contentDocument.location.reload()
  8387. // }
  8388. } else {
  8389. _iframe.onload = () => {
  8390. _iframe.contentWindow.document.body.appendChild(script1);
  8391. _iframe.contentWindow.document.body.appendChild(script2);
  8392. // _iframe.contentWindow.document.body.appendChild(script3);
  8393. _iframe.contentWindow.document.body.appendChild(script4);
  8394. };
  8395. }
  8396. _jie.onclick = async () => {
  8397. let text = ''
  8398. if (aTool == 1) {
  8399. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8400. } else if (aTool == 6) {
  8401. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8402. } else if (aTool == 3) {
  8403. text = await U.MD.D.I.getEditorContent(_iframe);
  8404. }
  8405. _loading.style.display = 'flex'
  8406. console.log(_loading);
  8407. var _ajs = _iframe.contentWindow.document.createElement("script");
  8408. _ajs.type = "text/javascript";
  8409. _ajs.innerHTML =
  8410. // 'console.log(' + _loading + ');\n' +
  8411. 'var _js = document.createElement("script");\n' +
  8412. '_js.type="text/javascript";\n' +
  8413. '_js.charset="UTF-8";\n' +
  8414. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8415. "_js.onload = function(){\n" +
  8416. ' var a = document.getElementsByTagName("img")\n' +
  8417. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8418. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8419. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8420. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8421. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8422. "beforeUpload_shishi(file," +
  8423. "'" +
  8424. _userid +
  8425. "'" +
  8426. ", " +
  8427. "'" +
  8428. _cid +
  8429. "'" +
  8430. ", " +
  8431. "'" +
  8432. _stage +
  8433. "'" +
  8434. ", " +
  8435. "'" +
  8436. _task +
  8437. "'" +
  8438. ", " +
  8439. "'" +
  8440. _tool +
  8441. "'" +
  8442. ", " +
  8443. "'" +
  8444. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8445. "'" +
  8446. ", " +
  8447. "'" +
  8448. aTool +
  8449. "'" +
  8450. ", " +
  8451. "`" +
  8452. text +
  8453. "`" +
  8454. ")\n" +
  8455. " });\n" +
  8456. "}\n" +
  8457. "document.head.appendChild(_js);\n";
  8458. _iframe.contentWindow.document.head.appendChild(_ajs);
  8459. }
  8460. }
  8461. }
  8462. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8463. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8464. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8465. _userid = student.userid, //登录用户id
  8466. _username = student.student //用户名字
  8467. let _iframe;
  8468. let _cid = cid,
  8469. _stage = stage,
  8470. _task = task,
  8471. _tool = tool;
  8472. var _jie = $$("div", {
  8473. "style": {
  8474. "position": "absolute",
  8475. "bottom": "50px",
  8476. "right": "50px",
  8477. "zIndex": "9999",
  8478. "backgroundColor": "#2268bc",
  8479. "color": "#fff",
  8480. "padding": "12px 20px",
  8481. "cursor": "pointer",
  8482. "borderRadius": "4px",
  8483. },
  8484. "innerHTML": "提交作业"
  8485. })
  8486. let aTool = ''
  8487. let _loading = document.createElement('div')
  8488. _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;"
  8489. // _loading.id = "";
  8490. let _lchild = document.createElement('div')
  8491. let _limg = document.createElement('img')
  8492. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8493. _limg.style = "width: 26px;margin-right: 10px;"
  8494. _lchild.appendChild(_limg)
  8495. let _lspan = document.createElement('span')
  8496. _lspan.innerHTML = "上传中..."
  8497. _lchild.appendChild(_lspan)
  8498. _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%);"
  8499. _loading.appendChild(_lchild)
  8500. var _box = $$('div', {
  8501. "style": {
  8502. "position": "relative",
  8503. "width": "100%",
  8504. "height": "100%",
  8505. },
  8506. })
  8507. _box.appendChild(_loading)
  8508. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8509. switch (str) {
  8510. case "whiteboard":
  8511. aTool = 1;
  8512. _iframe = $$("iframe", {
  8513. "frameborder": "no",
  8514. "border": "0",
  8515. "scrolling ": "no",
  8516. "style": {
  8517. "cssText": "border:0;width:100%;height:100%"
  8518. },
  8519. "src": "https://beta.iwb.cocorobo.cn/"
  8520. })
  8521. _box.appendChild(_iframe);
  8522. _box.appendChild(_jie);
  8523. _formdiv = new U.UF.UI.form(
  8524. "电子白板-" + _username,
  8525. _box, {
  8526. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8527. "style": {
  8528. "width": "90%",
  8529. "height": "90%",
  8530. "overflow": 'hidden'
  8531. },
  8532. "onresize": function () { }
  8533. }, {
  8534. closecallback: function () { }
  8535. }, {
  8536. "style": {
  8537. "height": "36px"
  8538. }
  8539. }).form; //创建窗体
  8540. _taskbar = {
  8541. "id": str + _formdiv.id,
  8542. "style": {
  8543. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8544. },
  8545. "name": "电子白板",
  8546. "forms": _formdiv,
  8547. "click": function () {
  8548. U.MD.D.I.openApplication(str, obj, info);
  8549. }
  8550. }
  8551. break;
  8552. case "mind":
  8553. aTool = 3;
  8554. _iframe = $$("iframe", {
  8555. "frameborder": "no",
  8556. "border": "0",
  8557. "scrolling ": "no",
  8558. "style": {
  8559. "cssText": "border:0;width:100%;height:100%"
  8560. },
  8561. "src": "/kityminder-editor/dist/index.html"
  8562. })
  8563. _box.appendChild(_iframe);
  8564. _box.appendChild(_jie);
  8565. _formdiv = new U.UF.UI.form(
  8566. "思维导图-" + _username,
  8567. _box, { //"/jsmind/example/demo.html"
  8568. "id": "mind" + cid + stage + task + tool + _userid,
  8569. "style": {
  8570. "width": "90%",
  8571. "height": "90%",
  8572. "overflow": 'hidden'
  8573. },
  8574. "onresize": function () { }
  8575. }, {
  8576. closecallback: function () { }
  8577. }, {
  8578. "style": {
  8579. "height": "36px"
  8580. }
  8581. }).form; //创建窗体
  8582. _taskbar = {
  8583. "id": str + _formdiv.id,
  8584. "style": {
  8585. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8586. },
  8587. "name": "思维导图",
  8588. "forms": _formdiv,
  8589. "click": function () {
  8590. U.MD.D.I.openApplication(str, obj, info);
  8591. }
  8592. }
  8593. break;
  8594. case "MindMap":
  8595. aTool = 3;
  8596. _iframe = $$("iframe", {
  8597. "frameborder": "no",
  8598. "border": "0",
  8599. "scrolling ": "no",
  8600. "style": {
  8601. "cssText": "border:0;width:100%;height:100%"
  8602. },
  8603. "src": "//cloud.cocorobo.cn/mind/"
  8604. })
  8605. _box.appendChild(_iframe);
  8606. _box.appendChild(_jie);
  8607. _formdiv = new U.UF.UI.form(
  8608. "思维导图-" + _username,
  8609. _box, { //"/jsmind/example/demo.html"
  8610. "id": "mind" + cid + stage + task + tool + _userid,
  8611. "style": {
  8612. "width": "90%",
  8613. "height": "90%",
  8614. "overflow": 'hidden'
  8615. },
  8616. "onresize": function () { }
  8617. }, {
  8618. closecallback: function () { }
  8619. }, {
  8620. "style": {
  8621. "height": "36px"
  8622. }
  8623. }).form; //创建窗体
  8624. _taskbar = {
  8625. "id": str + _formdiv.id,
  8626. "style": {
  8627. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8628. },
  8629. "name": "思维导图",
  8630. "forms": _formdiv,
  8631. "click": function () {
  8632. U.MD.D.I.openApplication(str, obj, info);
  8633. }
  8634. }
  8635. break;
  8636. case "doc":
  8637. aTool = 6;
  8638. _iframe = $$("iframe", {
  8639. "frameborder": "no",
  8640. "border": "0",
  8641. "scrolling ": "no",
  8642. "style": {
  8643. "cssText": "border:0;width:100%;height:100%"
  8644. },
  8645. "src": "/Office/Word/WordEditArea.htm"
  8646. })
  8647. _box.appendChild(_iframe);
  8648. _box.appendChild(_jie);
  8649. _formdiv = new U.UF.UI.form(
  8650. "协同文档-" + _username,
  8651. _box, {
  8652. "id": "doc" + cid + stage + task + tool + _userid,
  8653. "style": {
  8654. "width": "90%",
  8655. "height": "90%",
  8656. "overflow": 'hidden'
  8657. },
  8658. "onresize": function () { }
  8659. }, {
  8660. closecallback: function () { }
  8661. }, {
  8662. "style": {
  8663. "height": "36px"
  8664. }
  8665. }).form; //创建窗体
  8666. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8667. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8668. })
  8669. _taskbar = {
  8670. "id": str + _formdiv.id,
  8671. "style": {
  8672. "backgroundImage": "url(/img/icon/doc.png)"
  8673. },
  8674. "name": "协同文档",
  8675. "forms": _formdiv,
  8676. "click": function () {
  8677. U.MD.D.I.openApplication(str, obj, info);
  8678. }
  8679. }
  8680. break;
  8681. case "mindNetwork": //好友打开
  8682. aTool = 7;
  8683. _iframe = $$("iframe", {
  8684. "webkitallowfullscreen": "",
  8685. "mozallowfullscreen": "",
  8686. "allowfullscreen": "",
  8687. "frameborder": "no",
  8688. "border": "0",
  8689. "scrolling ": "no",
  8690. "style": {
  8691. "cssText": "border:0; width:100%; height:100%;"
  8692. },
  8693. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8694. })
  8695. _box.appendChild(_iframe);
  8696. _box.appendChild(_jie);
  8697. _formdiv = new U.UF.UI.form(
  8698. "思维网格-" + _username,
  8699. _box, {
  8700. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8701. "style": {
  8702. "width": "90%",
  8703. "height": "90%",
  8704. "overflow": 'hidden'
  8705. },
  8706. "onresize": function () { }
  8707. }, {
  8708. closecallback: function () { }
  8709. }, {
  8710. "style": {
  8711. "height": "36px"
  8712. }
  8713. }).form; //创建窗体
  8714. _taskbar = {
  8715. "id": str + _formdiv.id,
  8716. "style": {
  8717. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8718. },
  8719. "name": "思维网格",
  8720. "forms": _formdiv,
  8721. "click": function () {
  8722. U.MD.D.I.openApplication(str, obj, info);
  8723. }
  8724. }
  8725. break;
  8726. case "courseDesign":
  8727. _iframe = $$("iframe", {
  8728. "webkitallowfullscreen": "",
  8729. "mozallowfullscreen": "",
  8730. "allowfullscreen": "",
  8731. "frameborder": "no",
  8732. "border": "0",
  8733. "scrolling ": "no",
  8734. "style": {
  8735. "cssText": "border:0; width:100%; height:100%;"
  8736. },
  8737. "src": "/course-design-vue"
  8738. })
  8739. _box.appendChild(_iframe);
  8740. _box.appendChild(_jie);
  8741. _formdiv = new U.UF.UI.form(
  8742. "项目设计-" + _username,
  8743. _box, {
  8744. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8745. "style": {
  8746. "width": "90%",
  8747. "height": "90%",
  8748. "overflow": 'hidden'
  8749. },
  8750. "onresize": function () { }
  8751. }, {
  8752. closecallback: function () { }
  8753. }, {
  8754. "style": {
  8755. "height": "36px"
  8756. }
  8757. }).form; //创建窗体
  8758. _taskbar = {
  8759. "id": str + _formdiv.id,
  8760. "style": {
  8761. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8762. },
  8763. "name": "项目设计",
  8764. "forms": _formdiv,
  8765. "click": function () {
  8766. U.MD.D.I.openApplication(str, obj, info);
  8767. }
  8768. }
  8769. break;
  8770. }
  8771. const script1 = document.createElement("script");
  8772. script1.type = "text/javascript";
  8773. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8774. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8775. const script2 = document.createElement("script");
  8776. script2.type = "text/javascript";
  8777. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8778. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8779. const script3 = document.createElement("script");
  8780. script3.type = "text/javascript";
  8781. script3.charset = "UTF-8";
  8782. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8783. const script4 = document.createElement("script");
  8784. script4.type = "text/javascript";
  8785. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8786. script4.src = window.origin + "/js/Common/jietu2E.js";
  8787. if (_iframe) {
  8788. if (str == 'doc') {
  8789. _iframe = _formdiv.querySelector('iframe')
  8790. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8791. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8792. _iframe.contentWindow.document.body.appendChild(script1);
  8793. _iframe.contentWindow.document.body.appendChild(script2);
  8794. // _iframe.contentWindow.document.body.appendChild(script3);
  8795. _iframe.contentWindow.document.body.appendChild(script4);
  8796. })
  8797. if (onloadListener) {
  8798. _iframe.contentDocument.location.reload()
  8799. } else {
  8800. _iframe.contentDocument.location.reload()
  8801. }
  8802. } else if (str == 'courseDesign') {
  8803. U.UF.DL.iframeLoad(_iframe, function () {
  8804. // _iframe.contentWindow.U.MD.O.W.load();
  8805. // _iframe.contentWindow.document.body.appendChild(script1);
  8806. _iframe.contentWindow.document.body.appendChild(script2);
  8807. _iframe.contentWindow.document.body.appendChild(script4);
  8808. })
  8809. } else if (str == 'mind') {
  8810. _iframe = _formdiv.querySelector('iframe')
  8811. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8812. //
  8813. _iframe.contentWindow.document.body.appendChild(script1);
  8814. _iframe.contentWindow.document.body.appendChild(script2);
  8815. _iframe.contentWindow.document.body.appendChild(script4);
  8816. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8817. })
  8818. if (onloadListener) {
  8819. _iframe.contentDocument.location.reload()
  8820. } else {
  8821. _iframe.contentDocument.location.reload()
  8822. }
  8823. } else if (str == 'whiteboard') {
  8824. _iframe = _formdiv.querySelector('iframe')
  8825. let onloadListener = _iframe.onload = () => {
  8826. _iframe.contentWindow.document.body.appendChild(script1);
  8827. _iframe.contentWindow.document.body.appendChild(script2);
  8828. _iframe.contentWindow.document.body.appendChild(script4);
  8829. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8830. };
  8831. // if (onloadListener) {
  8832. // try {
  8833. // _iframe.src += "?cocorobo="+new Date().getTime()
  8834. // _iframe.contentWindow.document.location.reload()
  8835. // } catch (error) {
  8836. // }
  8837. // } else {
  8838. // _iframe.contentDocument.location.reload()
  8839. // }
  8840. } else {
  8841. _iframe.onload = () => {
  8842. _iframe.contentWindow.document.body.appendChild(script1);
  8843. _iframe.contentWindow.document.body.appendChild(script2);
  8844. // _iframe.contentWindow.document.body.appendChild(script3);
  8845. _iframe.contentWindow.document.body.appendChild(script4);
  8846. };
  8847. }
  8848. _jie.onclick = async () => {
  8849. let text = ''
  8850. if (aTool == 1) {
  8851. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8852. } else if (aTool == 6) {
  8853. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8854. } else if (aTool == 3) {
  8855. text = await U.MD.D.I.getEditorContent(_iframe);
  8856. }
  8857. _loading.style.display = 'flex'
  8858. console.log(_loading);
  8859. var _ajs = _iframe.contentWindow.document.createElement("script");
  8860. _ajs.type = "text/javascript";
  8861. _ajs.innerHTML =
  8862. // 'console.log(' + _loading + ');\n' +
  8863. 'var _js = document.createElement("script");\n' +
  8864. '_js.type="text/javascript";\n' +
  8865. '_js.charset="UTF-8";\n' +
  8866. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8867. "_js.onload = function(){\n" +
  8868. ' var a = document.getElementsByTagName("img")\n' +
  8869. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8870. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8871. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8872. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8873. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8874. "beforeUpload_shishi(file," +
  8875. "'" +
  8876. _userid +
  8877. "'" +
  8878. ", " +
  8879. "'" +
  8880. _cid +
  8881. "'" +
  8882. ", " +
  8883. "'" +
  8884. _stage +
  8885. "'" +
  8886. ", " +
  8887. "'" +
  8888. _task +
  8889. "'" +
  8890. ", " +
  8891. "'" +
  8892. _tool +
  8893. "'" +
  8894. ", " +
  8895. "'" +
  8896. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8897. "'" +
  8898. ", " +
  8899. "'" +
  8900. aTool +
  8901. "'" +
  8902. ", " +
  8903. "`" +
  8904. text +
  8905. "`" +
  8906. ")\n" +
  8907. " });\n" +
  8908. "}\n" +
  8909. "document.head.appendChild(_js);\n";
  8910. _iframe.contentWindow.document.head.appendChild(_ajs);
  8911. }
  8912. }
  8913. }
  8914. U.MD.D.I.getEditorContent = function (iframe) {
  8915. return new Promise((resolve, reject) => {
  8916. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8917. console.log(content);
  8918. resolve(content)
  8919. });
  8920. });
  8921. }
  8922. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8923. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8924. // if (res.value[0].length > 0) {
  8925. // // resolve(res.value[0][0].text);
  8926. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8927. // $(fileInput).val('');
  8928. // });
  8929. // }
  8930. // }, [], { "type": "GET", "withCredentials": true });
  8931. var xmlhttp;
  8932. var Mac, Sn, DeviceId
  8933. if (window.XMLHttpRequest) {
  8934. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8935. xmlhttp = new XMLHttpRequest();
  8936. } else {
  8937. // IE6, IE5 浏览器执行代码
  8938. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8939. }
  8940. xmlhttp.onreadystatechange = function () {
  8941. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8942. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8943. // resolve(res.value[0][0].text);
  8944. if (type == '2') {
  8945. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8946. } else if (type == '3') {
  8947. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8948. }
  8949. } else {
  8950. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8951. }
  8952. }
  8953. }
  8954. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8955. xmlhttp.send();
  8956. }
  8957. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8958. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8959. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8960. _userinfo = US.userInfo, //登录用户信息
  8961. _userid = US.userInfo.userid //登录用户id
  8962. let _iframe;
  8963. let _cid = cid,
  8964. _stage = stage,
  8965. _task = task,
  8966. _tool = tool;
  8967. var _jie = $$("div", {
  8968. "style": {
  8969. "position": "absolute",
  8970. "bottom": "50px",
  8971. "right": "50px",
  8972. "zIndex": "9999",
  8973. "backgroundColor": "#2268bc",
  8974. "color": "#fff",
  8975. "padding": "12px 20px",
  8976. "cursor": "pointer",
  8977. "borderRadius": "4px",
  8978. },
  8979. "innerHTML": "确认并提交"
  8980. })
  8981. let aTool = ''
  8982. let _loading = document.createElement('div')
  8983. _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;"
  8984. // _loading.id = "";
  8985. let _lchild = document.createElement('div')
  8986. let _limg = document.createElement('img')
  8987. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8988. _limg.style = "width: 26px;margin-right: 10px;"
  8989. _lchild.appendChild(_limg)
  8990. let _lspan = document.createElement('span')
  8991. _lspan.innerHTML = "上传中..."
  8992. _lchild.appendChild(_lspan)
  8993. _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%);"
  8994. _loading.appendChild(_lchild)
  8995. var _box = $$('div', {
  8996. "style": {
  8997. "position": "relative",
  8998. "width": "100%",
  8999. "height": "100%",
  9000. },
  9001. })
  9002. _box.appendChild(_loading)
  9003. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9004. switch (str) {
  9005. case "whiteboard":
  9006. aTool = 1;
  9007. _iframe = $$("iframe", {
  9008. "frameborder": "no",
  9009. "border": "0",
  9010. "scrolling ": "no",
  9011. "style": {
  9012. "cssText": "border:0;width:100%;height:100%"
  9013. },
  9014. "src": "https://beta.iwb.cocorobo.cn/"
  9015. })
  9016. _box.appendChild(_iframe);
  9017. _box.appendChild(_jie);
  9018. _formdiv = new U.UF.UI.form(
  9019. "电子白板",
  9020. _box, {
  9021. "id": "whiteboards" + cid + stage + task + tool,
  9022. "style": {
  9023. "width": "90%",
  9024. "height": "90%",
  9025. "overflow": 'hidden'
  9026. },
  9027. "onresize": function () { }
  9028. }, {
  9029. closecallback: function () { }
  9030. }, {
  9031. "style": {
  9032. "height": "36px"
  9033. }
  9034. }).form; //创建窗体
  9035. _taskbar = {
  9036. "id": str + _formdiv.id,
  9037. "style": {
  9038. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9039. },
  9040. "name": "电子白板",
  9041. "forms": _formdiv,
  9042. "click": function () {
  9043. U.MD.D.I.openApplication(str, obj, info);
  9044. }
  9045. }
  9046. break;
  9047. case "mind":
  9048. aTool = 3;
  9049. _iframe = $$("iframe", {
  9050. "frameborder": "no",
  9051. "border": "0",
  9052. "scrolling ": "no",
  9053. "style": {
  9054. "cssText": "border:0;width:100%;height:100%"
  9055. },
  9056. "src": "/kityminder-editor/dist/index.html"
  9057. });
  9058. _box.appendChild(_iframe);
  9059. _box.appendChild(_jie);
  9060. _formdiv = new U.UF.UI.form(
  9061. "思维导图",
  9062. _box, { //"/jsmind/example/demo.html"
  9063. "id": "minds" + cid + stage + task + tool,
  9064. "style": {
  9065. "width": "90%",
  9066. "height": "90%",
  9067. "overflow": 'hidden'
  9068. },
  9069. "onresize": function () { }
  9070. }, {
  9071. closecallback: function () { }
  9072. }, {
  9073. "style": {
  9074. "height": "36px"
  9075. }
  9076. }).form; //创建窗体
  9077. _taskbar = {
  9078. "id": str + _formdiv.id,
  9079. "style": {
  9080. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9081. },
  9082. "name": "思维导图",
  9083. "forms": _formdiv,
  9084. "click": function () {
  9085. U.MD.D.I.openApplication(str, obj, info);
  9086. }
  9087. }
  9088. break;
  9089. case "doc":
  9090. aTool = 6;
  9091. _iframe = $$("iframe", {
  9092. "frameborder": "no",
  9093. "border": "0",
  9094. "scrolling ": "no",
  9095. "style": {
  9096. "cssText": "border:0;width:100%;height:100%"
  9097. },
  9098. "src": "/Office/Word/WordEditArea.htm"
  9099. })
  9100. _box.appendChild(_iframe);
  9101. _box.appendChild(_jie);
  9102. _formdiv = new U.UF.UI.form(
  9103. "协同文档",
  9104. _box, {
  9105. "id": "docs" + cid + stage + task + tool,
  9106. "style": {
  9107. "width": "90%",
  9108. "height": "90%",
  9109. "overflow": 'hidden'
  9110. },
  9111. "onresize": function () { }
  9112. }, {
  9113. closecallback: function () { }
  9114. }, {
  9115. "style": {
  9116. "height": "36px"
  9117. }
  9118. }).form; //创建窗体
  9119. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9120. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9121. })
  9122. _taskbar = {
  9123. "id": str + _formdiv.id,
  9124. "style": {
  9125. "backgroundImage": "url(/img/icon/doc.png)"
  9126. },
  9127. "name": "协同文档",
  9128. "forms": _formdiv,
  9129. "click": function () {
  9130. U.MD.D.I.openApplication(str, obj, info);
  9131. }
  9132. }
  9133. break;
  9134. }
  9135. const script1 = document.createElement("script");
  9136. script1.type = "text/javascript";
  9137. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9138. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9139. const script2 = document.createElement("script");
  9140. script2.type = "text/javascript";
  9141. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9142. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9143. const script3 = document.createElement("script");
  9144. script3.type = "text/javascript";
  9145. script3.charset = "UTF-8";
  9146. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9147. const script4 = document.createElement("script");
  9148. script4.type = "text/javascript";
  9149. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9150. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9151. if (_iframe) {
  9152. if (str == 'doc') {
  9153. _iframe = _formdiv.querySelector('iframe')
  9154. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9155. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9156. _iframe.contentWindow.document.body.appendChild(script1);
  9157. _iframe.contentWindow.document.body.appendChild(script2);
  9158. // _iframe.contentWindow.document.body.appendChild(script3);
  9159. _iframe.contentWindow.document.body.appendChild(script4);
  9160. })
  9161. if (onloadListener) {
  9162. _iframe.contentDocument.location.reload()
  9163. } else {
  9164. _iframe.contentDocument.location.reload()
  9165. }
  9166. } else if (str == 'mind') {
  9167. _iframe = _formdiv.querySelector('iframe')
  9168. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9169. _iframe.contentWindow.document.body.appendChild(script1);
  9170. _iframe.contentWindow.document.body.appendChild(script2);
  9171. _iframe.contentWindow.document.body.appendChild(script4);
  9172. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9173. })
  9174. if (onloadListener) {
  9175. _iframe.contentDocument.location.reload()
  9176. } else {
  9177. _iframe.contentDocument.location.reload()
  9178. }
  9179. } else {
  9180. _iframe.onload = () => {
  9181. _iframe.contentWindow.document.body.appendChild(script1);
  9182. _iframe.contentWindow.document.body.appendChild(script2);
  9183. // _iframe.contentWindow.document.body.appendChild(script3);
  9184. _iframe.contentWindow.document.body.appendChild(script4);
  9185. };
  9186. }
  9187. _jie.onclick = async () => {
  9188. let text = ''
  9189. if (aTool == 6) {
  9190. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9191. } else if (aTool == 3) {
  9192. text = await U.MD.D.I.getEditorContent(_iframe);
  9193. }
  9194. _loading.style.display = 'flex'
  9195. console.log(_loading);
  9196. var _ajs = _iframe.contentWindow.document.createElement("script");
  9197. _ajs.type = "text/javascript";
  9198. _ajs.innerHTML =
  9199. // 'console.log(' + _loading + ');\n' +
  9200. 'var _js = document.createElement("script");\n' +
  9201. '_js.type="text/javascript";\n' +
  9202. '_js.charset="UTF-8";\n' +
  9203. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9204. "_js.onload = function(){\n" +
  9205. ' var a = document.getElementsByTagName("img")\n' +
  9206. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9207. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9208. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9209. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9210. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9211. "beforeUpload_shishi(file," +
  9212. "'" +
  9213. _userid +
  9214. "'" +
  9215. ", " +
  9216. "'" +
  9217. _cid +
  9218. "'" +
  9219. ", " +
  9220. "'" +
  9221. _stage +
  9222. "'" +
  9223. ", " +
  9224. "'" +
  9225. _task +
  9226. "'" +
  9227. ", " +
  9228. "'" +
  9229. _tool +
  9230. "'" +
  9231. ", " +
  9232. "'" +
  9233. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9234. "'" +
  9235. ", " +
  9236. "'" +
  9237. aTool +
  9238. "'" +
  9239. ", " +
  9240. "`" +
  9241. text +
  9242. "`" +
  9243. ")\n" +
  9244. " });\n" +
  9245. "}\n" +
  9246. "document.head.appendChild(_js);\n";
  9247. _iframe.contentWindow.document.head.appendChild(_ajs);
  9248. }
  9249. }
  9250. //U.MD.D.I.openClick(str);
  9251. //如果有任务栏信息
  9252. // if (_taskbar) {
  9253. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9254. // }
  9255. }
  9256. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9257. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9258. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9259. _userinfo = US.userInfo, //登录用户信息
  9260. _userid = US.userInfo.userid //登录用户id
  9261. let _iframe;
  9262. let _cid = cid,
  9263. _stage = stage,
  9264. _task = task,
  9265. _tool = tool;
  9266. var _jie = $$("div", {
  9267. "style": {
  9268. "position": "absolute",
  9269. "bottom": "50px",
  9270. "right": "50px",
  9271. "zIndex": "9999",
  9272. "backgroundColor": "#2268bc",
  9273. "color": "#fff",
  9274. "padding": "12px 20px",
  9275. "cursor": "pointer",
  9276. "borderRadius": "4px",
  9277. },
  9278. "innerHTML": "确认并提交"
  9279. })
  9280. let aTool = ''
  9281. let _loading = document.createElement('div')
  9282. _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;"
  9283. // _loading.id = "";
  9284. let _lchild = document.createElement('div')
  9285. let _limg = document.createElement('img')
  9286. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9287. _limg.style = "width: 26px;margin-right: 10px;"
  9288. _lchild.appendChild(_limg)
  9289. let _lspan = document.createElement('span')
  9290. _lspan.innerHTML = "上传中..."
  9291. _lchild.appendChild(_lspan)
  9292. _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%);"
  9293. _loading.appendChild(_lchild)
  9294. var _box = $$('div', {
  9295. "style": {
  9296. "position": "relative",
  9297. "width": "100%",
  9298. "height": "100%",
  9299. },
  9300. })
  9301. _box.appendChild(_loading)
  9302. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9303. switch (str) {
  9304. case "whiteboard":
  9305. aTool = 1;
  9306. _iframe = $$("iframe", {
  9307. "frameborder": "no",
  9308. "border": "0",
  9309. "scrolling ": "no",
  9310. "style": {
  9311. "cssText": "border:0;width:100%;height:100%"
  9312. },
  9313. "src": "https://beta.iwb.cocorobo.cn/"
  9314. })
  9315. _box.appendChild(_iframe);
  9316. _box.appendChild(_jie);
  9317. _formdiv = new U.UF.UI.form(
  9318. "电子白板",
  9319. _box, {
  9320. "id": "whiteboards" + cid + stage + task + tool,
  9321. "style": {
  9322. "width": "90%",
  9323. "height": "90%",
  9324. "overflow": 'hidden'
  9325. },
  9326. "onresize": function () { }
  9327. }, {
  9328. closecallback: function () { }
  9329. }, {
  9330. "style": {
  9331. "height": "36px"
  9332. }
  9333. }).form; //创建窗体
  9334. _taskbar = {
  9335. "id": str + _formdiv.id,
  9336. "style": {
  9337. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9338. },
  9339. "name": "电子白板",
  9340. "forms": _formdiv,
  9341. "click": function () {
  9342. U.MD.D.I.openApplication(str, obj, info);
  9343. }
  9344. }
  9345. break;
  9346. case "mind":
  9347. aTool = 3;
  9348. _iframe = $$("iframe", {
  9349. "frameborder": "no",
  9350. "border": "0",
  9351. "scrolling ": "no",
  9352. "style": {
  9353. "cssText": "border:0;width:100%;height:100%"
  9354. },
  9355. "src": "/kityminder-editor/dist/index.html"
  9356. });
  9357. _box.appendChild(_iframe);
  9358. _box.appendChild(_jie);
  9359. _formdiv = new U.UF.UI.form(
  9360. "思维导图",
  9361. _box, { //"/jsmind/example/demo.html"
  9362. "id": "minds" + cid + stage + task + tool,
  9363. "style": {
  9364. "width": "90%",
  9365. "height": "90%",
  9366. "overflow": 'hidden'
  9367. },
  9368. "onresize": function () { }
  9369. }, {
  9370. closecallback: function () { }
  9371. }, {
  9372. "style": {
  9373. "height": "36px"
  9374. }
  9375. }).form; //创建窗体
  9376. _taskbar = {
  9377. "id": str + _formdiv.id,
  9378. "style": {
  9379. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9380. },
  9381. "name": "思维导图",
  9382. "forms": _formdiv,
  9383. "click": function () {
  9384. U.MD.D.I.openApplication(str, obj, info);
  9385. }
  9386. }
  9387. break;
  9388. case "doc":
  9389. aTool = 6;
  9390. _iframe = $$("iframe", {
  9391. "frameborder": "no",
  9392. "border": "0",
  9393. "scrolling ": "no",
  9394. "style": {
  9395. "cssText": "border:0;width:100%;height:100%"
  9396. },
  9397. "src": "/Office/Word/WordEditArea.htm"
  9398. })
  9399. _box.appendChild(_iframe);
  9400. _box.appendChild(_jie);
  9401. _formdiv = new U.UF.UI.form(
  9402. "协同文档",
  9403. _box, {
  9404. "id": "docs" + cid + stage + task + tool,
  9405. "style": {
  9406. "width": "90%",
  9407. "height": "90%",
  9408. "overflow": 'hidden'
  9409. },
  9410. "onresize": function () { }
  9411. }, {
  9412. closecallback: function () { }
  9413. }, {
  9414. "style": {
  9415. "height": "36px"
  9416. }
  9417. }).form; //创建窗体
  9418. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9419. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9420. })
  9421. _taskbar = {
  9422. "id": str + _formdiv.id,
  9423. "style": {
  9424. "backgroundImage": "url(/img/icon/doc.png)"
  9425. },
  9426. "name": "协同文档",
  9427. "forms": _formdiv,
  9428. "click": function () {
  9429. U.MD.D.I.openApplication(str, obj, info);
  9430. }
  9431. }
  9432. break;
  9433. }
  9434. const script1 = document.createElement("script");
  9435. script1.type = "text/javascript";
  9436. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9437. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9438. const script2 = document.createElement("script");
  9439. script2.type = "text/javascript";
  9440. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9441. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9442. const script3 = document.createElement("script");
  9443. script3.type = "text/javascript";
  9444. script3.charset = "UTF-8";
  9445. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9446. const script4 = document.createElement("script");
  9447. script4.type = "text/javascript";
  9448. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9449. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9450. if (_iframe) {
  9451. if (str == 'doc') {
  9452. _iframe = _formdiv.querySelector('iframe')
  9453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9454. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9455. _iframe.contentWindow.document.body.appendChild(script1);
  9456. _iframe.contentWindow.document.body.appendChild(script2);
  9457. // _iframe.contentWindow.document.body.appendChild(script3);
  9458. _iframe.contentWindow.document.body.appendChild(script4);
  9459. })
  9460. if (onloadListener) {
  9461. _iframe.contentDocument.location.reload()
  9462. } else {
  9463. _iframe.contentDocument.location.reload()
  9464. }
  9465. } else if (str == 'mind') {
  9466. _iframe = _formdiv.querySelector('iframe')
  9467. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9468. _iframe.contentWindow.document.body.appendChild(script1);
  9469. _iframe.contentWindow.document.body.appendChild(script2);
  9470. _iframe.contentWindow.document.body.appendChild(script4);
  9471. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9472. })
  9473. if (onloadListener) {
  9474. _iframe.contentDocument.location.reload()
  9475. } else {
  9476. _iframe.contentDocument.location.reload()
  9477. }
  9478. } else {
  9479. _iframe.onload = () => {
  9480. _iframe.contentWindow.document.body.appendChild(script1);
  9481. _iframe.contentWindow.document.body.appendChild(script2);
  9482. // _iframe.contentWindow.document.body.appendChild(script3);
  9483. _iframe.contentWindow.document.body.appendChild(script4);
  9484. };
  9485. }
  9486. _jie.onclick = async () => {
  9487. let text = ''
  9488. if (aTool == 6) {
  9489. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9490. } else if (aTool == 3) {
  9491. text = await U.MD.D.I.getEditorContent(_iframe);
  9492. }
  9493. _loading.style.display = 'flex'
  9494. console.log(_loading);
  9495. var _ajs = _iframe.contentWindow.document.createElement("script");
  9496. _ajs.type = "text/javascript";
  9497. _ajs.innerHTML =
  9498. // 'console.log(' + _loading + ');\n' +
  9499. 'var _js = document.createElement("script");\n' +
  9500. '_js.type="text/javascript";\n' +
  9501. '_js.charset="UTF-8";\n' +
  9502. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9503. "_js.onload = function(){\n" +
  9504. ' var a = document.getElementsByTagName("img")\n' +
  9505. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9506. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9507. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9508. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9509. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9510. "beforeUpload_shishi(file," +
  9511. "'" +
  9512. _userid +
  9513. "'" +
  9514. ", " +
  9515. "'" +
  9516. _cid +
  9517. "'" +
  9518. ", " +
  9519. "'" +
  9520. _stage +
  9521. "'" +
  9522. ", " +
  9523. "'" +
  9524. _task +
  9525. "'" +
  9526. ", " +
  9527. "'" +
  9528. _tool +
  9529. "'" +
  9530. ", " +
  9531. "'" +
  9532. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9533. "'" +
  9534. ", " +
  9535. "'" +
  9536. aTool +
  9537. "'" +
  9538. ", " +
  9539. "`" +
  9540. text +
  9541. "`" +
  9542. ")\n" +
  9543. " });\n" +
  9544. "}\n" +
  9545. "document.head.appendChild(_js);\n";
  9546. _iframe.contentWindow.document.head.appendChild(_ajs);
  9547. }
  9548. }
  9549. //U.MD.D.I.openClick(str);
  9550. //如果有任务栏信息
  9551. // if (_taskbar) {
  9552. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9553. // }
  9554. }
  9555. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9556. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9557. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9558. _userinfo = US.userInfo, //登录用户信息
  9559. _userid = US.userInfo.userid //登录用户id
  9560. let _iframe;
  9561. let _cid = cid,
  9562. _stage = stage,
  9563. _task = task,
  9564. _tool = tool;
  9565. var _jie = $$("div", {
  9566. "style": {
  9567. "position": "absolute",
  9568. "bottom": "50px",
  9569. "right": "50px",
  9570. "zIndex": "9999",
  9571. "backgroundColor": "#2268bc",
  9572. "color": "#fff",
  9573. "padding": "12px 20px",
  9574. "cursor": "pointer",
  9575. "borderRadius": "4px",
  9576. },
  9577. "innerHTML": "上传模板"
  9578. })
  9579. let aTool = ''
  9580. let _loading = document.createElement('div')
  9581. _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;"
  9582. // _loading.id = "";
  9583. let _lchild = document.createElement('div')
  9584. let _limg = document.createElement('img')
  9585. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9586. _limg.style = "width: 26px;margin-right: 10px;"
  9587. _lchild.appendChild(_limg)
  9588. let _lspan = document.createElement('span')
  9589. _lspan.innerHTML = "上传中..."
  9590. _lchild.appendChild(_lspan)
  9591. _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%);"
  9592. _loading.appendChild(_lchild)
  9593. var _box = $$('div', {
  9594. "style": {
  9595. "position": "relative",
  9596. "width": "100%",
  9597. "height": "100%",
  9598. },
  9599. })
  9600. _box.appendChild(_loading)
  9601. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9602. switch (str) {
  9603. case "whiteboard":
  9604. aTool = 1;
  9605. _iframe = $$("iframe", {
  9606. "frameborder": "no",
  9607. "border": "0",
  9608. "scrolling ": "no",
  9609. "style": {
  9610. "cssText": "border:0;width:100%;height:100%"
  9611. },
  9612. "src": "https://beta.iwb.cocorobo.cn/"
  9613. })
  9614. _box.appendChild(_iframe);
  9615. _box.appendChild(_jie);
  9616. _formdiv = new U.UF.UI.form(
  9617. "电子白板",
  9618. _box, {
  9619. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9620. "style": {
  9621. "width": "90%",
  9622. "height": "90%",
  9623. "overflow": 'hidden'
  9624. },
  9625. "onresize": function () { }
  9626. }, {
  9627. closecallback: function () { }
  9628. }, {
  9629. "style": {
  9630. "height": "36px"
  9631. }
  9632. }).form; //创建窗体
  9633. _taskbar = {
  9634. "id": str + _formdiv.id,
  9635. "style": {
  9636. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9637. },
  9638. "name": "电子白板",
  9639. "forms": _formdiv,
  9640. "click": function () {
  9641. U.MD.D.I.openApplication(str, obj, info);
  9642. }
  9643. }
  9644. break;
  9645. case "mind":
  9646. aTool = 3;
  9647. _iframe = $$("iframe", {
  9648. "frameborder": "no",
  9649. "border": "0",
  9650. "scrolling ": "no",
  9651. "style": {
  9652. "cssText": "border:0;width:100%;height:100%"
  9653. },
  9654. "src": "/kityminder-editor/dist/index.html"
  9655. });
  9656. _box.appendChild(_iframe);
  9657. _box.appendChild(_jie);
  9658. _formdiv = new U.UF.UI.form(
  9659. "思维导图",
  9660. _box, { //"/jsmind/example/demo.html"
  9661. "id": "minds_Yu" + cid + stage + task + tool,
  9662. "style": {
  9663. "width": "90%",
  9664. "height": "90%",
  9665. "overflow": 'hidden'
  9666. },
  9667. "onresize": function () { }
  9668. }, {
  9669. closecallback: function () { }
  9670. }, {
  9671. "style": {
  9672. "height": "36px"
  9673. }
  9674. }).form; //创建窗体
  9675. _taskbar = {
  9676. "id": str + _formdiv.id,
  9677. "style": {
  9678. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9679. },
  9680. "name": "思维导图",
  9681. "forms": _formdiv,
  9682. "click": function () {
  9683. U.MD.D.I.openApplication(str, obj, info);
  9684. }
  9685. }
  9686. break;
  9687. case "doc":
  9688. aTool = 6;
  9689. _iframe = $$("iframe", {
  9690. "frameborder": "no",
  9691. "border": "0",
  9692. "scrolling ": "no",
  9693. "style": {
  9694. "cssText": "border:0;width:100%;height:100%"
  9695. },
  9696. "src": "/Office/Word/WordEditArea.htm"
  9697. })
  9698. _box.appendChild(_iframe);
  9699. _box.appendChild(_jie);
  9700. _formdiv = new U.UF.UI.form(
  9701. "协同文档",
  9702. _box, {
  9703. "id": "docs_Yu" + cid + stage + task + tool,
  9704. "style": {
  9705. "width": "90%",
  9706. "height": "90%",
  9707. "overflow": 'hidden'
  9708. },
  9709. "onresize": function () { }
  9710. }, {
  9711. closecallback: function () { }
  9712. }, {
  9713. "style": {
  9714. "height": "36px"
  9715. }
  9716. }).form; //创建窗体
  9717. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9718. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9719. })
  9720. _taskbar = {
  9721. "id": str + _formdiv.id,
  9722. "style": {
  9723. "backgroundImage": "url(/img/icon/doc.png)"
  9724. },
  9725. "name": "协同文档",
  9726. "forms": _formdiv,
  9727. "click": function () {
  9728. U.MD.D.I.openApplication(str, obj, info);
  9729. }
  9730. }
  9731. break;
  9732. case "CocoPi":
  9733. aTool = 57;
  9734. _iframe = $$("iframe", {
  9735. "allowpaymentrequest": "allowpaymentrequest",
  9736. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9737. "webkitallowfullscreen": "",
  9738. "mozallowfullscreen": "",
  9739. "frameborder": "no",
  9740. "border": "0",
  9741. "scrolling ": "no",
  9742. "style": {
  9743. "cssText": "border:0;width:100%;height:100%"
  9744. },
  9745. "src": "https://pi.cocorobo.cn/"
  9746. })
  9747. _box.appendChild(_iframe);
  9748. _box.appendChild(_jie);
  9749. _formdiv = new U.UF.UI.form(
  9750. "CocoPi",
  9751. _box, {
  9752. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9753. "style": {
  9754. "width": "90%",
  9755. "height": "90%",
  9756. "overflow": 'hidden'
  9757. },
  9758. "onresize": function () { }
  9759. }, {
  9760. closecallback: function () { }
  9761. }, {
  9762. "style": {
  9763. "height": "36px"
  9764. }
  9765. }).form; //创建窗体
  9766. _taskbar = {
  9767. "id": str + _formdiv.id,
  9768. "style": {
  9769. "backgroundImage": "url(/img/icon/cocopi.png)"
  9770. },
  9771. "name": "CocoPi",
  9772. "forms": _formdiv,
  9773. "click": function () {
  9774. U.MD.D.I.openApplication(str, obj, info);
  9775. }
  9776. }
  9777. break;
  9778. }
  9779. if (_iframe) {
  9780. if (str == 'doc') {
  9781. _iframe = _formdiv.querySelector('iframe')
  9782. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9783. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9784. })
  9785. if (onloadListener) {
  9786. _iframe.contentDocument.location.reload()
  9787. } else {
  9788. _iframe.contentDocument.location.reload()
  9789. }
  9790. } else if (str == 'mind') {
  9791. _iframe = _formdiv.querySelector('iframe')
  9792. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9793. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9794. })
  9795. if (onloadListener) {
  9796. _iframe.contentDocument.location.reload()
  9797. } else {
  9798. _iframe.contentDocument.location.reload()
  9799. }
  9800. } else if (str == 'whiteboard') {
  9801. _iframe = _formdiv.querySelector('iframe')
  9802. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9803. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9804. })
  9805. // if (onloadListener) {
  9806. // try {
  9807. // _iframe.src += "?cocorobo="+new Date().getTime()
  9808. // _iframe.contentWindow.document.location.reload()
  9809. // } catch (error) {
  9810. // }
  9811. // } else {
  9812. // _iframe.contentDocument.location.reload()
  9813. // }
  9814. } else if (str == 'CocoPi') {
  9815. _iframe = _formdiv.querySelector('iframe')
  9816. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9817. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9818. })
  9819. if (onloadListener) {
  9820. _iframe.contentDocument.location.reload()
  9821. } else {
  9822. _iframe.contentDocument.location.reload()
  9823. }
  9824. } else {
  9825. _iframe.onload = () => { };
  9826. }
  9827. _jie.onclick = async () => {
  9828. let text = ''
  9829. let type = '2'
  9830. if (aTool == 1) {
  9831. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9832. type = '3'
  9833. } else if (aTool == 6) {
  9834. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9835. type = '1'
  9836. } else if (aTool == 3) {
  9837. text = await U.MD.D.I.getEditorContent(_iframe);
  9838. type = '2'
  9839. } else if (aTool == 57) {
  9840. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9841. type = '4'
  9842. }
  9843. _loading.style.display = 'flex'
  9844. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9845. }
  9846. }
  9847. //U.MD.D.I.openClick(str);
  9848. //如果有任务栏信息
  9849. // if (_taskbar) {
  9850. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9851. // }
  9852. }
  9853. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9854. var xmlhttp;
  9855. var Mac, Sn, DeviceId
  9856. if (window.XMLHttpRequest) {
  9857. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9858. xmlhttp = new XMLHttpRequest();
  9859. } else {
  9860. // IE6, IE5 浏览器执行代码
  9861. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9862. }
  9863. xmlhttp.onreadystatechange = function () {
  9864. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9865. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9866. // resolve(res.value[0][0].text);
  9867. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9868. }
  9869. }
  9870. }
  9871. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9872. xmlhttp.send();
  9873. }
  9874. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9875. var xmlhttp;
  9876. var Mac, Sn, DeviceId
  9877. if (window.XMLHttpRequest) {
  9878. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9879. xmlhttp = new XMLHttpRequest();
  9880. } else {
  9881. // IE6, IE5 浏览器执行代码
  9882. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9883. }
  9884. xmlhttp.onreadystatechange = function () {
  9885. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9886. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9887. // resolve(res.value[0][0].text);
  9888. if (type == '2') {
  9889. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9890. } else if (type == '3') {
  9891. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9892. } else if (type == '4') {
  9893. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9894. }
  9895. } else {
  9896. if (type == '2') {
  9897. iframe.contentWindow.editor.minder.importData('json', '')
  9898. } else if (type == '3') {
  9899. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9900. } else if (type == '4') {
  9901. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9902. }
  9903. }
  9904. }
  9905. }
  9906. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9907. xmlhttp.send();
  9908. }
  9909. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9910. var xmlhttp;
  9911. var Mac, Sn, DeviceId
  9912. if (window.XMLHttpRequest) {
  9913. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9914. xmlhttp = new XMLHttpRequest();
  9915. } else {
  9916. // IE6, IE5 浏览器执行代码
  9917. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9918. }
  9919. xmlhttp.onreadystatechange = function () {
  9920. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9921. if (xmlhttp.response) {
  9922. // resolve(res.value[0][0].text);
  9923. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9924. // $(fileInput).val('');
  9925. // });
  9926. span.innerHTML = '上传成功'
  9927. setTimeout(() => {
  9928. loading.style.display = 'none'
  9929. }, 1000);
  9930. }
  9931. }
  9932. }
  9933. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9934. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9935. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9936. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9937. // 设置请求头,表示请求体的编码格式
  9938. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9939. // 设置请求体,使用url-encoded格式的数据
  9940. }
  9941. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9942. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9943. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9944. _userinfo = US.userInfo, //登录用户信息
  9945. _userid = US.userInfo.userid //登录用户id
  9946. let _iframe;
  9947. let _cid = cid,
  9948. _stage = stage,
  9949. _task = task,
  9950. _tool = tool;
  9951. var _jie = $$("div", {
  9952. "style": {
  9953. "position": "absolute",
  9954. "bottom": "50px",
  9955. "right": "50px",
  9956. "zIndex": "9999",
  9957. "backgroundColor": "#2268bc",
  9958. "color": "#fff",
  9959. "padding": "12px 20px",
  9960. "cursor": "pointer",
  9961. "borderRadius": "4px",
  9962. },
  9963. "innerHTML": "提交作业"
  9964. })
  9965. let aTool = ''
  9966. let _loading = document.createElement('div')
  9967. _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;"
  9968. // _loading.id = "";
  9969. let _lchild = document.createElement('div')
  9970. let _limg = document.createElement('img')
  9971. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9972. _limg.style = "width: 26px;margin-right: 10px;"
  9973. _lchild.appendChild(_limg)
  9974. let _lspan = document.createElement('span')
  9975. _lspan.innerHTML = "上传中..."
  9976. _lchild.appendChild(_lspan)
  9977. _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%);"
  9978. _loading.appendChild(_lchild)
  9979. var _box = $$('div', {
  9980. "style": {
  9981. "position": "relative",
  9982. "width": "100%",
  9983. "height": "100%",
  9984. },
  9985. })
  9986. _box.appendChild(_loading)
  9987. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9988. switch (str) {
  9989. case "CocoPi":
  9990. aTool = 57;
  9991. _iframe = $$("iframe", {
  9992. "allowpaymentrequest": "allowpaymentrequest",
  9993. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9994. "webkitallowfullscreen": "",
  9995. "mozallowfullscreen": "",
  9996. "frameborder": "no",
  9997. "border": "0",
  9998. "scrolling ": "no",
  9999. "style": {
  10000. "cssText": "border:0;width:100%;height:100%"
  10001. },
  10002. "src": "https://pi.cocorobo.cn/"
  10003. })
  10004. _box.appendChild(_iframe);
  10005. _box.appendChild(_jie);
  10006. _formdiv = new U.UF.UI.form(
  10007. "CocoPi",
  10008. _box, {
  10009. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10010. "style": {
  10011. "width": "90%",
  10012. "height": "90%",
  10013. "overflow": 'hidden'
  10014. },
  10015. "onresize": function () { }
  10016. }, {
  10017. closecallback: function () { }
  10018. }, {
  10019. "style": {
  10020. "height": "36px"
  10021. }
  10022. }).form; //创建窗体
  10023. _taskbar = {
  10024. "id": str + _formdiv.id,
  10025. "style": {
  10026. "backgroundImage": "url(/img/icon/cocopi.png)"
  10027. },
  10028. "name": "CocoPi",
  10029. "forms": _formdiv,
  10030. "click": function () {
  10031. U.MD.D.I.openApplication(str, obj, info);
  10032. }
  10033. }
  10034. break;
  10035. }
  10036. if (_iframe) {
  10037. if (str == 'CocoPi') {
  10038. _iframe = _formdiv.querySelector('iframe')
  10039. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10040. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10041. })
  10042. if (onloadListener) {
  10043. _iframe.contentDocument.location.reload()
  10044. } else {
  10045. _iframe.contentDocument.location.reload()
  10046. }
  10047. }
  10048. _jie.onclick = async () => {
  10049. let text = ''
  10050. if (aTool == 57) {
  10051. text = _iframe.contentWindow.getLoadXmlStr()
  10052. }
  10053. _loading.style.display = 'flex'
  10054. console.log(_loading);
  10055. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10056. _loading.style.display = 'none'
  10057. let _div = document.createElement('div')
  10058. _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;"
  10059. let _inner = document.createElement('div')
  10060. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10061. _inner.innerHTML = "上传成功"
  10062. _div.appendChild(_inner)
  10063. _iframe.contentWindow.window.document.body.appendChild(_div)
  10064. _div.onclick = () => {
  10065. _iframe.contentWindow.window.document.body.removeChild(_div)
  10066. }
  10067. setTimeout(() => {
  10068. _iframe.contentWindow.window.document.body.removeChild(_div)
  10069. }, 1000);
  10070. }, [], { "type": "POST", "withCredentials": true });
  10071. }
  10072. }
  10073. }
  10074. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10075. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10076. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10077. _userid = student.userid, //登录用户id
  10078. _username = student.student //用户名字
  10079. let _iframe;
  10080. let _cid = cid,
  10081. _stage = stage,
  10082. _task = task,
  10083. _tool = tool;
  10084. var _jie = $$("div", {
  10085. "style": {
  10086. "position": "absolute",
  10087. "bottom": "50px",
  10088. "right": "50px",
  10089. "zIndex": "9999",
  10090. "backgroundColor": "#2268bc",
  10091. "color": "#fff",
  10092. "padding": "12px 20px",
  10093. "cursor": "pointer",
  10094. "borderRadius": "4px",
  10095. },
  10096. "innerHTML": "提交作业"
  10097. })
  10098. let aTool = ''
  10099. let _loading = document.createElement('div')
  10100. _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;"
  10101. // _loading.id = "";
  10102. let _lchild = document.createElement('div')
  10103. let _limg = document.createElement('img')
  10104. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10105. _limg.style = "width: 26px;margin-right: 10px;"
  10106. _lchild.appendChild(_limg)
  10107. let _lspan = document.createElement('span')
  10108. _lspan.innerHTML = "上传中..."
  10109. _lchild.appendChild(_lspan)
  10110. _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%);"
  10111. _loading.appendChild(_lchild)
  10112. var _box = $$('div', {
  10113. "style": {
  10114. "position": "relative",
  10115. "width": "100%",
  10116. "height": "100%",
  10117. },
  10118. })
  10119. _box.appendChild(_loading)
  10120. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10121. switch (str) {
  10122. case "CocoPi":
  10123. aTool = 57;
  10124. _iframe = $$("iframe", {
  10125. "allowpaymentrequest": "allowpaymentrequest",
  10126. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10127. "webkitallowfullscreen": "",
  10128. "mozallowfullscreen": "",
  10129. "frameborder": "no",
  10130. "border": "0",
  10131. "scrolling ": "no",
  10132. "style": {
  10133. "cssText": "border:0;width:100%;height:100%"
  10134. },
  10135. "src": "https://pi.cocorobo.cn/"
  10136. })
  10137. _box.appendChild(_iframe);
  10138. _box.appendChild(_jie);
  10139. _formdiv = new U.UF.UI.form(
  10140. "CocoPi-" + _username,
  10141. _box, {
  10142. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10143. "style": {
  10144. "width": "90%",
  10145. "height": "90%",
  10146. "overflow": 'hidden'
  10147. },
  10148. "onresize": function () { }
  10149. }, {
  10150. closecallback: function () { }
  10151. }, {
  10152. "style": {
  10153. "height": "36px"
  10154. }
  10155. }).form; //创建窗体
  10156. _taskbar = {
  10157. "id": str + _formdiv.id,
  10158. "style": {
  10159. "backgroundImage": "url(/img/icon/cocopi.png)"
  10160. },
  10161. "name": "CocoPi",
  10162. "forms": _formdiv,
  10163. "click": function () {
  10164. U.MD.D.I.openApplication(str, obj, info);
  10165. }
  10166. }
  10167. break;
  10168. }
  10169. if (_iframe) {
  10170. if (str == 'CocoPi') {
  10171. _iframe = _formdiv.querySelector('iframe')
  10172. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10173. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10174. })
  10175. if (onloadListener) {
  10176. _iframe.contentDocument.location.reload()
  10177. } else {
  10178. _iframe.contentDocument.location.reload()
  10179. }
  10180. }
  10181. _jie.onclick = async () => {
  10182. let text = ''
  10183. if (aTool == 57) {
  10184. text = _iframe.contentWindow.getLoadXmlStr()
  10185. }
  10186. _loading.style.display = 'flex'
  10187. console.log(_loading);
  10188. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10189. _loading.style.display = 'none'
  10190. let _div = document.createElement('div')
  10191. _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;"
  10192. let _inner = document.createElement('div')
  10193. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10194. _inner.innerHTML = "上传成功"
  10195. _div.appendChild(_inner)
  10196. _iframe.contentWindow.window.document.body.appendChild(_div)
  10197. _div.onclick = () => {
  10198. _iframe.contentWindow.window.document.body.removeChild(_div)
  10199. }
  10200. setTimeout(() => {
  10201. _iframe.contentWindow.window.document.body.removeChild(_div)
  10202. }, 1000);
  10203. }, [], { "type": "POST", "withCredentials": true });
  10204. }
  10205. }
  10206. }
  10207. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10208. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10209. if (res.value[0].length > 0) {
  10210. if (atool == 57) {
  10211. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10212. }
  10213. } else {
  10214. if (atool == 57) {
  10215. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10216. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10217. }
  10218. }
  10219. }, [], { "type": "POST", "withCredentials": true });
  10220. }