DeskTop.js 731 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  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. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. ];
  1573. //CUHK_EDU
  1574. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1575. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1576. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1578. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1579. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1582. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1585. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1586. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1587. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1588. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1589. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1590. ];
  1591. //CUHK_EDU
  1592. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1593. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //010503
  1599. U.MD.D.I.x010503TeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1603. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1604. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1608. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1609. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1610. ];
  1611. //010503
  1612. U.MD.D.I.x010503StudentDeskIcon = [
  1613. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1616. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. ];
  1618. //SPROUT Lab
  1619. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1620. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1621. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1622. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1623. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1624. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1625. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1626. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1627. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1629. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1630. ];
  1631. //SPROUT Lab
  1632. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1633. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1635. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1636. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1637. ];
  1638. //010204
  1639. U.MD.D.I.x010204TeacherDeskIcon = [
  1640. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1641. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1642. ];
  1643. //010204
  1644. U.MD.D.I.x010204StudentDeskIcon = [
  1645. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1648. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //trail
  1651. U.MD.D.I.trailTeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1655. ];
  1656. //trail
  1657. U.MD.D.I.trailStudentDeskIcon = [
  1658. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1662. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1663. ];
  1664. //trial
  1665. U.MD.D.I.trialTeacherDeskIcon = [
  1666. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1667. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1669. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1672. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1673. ];
  1674. //trial
  1675. U.MD.D.I.trialStudentDeskIcon = [
  1676. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1677. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1678. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1681. ];
  1682. //010504
  1683. U.MD.D.I.x010504TeacherDeskIcon = [
  1684. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1685. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1686. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1687. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1688. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1691. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1692. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1693. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1694. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1695. ];
  1696. //010504
  1697. U.MD.D.I.x010504StudentDeskIcon = [
  1698. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. ];
  1703. //010505
  1704. U.MD.D.I.x010505TeacherDeskIcon = [
  1705. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1706. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1708. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1714. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //010505
  1718. U.MD.D.I.x010505StudentDeskIcon = [
  1719. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //SCNUET
  1725. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1726. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1731. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1732. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1736. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1737. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1738. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1739. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1743. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1744. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1745. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1746. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. ];
  1752. //SCNUET
  1753. U.MD.D.I.SCNUETAdminDeskIcon = [
  1754. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1755. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1759. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1760. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1761. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1764. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1765. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1766. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1767. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1768. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1770. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1771. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1772. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1773. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1774. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1775. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1776. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1777. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1778. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1779. ];
  1780. //SCNUET
  1781. U.MD.D.I.SCNUETStudentDeskIcon = [
  1782. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. ];
  1787. //x020201
  1788. U.MD.D.I.x020201TeacherDeskIcon = [
  1789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1793. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1794. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1795. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1796. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1799. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1800. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1803. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1804. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1805. ];
  1806. //x020201
  1807. U.MD.D.I.x020201AdminDeskIcon = [
  1808. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1809. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1812. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1813. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1814. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1815. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1819. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1820. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1821. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1822. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1823. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1824. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1825. ];
  1826. //020201
  1827. U.MD.D.I.x020201StudentDeskIcon = [
  1828. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1832. ];
  1833. //010611
  1834. U.MD.D.I.x010611TeacherDeskIcon = [
  1835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1838. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1839. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1840. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1843. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1844. ];
  1845. //010611
  1846. U.MD.D.I.x010611StudentDeskIcon = [
  1847. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1849. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1851. ];
  1852. //010612
  1853. U.MD.D.I.x010612TeacherDeskIcon = [
  1854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1856. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1857. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1858. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1864. ];
  1865. //010612
  1866. U.MD.D.I.x010612StudentDeskIcon = [
  1867. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1869. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1871. ];
  1872. //tianyuan
  1873. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1874. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1875. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1876. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1877. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1878. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1879. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1880. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1884. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1885. ];
  1886. //010611
  1887. U.MD.D.I.tianyuanStudentDeskIcon = [
  1888. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1889. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1890. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1891. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1892. ];
  1893. //320101
  1894. U.MD.D.I.x320101TeacherDeskIcon = [
  1895. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1896. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1897. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1898. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1899. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1900. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1927. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1929. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //320101
  1935. U.MD.D.I.x320101StudentDeskIcon = [
  1936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1938. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. ];
  1941. //szsy
  1942. U.MD.D.I.szsyTeacherDeskIcon = [
  1943. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1944. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1945. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1946. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1947. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1948. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1949. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1950. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1951. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1952. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1953. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1954. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1956. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1957. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1958. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1959. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1960. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1961. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1962. ];
  1963. //szsy
  1964. U.MD.D.I.szsyStudentDeskIcon = [
  1965. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1966. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1967. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1970. ];
  1971. //010404
  1972. U.MD.D.I.x010404TeacherDeskIcon = [
  1973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1975. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1976. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1977. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1979. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1981. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1982. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1983. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1984. ];
  1985. //010404
  1986. U.MD.D.I.x010404StudentDeskIcon = [
  1987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1989. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1990. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1991. ];
  1992. //cocorobo demo
  1993. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1998. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1999. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2000. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2001. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2002. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2003. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2005. ];
  2006. //cocorobo demo
  2007. U.MD.D.I.demoCocoStudentDeskIcon = [
  2008. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2009. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2010. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2011. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2012. ];
  2013. //MOAI
  2014. U.MD.D.I.MOAITeacherDeskIcon = [
  2015. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2016. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2017. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2019. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2020. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2021. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2024. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2025. ];
  2026. //MOAI 学生端
  2027. U.MD.D.I.MOAIStudentDeskIcon = [
  2028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2030. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2031. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2032. ];
  2033. //PREPAI
  2034. U.MD.D.I.PREPAITeacherDeskIcon = [
  2035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2037. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2038. ];
  2039. //PREPAI 学生端
  2040. U.MD.D.I.PREPAIStudentDeskIcon = [
  2041. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2042. ];
  2043. //#region 桌面初始化a
  2044. /**
  2045. * 初始化桌面的起始函数
  2046. *
  2047. */
  2048. U.MD.D.I.init = function () {
  2049. if ($("#U_MD_D_K")[0]) {
  2050. //初始化桌面图标
  2051. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2052. // var clickUrl = ':12588/requestIp.php';
  2053. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2054. // U.MD.D.I.Ip = data;
  2055. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2056. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2057. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2058. // })
  2059. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2060. // })
  2061. }
  2062. }
  2063. /**
  2064. * 模式切换
  2065. *
  2066. */
  2067. U.MD.D.I.ModeCheck = function (type) {
  2068. if (US.Config.type == type) {
  2069. return
  2070. }
  2071. US.Config.type = type
  2072. $('.U_PBL_Check .active')[0].className = ''
  2073. if (type == 1) {
  2074. $('.U_PBL_Check div')[0].className = 'active'
  2075. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2076. } else {
  2077. $('.U_PBL_Check div')[1].className = 'active'
  2078. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2079. }
  2080. //初始化桌面图标
  2081. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2082. if (type == 2) {
  2083. U.MD.D.I.openApplication("project")
  2084. }
  2085. }
  2086. /**
  2087. * 隐藏任务栏
  2088. *
  2089. * @param {element} 桌面元素
  2090. */
  2091. U.MD.D.I.hiddenTaskbar = function (el) {
  2092. //任务栏位置变小
  2093. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2094. //桌面的位置变大
  2095. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2096. }
  2097. /**
  2098. * 隐藏任务栏
  2099. *
  2100. * @param {element} 桌面元素
  2101. */
  2102. U.MD.D.I.hiddenTaskbarout = function (el) {
  2103. //任务栏位置变小
  2104. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2105. //任务栏位置变化
  2106. U.selectEl(el).css({ "bottom": "-60px" });
  2107. //桌面的位置变大
  2108. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2109. }
  2110. }
  2111. /**
  2112. * 初始化打印桌面图标
  2113. *
  2114. * @param {element} 桌面元素
  2115. */
  2116. U.MD.D.I.initDesktopIcons = function (el, type) {
  2117. var i, //用于循环
  2118. _content, //桌面图标元素
  2119. _iconcontent, //桌面图标元素
  2120. _frag = $$("frag"), //定义一个碎片元素
  2121. _type = US.userInfo.type,
  2122. _org = US.userInfo.org,
  2123. _oid = US.userInfo.organizeid,
  2124. _role = US.userInfo.role,
  2125. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2126. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2127. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2128. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2129. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2130. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2131. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2132. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2133. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2134. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2135. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2136. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2137. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2138. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2139. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2140. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2141. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2142. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2143. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2144. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2145. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2146. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2147. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2148. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2149. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2150. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2151. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2152. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2153. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2154. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2155. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2156. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2157. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2158. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2159. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2160. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2161. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2162. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2163. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2164. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2165. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2166. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2167. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2168. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2169. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2170. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2171. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2172. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2173. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2174. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2175. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2176. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2177. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2178. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2179. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2180. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2181. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2182. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2183. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2184. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2185. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2186. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2187. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2188. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2189. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2190. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2191. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2192. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2193. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2194. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2195. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2196. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2197. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2198. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2199. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2200. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2201. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2202. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2203. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2204. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2205. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2206. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2207. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2208. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2209. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2210. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2211. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2212. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2213. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2214. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2215. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2216. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2217. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2218. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2219. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2220. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2221. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2222. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2223. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2224. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2225. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2226. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2227. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2228. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2229. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2230. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2231. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2232. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2233. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2234. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2235. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2236. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2237. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2238. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2239. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2240. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2241. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2242. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2243. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2244. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2245. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2246. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2247. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2248. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2249. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2250. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2251. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2252. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2253. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2254. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2255. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //szsc
  2256. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //szsc
  2257. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2258. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2259. 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','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','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926','9a8076a2-469a-11f0-b60f-005056924926'];
  2260. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d','62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926',"fa20a652-5f2a-11f0-bf32-005056924926","eed08ac6-7269-11f0-9c7b-005056924926"];
  2261. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2262. //清楚桌面图标
  2263. el.innerHTML = "";
  2264. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2265. _teacherDesktopIconInfo.push(
  2266. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2267. { "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)" } },
  2268. )
  2269. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2270. }
  2271. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2272. _teacherDesktopIconInfo.push(
  2273. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2274. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2275. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2277. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2278. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2279. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2281. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2282. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2283. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2288. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2289. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2290. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2291. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2292. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2293. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2294. )
  2295. }
  2296. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2297. _teacherDesktopIconInfo.push(
  2298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2299. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2300. )
  2301. }
  2302. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2303. _nsfxTeacherDeskIconInfo.push(
  2304. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2305. )
  2306. }
  2307. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2308. // _teacherDesktopIconInfo.push(
  2309. // )
  2310. // }
  2311. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2312. _teacherDesktopIconInfo.push(
  2313. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2314. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2315. )
  2316. }
  2317. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2318. _teacherDesktopIconInfo.push(
  2319. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2321. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2322. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2323. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2324. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2325. )
  2326. _studentDesktopIconInfo.push(
  2327. )
  2328. }
  2329. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2330. _teacherDesktopIconInfo.push(
  2331. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2332. )
  2333. _studentDesktopIconInfo.push(
  2334. )
  2335. }
  2336. //010606 组织
  2337. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2338. _teacherDesktopIconInfo.push(
  2339. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2340. )
  2341. _studentDesktopIconInfo.push(
  2342. )
  2343. }
  2344. //麒麟二中 和 民新小学
  2345. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2346. _teacherDesktopIconInfo.push(
  2347. )
  2348. }
  2349. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2350. _teacherDesktopIconInfo.push(
  2351. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2352. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2353. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2354. )
  2355. }
  2356. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2357. _hkTeacherDeskIconInfo.push(
  2358. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2359. )
  2360. }
  2361. //北师大附中(010601)
  2362. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2363. // _teacherDesktopIconInfo.push(
  2364. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2365. // )
  2366. // _studentDesktopIconInfo.push(
  2367. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2368. // )
  2369. // }
  2370. //樂善堂余近卿中學
  2371. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2372. _teacherDesktopIconInfo.push(
  2373. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2374. )
  2375. }
  2376. // Education Artificial Intelligence
  2377. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2378. _teacherDesktopIconInfo.push(
  2379. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2380. )
  2381. }
  2382. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2383. _teacherDesktopIconInfo.push(
  2384. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2385. )
  2386. }
  2387. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2388. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2389. _teacherDesktopIconInfo.push(
  2390. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2391. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2392. )
  2393. }
  2394. //麒麟二中
  2395. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2396. _studentDesktopIconInfo.push(
  2397. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2398. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2399. )
  2400. }
  2401. //万科双语
  2402. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2403. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2404. if (el.Name == '项目管理') {
  2405. el.Name = 'PBL项目'
  2406. }
  2407. return el
  2408. })
  2409. _studentDesktopIconInfo3.push(
  2410. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2411. )
  2412. }
  2413. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2414. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2415. return el.Name != '魔盒识字' && el.Name != '24点'
  2416. })
  2417. }
  2418. 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) {
  2419. _studentDesktopIconInfo.push(
  2420. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2421. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2422. )
  2423. }
  2424. //循环创建桌面图标
  2425. if (type == 1) {
  2426. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2427. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_studentDesktopIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_studentDesktopIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2444. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2445. _content = $$("div", {
  2446. className: "U_MD_D_KO",
  2447. "onmousedown": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2451. "onclick": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_hkZJLSStudentDeskIconInfo[i]])
  2455. }, _frag); //
  2456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2459. } //
  2460. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2461. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_ytyStudentDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_ytyStudentDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2476. } //
  2477. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2478. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_jccssylStudentDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_jccssylStudentDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2495. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_scnuaiStudentDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_scnuaiStudentDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2512. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_caleStudentDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_caleStudentDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2529. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_thuioeStudentDeskIconInfo[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_thuioeStudentDeskIconInfo[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2544. }
  2545. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2546. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_tpcStudentDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_tpcStudentDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2561. } //
  2562. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2563. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_chjyjStudentDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_chjyjStudentDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2580. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_szjkyStudentDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_szjkyStudentDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2595. }
  2596. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2597. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_x020201StudentDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_x020201StudentDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2614. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_SCNUETStudentDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_SCNUETStudentDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2631. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2632. _content = $$("div", {
  2633. className: "U_MD_D_KO",
  2634. "onmousedown": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_dseiStudentDeskIconInfo[i]]),
  2638. "onclick": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_dseiStudentDeskIconInfo[i]])
  2642. }, _frag); //
  2643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2646. }
  2647. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2648. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2665. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_nsfxStudentDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_nsfxStudentDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2682. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_stiaStudentDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_stiaStudentDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2697. }
  2698. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2699. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2700. _content = $$("div", {
  2701. className: "U_MD_D_KO",
  2702. "onmousedown": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_szdjgStudentDeskIconInfo[i]]),
  2706. "onclick": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_szdjgStudentDeskIconInfo[i]])
  2710. }, _frag); //
  2711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2714. }
  2715. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2716. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x010607StudentDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_x010607StudentDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2733. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2734. _content = $$("div", {
  2735. className: "U_MD_D_KO",
  2736. "onmousedown": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_xhlyStudentDeskIconInfo[i]]),
  2740. "onclick": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_xhlyStudentDeskIconInfo[i]])
  2744. }, _frag); //
  2745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2748. }
  2749. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2750. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2765. }
  2766. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2767. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x010503StudentDeskIconInfo[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_x010503StudentDeskIconInfo[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2782. }
  2783. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2784. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_x010504StudentDeskIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_x010504StudentDeskIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2801. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_x010505StudentDeskIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_x010505StudentDeskIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2818. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_x010404StudentDeskIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_x010404StudentDeskIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2835. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_x010204StudentDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_x010204StudentDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2852. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_x320101StudentDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_x320101StudentDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2869. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2870. _content = $$("div", {
  2871. className: "U_MD_D_KO",
  2872. "onmousedown": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_MOAIStudentDeskIcon[i]]),
  2876. "onclick": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_MOAIStudentDeskIcon[i]])
  2880. }, _frag); //
  2881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2884. }
  2885. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2886. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_trailStudentDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_trailStudentDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2903. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_trialStudentDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_trialStudentDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2920. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2937. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  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. }, [_szsyStudentDeskIconInfo[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_szsyStudentDeskIconInfo[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2952. }
  2953. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  2954. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_PREPAIStudentDeskIcon[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_PREPAIStudentDeskIcon[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  2969. }
  2970. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2971. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_demoCocoStudentDeskIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_demoCocoStudentDeskIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2988. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_x010608StudentDeskIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_x010608StudentDeskIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3005. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_x010611StudentDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_x010611StudentDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3022. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_x010612StudentDeskIconInfo[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_x010612StudentDeskIconInfo[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3037. }
  3038. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3039. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3040. _content = $$("div", {
  3041. className: "U_MD_D_KO",
  3042. "onmousedown": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_tianyuantudentDeskIconInfo[i]]),
  3046. "onclick": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_tianyuantudentDeskIconInfo[i]])
  3050. }, _frag); //
  3051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3054. }
  3055. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3056. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3057. _content = $$("div", {
  3058. className: "U_MD_D_KO",
  3059. "onmousedown": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_siesStudentDeskIconInfo[i]]),
  3063. "onclick": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_siesStudentDeskIconInfo[i]])
  3067. }, _frag); //
  3068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3071. }
  3072. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3073. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3074. _content = $$("div", {
  3075. className: "U_MD_D_KO",
  3076. "onmousedown": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_guzmsStudentDeskIconInfo[i]]),
  3080. "onclick": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_guzmsStudentDeskIconInfo[i]])
  3084. }, _frag); //
  3085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3088. }
  3089. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3090. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_hkStudentDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_hkStudentDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3107. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_tycyStudentDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_tycyStudentDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3124. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3125. _content = $$("div", {
  3126. className: "U_MD_D_KO",
  3127. "onmousedown": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_ckcpsStudentDeskIconInfo[i]]),
  3131. "onclick": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_ckcpsStudentDeskIconInfo[i]])
  3135. }, _frag); //
  3136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3139. }
  3140. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3141. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_hkaceStudentDeskIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_hkaceStudentDeskIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3158. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_BSDNSstudentDesktopIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3175. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_cocobizStudentDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_cocobizStudentDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3192. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3193. _content = $$("div", {
  3194. className: "U_MD_D_KO",
  3195. "onmousedown": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3199. "onclick": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_xxzjkyStudentDeskIconInfo[i]])
  3203. }, _frag); //
  3204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3207. }
  3208. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3209. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_studentDesktopIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_studentDesktopIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3226. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_tcStudentDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_tcStudentDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3243. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3244. _content = $$("div", {
  3245. className: "U_MD_D_KO",
  3246. "onmousedown": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_szscStudentDeskIconInfo[i]]),
  3250. "onclick": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_szscStudentDeskIconInfo[i]])
  3254. }, _frag); //
  3255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3258. }
  3259. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3260. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3261. _content = $$("div", {
  3262. className: "U_MD_D_KO",
  3263. "onmousedown": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_studentDesktopIconInfo3[i]]),
  3267. "onclick": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_studentDesktopIconInfo3[i]])
  3271. }, _frag); //
  3272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3275. }
  3276. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3277. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_studentDesktopIconInfo2[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_studentDesktopIconInfo2[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3294. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3295. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_wanketeacherDesktopIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_wanketeacherDesktopIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3312. }
  3313. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3314. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_wankeAdminDesktopIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_wankeAdminDesktopIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3331. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3332. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_scnuaiTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. }
  3350. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3351. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3352. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3353. continue
  3354. }
  3355. _content = $$("div", {
  3356. className: "U_MD_D_KO",
  3357. "onmousedown": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3361. "onclick": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_BSDNSteacherDesktopIconInfo[i]])
  3365. }, _frag); //
  3366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3369. }
  3370. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3371. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_scnuaiAdminDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_scnuaiAdminDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3388. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_jccssylTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_jccssylTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3408. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3409. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_caleTeacherDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_caleTeacherDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3428. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_tpcOrganizerDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_tpcOrganizerDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3445. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_tpcTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_tpcTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3465. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3466. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_teacherDesktopIconInfo2[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_teacherDesktopIconInfo2[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3485. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_thuioeTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_thuioeTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3505. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_lotechTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_lotechTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }//
  3524. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3525. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3526. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3545. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3546. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_siesTeacherDeskIconInfo[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_siesTeacherDeskIconInfo[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3563. }
  3564. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3565. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3566. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3567. continue
  3568. }
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_guzmsTeacherDeskIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_guzmsTeacherDeskIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3585. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3586. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_longhuaTeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_longhuaTeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3605. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3606. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_ytyTeacherDeskIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_ytyTeacherDeskIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3625. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3626. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_yunhaiTeacherDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3643. } //_hkStudentDeskIconInfo
  3644. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3645. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3646. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3665. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3666. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_ricohTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_ricohTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3685. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3686. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_hkTeacherDeskIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_hkTeacherDeskIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3705. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3706. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_tycyTeacherDeskIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_tycyTeacherDeskIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3725. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3726. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_ckcpsTeacherDeskIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3745. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3746. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_hkaceTeacherDeskIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_hkaceTeacherDeskIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3765. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3766. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_cocobizTeacherDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_cocobizTeacherDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3785. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3805. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_gdjgAdminDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_gdjgAdminDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3822. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3823. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_gdjgTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_gdjgTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3842. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3843. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3844. continue
  3845. }
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_szherTeacherDeskIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_szherTeacherDeskIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3862. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_heyuannAdminDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_heyuannAdminDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3879. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3880. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_heyuanTeacherDeskIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_heyuanTeacherDeskIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3897. } //
  3898. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3899. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_dseiAdminDeskIconInfo[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_dseiAdminDeskIconInfo[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3916. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3917. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_dseiTeacherDeskIconInfo[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_dseiTeacherDeskIconInfo[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3934. } //
  3935. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3936. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3937. _content = $$("div", {
  3938. className: "U_MD_D_KO",
  3939. "onmousedown": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_chjyjAdminDeskIconInfo[i]]),
  3943. "onclick": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_chjyjAdminDeskIconInfo[i]])
  3947. }, _frag); //
  3948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3951. }//
  3952. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3953. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3954. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3955. continue
  3956. }
  3957. _content = $$("div", {
  3958. className: "U_MD_D_KO",
  3959. "onmousedown": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_chjyjTeacherDeskIconInfo[i]]),
  3963. "onclick": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_chjyjTeacherDeskIconInfo[i]])
  3967. }, _frag); //
  3968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3971. }
  3972. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3973. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3974. _content = $$("div", {
  3975. className: "U_MD_D_KO",
  3976. "onmousedown": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_szjkyAdminDeskIconInfo[i]]),
  3980. "onclick": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_szjkyAdminDeskIconInfo[i]])
  3984. }, _frag); //
  3985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3988. }//
  3989. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3990. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3991. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3992. continue
  3993. }
  3994. _content = $$("div", {
  3995. className: "U_MD_D_KO",
  3996. "onmousedown": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_szjkyTeacherDeskIconInfo[i]]),
  4000. "onclick": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_szjkyTeacherDeskIconInfo[i]])
  4004. }, _frag); //
  4005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4008. }
  4009. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4010. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖动图标即打开了桌面应用
  4015. U.MD.D.click(this, obj);
  4016. }, [_x020201AdminDeskIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖动图标即打开了桌面应用
  4019. U.MD.D.click(this, obj);
  4020. }, [_x020201AdminDeskIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4025. }//
  4026. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4027. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4028. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4029. continue
  4030. }
  4031. _content = $$("div", {
  4032. className: "U_MD_D_KO",
  4033. "onmousedown": U.UF.C.closure(function (obj) {
  4034. //防止拖动图标即打开了桌面应用
  4035. U.MD.D.click(this, obj);
  4036. }, [_x020201TeacherDeskIconInfo[i]]),
  4037. "onclick": U.UF.C.closure(function (obj) {
  4038. //防止拖动图标即打开了桌面应用
  4039. U.MD.D.click(this, obj);
  4040. }, [_x020201TeacherDeskIconInfo[i]])
  4041. }, _frag); //
  4042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4045. }
  4046. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4047. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  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. }, [_SCNUETAdminDeskIconInfo[i]]),
  4054. "onclick": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_SCNUETAdminDeskIconInfo[i]])
  4058. }, _frag); //
  4059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4062. }//
  4063. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4064. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4065. if(_role === 0 && _SCNUETTeacherDeskIconInfo[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. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4074. "onclick": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_SCNUETTeacherDeskIconInfo[i]])
  4078. }, _frag); //
  4079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4082. }
  4083. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4084. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_futianAdminDeskIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_futianAdminDeskIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4101. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4102. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_futianTeacherDeskIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_futianTeacherDeskIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4121. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4122. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_MingdeTeacherDeskIcon[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_MingdeTeacherDeskIcon[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4141. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4142. _content = $$("div", {
  4143. className: "U_MD_D_KO",
  4144. "onmousedown": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_lhsAdminDesktopIconInfo[i]]),
  4148. "onclick": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_lhsAdminDesktopIconInfo[i]])
  4152. }, _frag); //
  4153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4156. }
  4157. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4158. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4159. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4160. continue
  4161. }
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_lhsteacherDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_lhsteacherDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4178. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4179. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_zhoujiateacherDesktopIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4198. for (i = 0; i < _hanDeskIcon.length; i++) {
  4199. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_hanDeskIcon[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_hanDeskIcon[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4218. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4219. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_orgStemDeskIcon[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_orgStemDeskIcon[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4236. }
  4237. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4238. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4239. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szulsDeskIcon[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_szulsDeskIcon[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4256. }
  4257. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4258. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4259. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4260. continue
  4261. }
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_orgDesktopIconInfo[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_orgDesktopIconInfo[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4276. }
  4277. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4278. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4279. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4280. continue
  4281. }
  4282. _content = $$("div", {
  4283. className: "U_MD_D_KO",
  4284. "onmousedown": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_schoolDesktopIconInfo[i]]),
  4288. "onclick": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_schoolDesktopIconInfo[i]])
  4292. }, _frag); //
  4293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4296. }
  4297. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4298. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4299. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4300. continue
  4301. }
  4302. _content = $$("div", {
  4303. className: "U_MD_D_KO",
  4304. "onmousedown": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_GMteacherDesktopIconInfo[i]]),
  4308. "onclick": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_GMteacherDesktopIconInfo[i]])
  4312. }, _frag); //
  4313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4316. }
  4317. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4318. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4319. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4320. continue
  4321. }
  4322. _content = $$("div", {
  4323. className: "U_MD_D_KO",
  4324. "onmousedown": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_SONGteacherDesktopIconInfo[i]]),
  4328. "onclick": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_SONGteacherDesktopIconInfo[i]])
  4332. }, _frag); //
  4333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4336. }
  4337. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4338. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_GMstudentDesktopIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_GMstudentDesktopIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4355. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_tcTeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_tcTeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4375. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_tcOrganizerDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_tcOrganizerDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4395. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_szscTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_szscTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4415. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_szscOrganizerDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_szscOrganizerDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4435. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_nsfxTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_nsfxTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4455. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_stiaTeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_stiaTeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4475. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_szdjgTeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_szdjgTeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4495. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010607TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010607TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4515. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_xhlyTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_xhlyTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4535. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4536. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4555. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4556. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4557. continue
  4558. }
  4559. _content = $$("div", {
  4560. className: "U_MD_D_KO",
  4561. "onmousedown": U.UF.C.closure(function (obj) {
  4562. //防止拖动图标即打开了桌面应用
  4563. U.MD.D.click(this, obj);
  4564. }, [_x010503TeacherDeskIconInfo[i]]),
  4565. "onclick": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_x010503TeacherDeskIconInfo[i]])
  4569. }, _frag); //
  4570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4573. }
  4574. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4575. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4576. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4577. continue
  4578. }
  4579. _content = $$("div", {
  4580. className: "U_MD_D_KO",
  4581. "onmousedown": U.UF.C.closure(function (obj) {
  4582. //防止拖动图标即打开了桌面应用
  4583. U.MD.D.click(this, obj);
  4584. }, [_x010504TeacherDeskIconInfo[i]]),
  4585. "onclick": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_x010504TeacherDeskIconInfo[i]])
  4589. }, _frag); //
  4590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4593. }
  4594. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4595. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4596. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4597. continue
  4598. }
  4599. _content = $$("div", {
  4600. className: "U_MD_D_KO",
  4601. "onmousedown": U.UF.C.closure(function (obj) {
  4602. //防止拖动图标即打开了桌面应用
  4603. U.MD.D.click(this, obj);
  4604. }, [_x010505TeacherDeskIconInfo[i]]),
  4605. "onclick": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010505TeacherDeskIconInfo[i]])
  4609. }, _frag); //
  4610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4613. }
  4614. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4615. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4616. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4617. continue
  4618. }
  4619. _content = $$("div", {
  4620. className: "U_MD_D_KO",
  4621. "onmousedown": U.UF.C.closure(function (obj) {
  4622. //防止拖动图标即打开了桌面应用
  4623. U.MD.D.click(this, obj);
  4624. }, [_x010404TeacherDeskIconInfo[i]]),
  4625. "onclick": U.UF.C.closure(function (obj) {
  4626. //防止拖动图标即打开了桌面应用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010404TeacherDeskIconInfo[i]])
  4629. }, _frag); //
  4630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4633. }
  4634. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4635. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4636. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4637. continue
  4638. }
  4639. _content = $$("div", {
  4640. className: "U_MD_D_KO",
  4641. "onmousedown": U.UF.C.closure(function (obj) {
  4642. //防止拖动图标即打开了桌面应用
  4643. U.MD.D.click(this, obj);
  4644. }, [_x010204TeacherDeskIconInfo[i]]),
  4645. "onclick": U.UF.C.closure(function (obj) {
  4646. //防止拖动图标即打开了桌面应用
  4647. U.MD.D.click(this, obj);
  4648. }, [_x010204TeacherDeskIconInfo[i]])
  4649. }, _frag); //
  4650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4653. }
  4654. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4655. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4656. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4657. continue
  4658. }
  4659. _content = $$("div", {
  4660. className: "U_MD_D_KO",
  4661. "onmousedown": U.UF.C.closure(function (obj) {
  4662. //防止拖动图标即打开了桌面应用
  4663. U.MD.D.click(this, obj);
  4664. }, [_x320101TeacherDeskIconInfo[i]]),
  4665. "onclick": U.UF.C.closure(function (obj) {
  4666. //防止拖动图标即打开了桌面应用
  4667. U.MD.D.click(this, obj);
  4668. }, [_x320101TeacherDeskIconInfo[i]])
  4669. }, _frag); //
  4670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4673. }
  4674. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4675. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4676. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4677. continue
  4678. }
  4679. _content = $$("div", {
  4680. className: "U_MD_D_KO",
  4681. "onmousedown": U.UF.C.closure(function (obj) {
  4682. //防止拖动图标即打开了桌面应用
  4683. U.MD.D.click(this, obj);
  4684. }, [_trailTeacherDeskIconInfo[i]]),
  4685. "onclick": U.UF.C.closure(function (obj) {
  4686. //防止拖动图标即打开了桌面应用
  4687. U.MD.D.click(this, obj);
  4688. }, [_trailTeacherDeskIconInfo[i]])
  4689. }, _frag); //
  4690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4693. }
  4694. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4695. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4696. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4697. continue
  4698. }
  4699. _content = $$("div", {
  4700. className: "U_MD_D_KO",
  4701. "onmousedown": U.UF.C.closure(function (obj) {
  4702. //防止拖动图标即打开了桌面应用
  4703. U.MD.D.click(this, obj);
  4704. }, [_trialTeacherDeskIconInfo[i]]),
  4705. "onclick": U.UF.C.closure(function (obj) {
  4706. //防止拖动图标即打开了桌面应用
  4707. U.MD.D.click(this, obj);
  4708. }, [_trialTeacherDeskIconInfo[i]])
  4709. }, _frag); //
  4710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4713. }
  4714. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4715. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4716. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4717. continue
  4718. }
  4719. _content = $$("div", {
  4720. className: "U_MD_D_KO",
  4721. "onmousedown": U.UF.C.closure(function (obj) {
  4722. //防止拖动图标即打开了桌面应用
  4723. U.MD.D.click(this, obj);
  4724. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4725. "onclick": U.UF.C.closure(function (obj) {
  4726. //防止拖动图标即打开了桌面应用
  4727. U.MD.D.click(this, obj);
  4728. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4729. }, _frag); //
  4730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4733. }
  4734. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4735. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4736. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4737. continue
  4738. }
  4739. _content = $$("div", {
  4740. className: "U_MD_D_KO",
  4741. "onmousedown": U.UF.C.closure(function (obj) {
  4742. //防止拖动图标即打开了桌面应用
  4743. U.MD.D.click(this, obj);
  4744. }, [_szsyTeacherDeskIconInfo[i]]),
  4745. "onclick": U.UF.C.closure(function (obj) {
  4746. //防止拖动图标即打开了桌面应用
  4747. U.MD.D.click(this, obj);
  4748. }, [_szsyTeacherDeskIconInfo[i]])
  4749. }, _frag); //
  4750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4753. }
  4754. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4755. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4756. if(_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher'){
  4757. continue
  4758. }
  4759. _content = $$("div", {
  4760. className: "U_MD_D_KO",
  4761. "onmousedown": U.UF.C.closure(function (obj) {
  4762. //防止拖动图标即打开了桌面应用
  4763. U.MD.D.click(this, obj);
  4764. }, [_PREPAITeacherDeskIcon[i]]),
  4765. "onclick": U.UF.C.closure(function (obj) {
  4766. //防止拖动图标即打开了桌面应用
  4767. U.MD.D.click(this, obj);
  4768. }, [_PREPAITeacherDeskIcon[i]])
  4769. }, _frag); //
  4770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4773. }
  4774. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4775. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4776. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4777. continue
  4778. }
  4779. _content = $$("div", {
  4780. className: "U_MD_D_KO",
  4781. "onmousedown": U.UF.C.closure(function (obj) {
  4782. //防止拖动图标即打开了桌面应用
  4783. U.MD.D.click(this, obj);
  4784. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4785. "onclick": U.UF.C.closure(function (obj) {
  4786. //防止拖动图标即打开了桌面应用
  4787. U.MD.D.click(this, obj);
  4788. }, [_demoCocoTeacherDeskIconInfo[i]])
  4789. }, _frag); //
  4790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4793. }
  4794. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4795. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4796. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4797. continue
  4798. }
  4799. _content = $$("div", {
  4800. className: "U_MD_D_KO",
  4801. "onmousedown": U.UF.C.closure(function (obj) {
  4802. //防止拖动图标即打开了桌面应用
  4803. U.MD.D.click(this, obj);
  4804. }, [_x010608TeacherDeskIconInfo[i]]),
  4805. "onclick": U.UF.C.closure(function (obj) {
  4806. //防止拖动图标即打开了桌面应用
  4807. U.MD.D.click(this, obj);
  4808. }, [_x010608TeacherDeskIconInfo[i]])
  4809. }, _frag); //
  4810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4813. }
  4814. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4815. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4816. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4817. continue
  4818. }
  4819. _content = $$("div", {
  4820. className: "U_MD_D_KO",
  4821. "onmousedown": U.UF.C.closure(function (obj) {
  4822. //防止拖动图标即打开了桌面应用
  4823. U.MD.D.click(this, obj);
  4824. }, [_x010611TeacherDeskIconInfo[i]]),
  4825. "onclick": U.UF.C.closure(function (obj) {
  4826. //防止拖动图标即打开了桌面应用
  4827. U.MD.D.click(this, obj);
  4828. }, [_x010611TeacherDeskIconInfo[i]])
  4829. }, _frag); //
  4830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4833. }
  4834. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4835. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4836. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4837. continue
  4838. }
  4839. _content = $$("div", {
  4840. className: "U_MD_D_KO",
  4841. "onmousedown": U.UF.C.closure(function (obj) {
  4842. //防止拖动图标即打开了桌面应用
  4843. U.MD.D.click(this, obj);
  4844. }, [_x010612TeacherDeskIconInfo[i]]),
  4845. "onclick": U.UF.C.closure(function (obj) {
  4846. //防止拖动图标即打开了桌面应用
  4847. U.MD.D.click(this, obj);
  4848. }, [_x010612TeacherDeskIconInfo[i]])
  4849. }, _frag); //
  4850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4853. }
  4854. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4855. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4856. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4857. continue
  4858. }
  4859. _content = $$("div", {
  4860. className: "U_MD_D_KO",
  4861. "onmousedown": U.UF.C.closure(function (obj) {
  4862. //防止拖动图标即打开了桌面应用
  4863. U.MD.D.click(this, obj);
  4864. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4865. "onclick": U.UF.C.closure(function (obj) {
  4866. //防止拖动图标即打开了桌面应用
  4867. U.MD.D.click(this, obj);
  4868. }, [_tianyuanTeacherDeskIconInfo[i]])
  4869. }, _frag); //
  4870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4873. }
  4874. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4875. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4876. if(_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher'){
  4877. continue
  4878. }
  4879. _content = $$("div", {
  4880. className: "U_MD_D_KO",
  4881. "onmousedown": U.UF.C.closure(function (obj) {
  4882. //防止拖动图标即打开了桌面应用
  4883. U.MD.D.click(this, obj);
  4884. }, [_MOAITeacherDeskIcon[i]]),
  4885. "onclick": U.UF.C.closure(function (obj) {
  4886. //防止拖动图标即打开了桌面应用
  4887. U.MD.D.click(this, obj);
  4888. }, [_MOAITeacherDeskIcon[i]])
  4889. }, _frag); //
  4890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4893. }
  4894. } else {
  4895. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4896. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4897. continue
  4898. }
  4899. _content = $$("div", {
  4900. className: "U_MD_D_KO",
  4901. "onmousedown": U.UF.C.closure(function (obj) {
  4902. //防止拖动图标即打开了桌面应用
  4903. U.MD.D.click(this, obj);
  4904. }, [_teacherDesktopIconInfo[i]]),
  4905. "onclick": U.UF.C.closure(function (obj) {
  4906. //防止拖动图标即打开了桌面应用
  4907. U.MD.D.click(this, obj);
  4908. }, [_teacherDesktopIconInfo[i]])
  4909. }, _frag); //
  4910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4913. }
  4914. }
  4915. } else {
  4916. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4917. _content = $$("div", {
  4918. className: "U_MD_D_KO",
  4919. style: { 'width': '124px', 'height': '145px' },
  4920. "onmousedown": U.UF.C.closure(function (obj) {
  4921. //防止拖动图标即打开了桌面应用
  4922. U.MD.D.click(this, obj);
  4923. }, [_easyDesktopIconInfo[i]]),
  4924. "onclick": U.UF.C.closure(function (obj) {
  4925. //防止拖动图标即打开了桌面应用
  4926. U.MD.D.click(this, obj);
  4927. }, [_easyDesktopIconInfo[i]])
  4928. }, _frag); //
  4929. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4932. }
  4933. }
  4934. if (type == 1) {
  4935. //加载好后给图标定位
  4936. U.MD.D.iconPostion($(_frag).Child());
  4937. } else {
  4938. //加载好后给图标定位
  4939. U.MD.D.iconPostion2($(_frag).Child());
  4940. }
  4941. //把图标加载到页面
  4942. el.appendChild(_frag);
  4943. }
  4944. /**
  4945. * 显示任务栏
  4946. *
  4947. * @param {element} 桌面元素
  4948. */
  4949. U.MD.D.I.displayTaskbar = function (el) {
  4950. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4951. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4952. //任务栏位置变化
  4953. U.selectEl(el).css({ "bottom": "0px" });
  4954. //桌面位置变话
  4955. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4956. }
  4957. }
  4958. //#region 桌面图标拖动逻辑
  4959. /**
  4960. * 桌面排列图标
  4961. *
  4962. * @param {element} 桌面元素
  4963. * @param {object} 上下相距的距离
  4964. * @param {object} 左右相距的距离
  4965. * @return {object} 命名空间
  4966. */
  4967. U.MD.D.iconPostion = function (childs, top, left) {
  4968. var i; //用于循环处理
  4969. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4970. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4971. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4972. for (i = 0; i < childs.length; i++) {
  4973. //如果竖排top超过了范围处理
  4974. if (top + 95 > US.height - 10) {
  4975. //left超过了页面范围处理,则向上重叠打印处理
  4976. if ((left + 180) > US.width) {
  4977. top -= 110;
  4978. left -= 90;
  4979. }
  4980. //没有超过范围,那么left+90添加到下一个竖排打印
  4981. else {
  4982. left += 90;
  4983. top = 15;
  4984. };
  4985. }
  4986. //给图标的位置赋值
  4987. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4988. if (i < childs.length - 1) {
  4989. //页面图标每次向下加95
  4990. top += 95;
  4991. }
  4992. }
  4993. //返回最后调用的图标的位置
  4994. return [top, left];
  4995. }
  4996. /**
  4997. * 桌面排列图标
  4998. *
  4999. * @param {element} 桌面元素
  5000. * @param {object} 上下相距的距离
  5001. * @param {object} 左右相距的距离
  5002. * @return {object} 命名空间
  5003. */
  5004. U.MD.D.iconPostion2 = function (childs, top, left) {
  5005. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5006. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5007. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5008. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5009. for (i = 0; i < childs.length; i++) {
  5010. //如果竖排top超过了范围处理
  5011. if (left + 150 > US.width - 10) {
  5012. //left超过了页面范围处理,则向上重叠打印处理
  5013. if ((top + 180) > US.Height) {
  5014. top -= 150;
  5015. left -= 150;
  5016. }
  5017. //没有超过范围,那么left+90添加到下一个竖排打印
  5018. else {
  5019. top += 150;
  5020. left = ol;
  5021. };
  5022. }
  5023. //给图标的位置赋值
  5024. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5025. if (i < childs.length - 1) {
  5026. //页面图标每次向下加95
  5027. left += 150;
  5028. }
  5029. }
  5030. //返回最后调用的图标的位置
  5031. return [top, left];
  5032. }
  5033. /**
  5034. * 桌面点击事件逻辑
  5035. *
  5036. * @param {element} 桌面元素
  5037. * @param {object} 上下相距的距离
  5038. * @param {object} 左右相距的距离
  5039. * @return {object} 命名空间
  5040. */
  5041. U.MD.D.click = function (el, obj) {
  5042. var _buttonnumber = event.button; //点击的按钮的事件值
  5043. var _userinfo = US.userInfo;
  5044. U.UF.EV.stopBubble(); //阻止向上冒泡
  5045. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5046. if (_buttonnumber < 2) {
  5047. //如果是click事件的处理
  5048. if (event.type == "click") {
  5049. //如果元素在mousemove事件中没有移动则出发click事件
  5050. if (!U.MD.D.I.IsDrag) {
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. U.alert("请先登录您的账号!");
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. //打开应用处理
  5058. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5059. }
  5060. }
  5061. }
  5062. //如果是mouse事件的处理
  5063. else {
  5064. if (US.Config.type == '1') {
  5065. //拖动处理,添加拖动和拖动结束事件
  5066. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5067. }
  5068. }
  5069. U.MD.D.I.IsDrag = false;
  5070. }
  5071. }
  5072. /**
  5073. * 拖动的处理
  5074. *
  5075. */
  5076. U.MD.D.iconMove = function () {
  5077. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5078. U.MD.D.I.IsDrag = true;
  5079. }
  5080. /**
  5081. * 拖动结束后,这里是定位处理,以网状的形式定位
  5082. *
  5083. * @param {element} 拖动的元素
  5084. * @return {object} 命名空间
  5085. */
  5086. U.MD.D.iconUp = function (el) {
  5087. var _top = 15,
  5088. _left = 20,
  5089. _margin,
  5090. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5091. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5092. if (_positioninfo["OT"] > 15) {
  5093. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5094. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5095. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5096. }
  5097. if (_positioninfo["OL"] > 20) {
  5098. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5099. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5100. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5101. }
  5102. //while循环判断么一个重叠的元素
  5103. do {
  5104. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5105. _top = _positioninfo[0] + 95; //得到定位后的top
  5106. _left = _positioninfo[1]; //得到定位后的left
  5107. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5108. }
  5109. /**
  5110. * 判断拖动后图标是否重叠
  5111. *
  5112. * @param {element} 拖动的元素
  5113. * @param {element} 桌面所有的元素
  5114. * @param {array} 拖动元素的位置
  5115. ----------[0] 上 top
  5116. ----------[1] 左 left
  5117. * @return {object} 命名空间
  5118. */
  5119. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5120. //循环所有的图标
  5121. for (var i = 0; i < childs.length; i++) {
  5122. //判断有没有和该图标诶子重叠的元素
  5123. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5124. return childs[i]; //如果有返回
  5125. }
  5126. }
  5127. }
  5128. //#endregion
  5129. //#endregion
  5130. //#region 桌面应用
  5131. /**
  5132. * 打开应用
  5133. *
  5134. * @param {string} 类型
  5135. -----------------Disk 网盘系统
  5136. -----------------PDisk 学习系统网盘
  5137. -----------------Poto 图片
  5138. -----------------Video 视频
  5139. -----------------Music 音乐
  5140. -----------------Word word
  5141. -----------------Excel excel
  5142. -----------------Txt 记事本
  5143. -----------------PB 学习系统
  5144. -----------------Blog 朋友圈系统
  5145. -----------------FTP ftp系统
  5146. -----------------Group 好友群
  5147. -----------------SY 首页系统
  5148. -----------------Set 个人设置
  5149. -----------------XSet 系统设置
  5150. -----------------App 我们所有的app
  5151. -----------------BC c.1473.cn 平台
  5152. -----------------CWeb d.1473.cn 变成平台
  5153. -----------------其他的外联系统 我们统一用iframe打开
  5154. * @param {array} 类型
  5155. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5156. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5157. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5158. 如果第一个参数为其他,则无第二个参数
  5159. * @returns {array}
  5160. */
  5161. window.addEventListener('message', function (e) { // 监听 message 事件
  5162. // alert(e.data.type);
  5163. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5164. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5165. //3是展示全部阶段 2学生 1老师 4专家
  5166. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5167. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5168. //3是展示全部阶段 2学生 1老师 4专家
  5169. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5170. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5171. //3是展示全部阶段 2学生 1老师 4专家
  5172. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5173. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5174. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5175. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5176. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5177. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5178. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5179. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5180. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5181. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5182. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5183. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5184. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5185. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5186. //3是展示全部阶段 2学生 1老师 4专家
  5187. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5188. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5189. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5190. U.MD.D.I.selectUser();
  5191. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5192. var _formel = document.getElementById("study");
  5193. U.UF.F.windowZooming(_formel);
  5194. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5195. var _formel = document.getElementById("studyDetail");
  5196. U.UF.F.windowZooming(_formel);
  5197. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5198. var _formel = document.getElementById("studyDetail");
  5199. U.UF.F.windowZooming(_formel);
  5200. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5201. var _formel = document.getElementById("studentStudy");
  5202. U.UF.F.windowZooming(_formel);
  5203. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5204. // var _formel = document.getElementById("study");
  5205. //如果最大化了,那么就把他缩小
  5206. // if (_formel.ismaximize) {
  5207. // return;
  5208. // }
  5209. // U.UF.F.windowZooming(_formel);
  5210. // U.UF.F.topWindow(_formel);
  5211. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5212. // var _formel = document.getElementById("studyDetail");
  5213. //如果最大化了,那么就把他缩小
  5214. // if (_formel.ismaximize) {
  5215. // return;
  5216. // }
  5217. // U.UF.F.windowZooming(_formel);
  5218. // U.UF.F.topWindow(_formel);
  5219. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5220. // var _formel = document.getElementById("studentStudy");
  5221. // if (_formel.ismaximize) {
  5222. // return;
  5223. // }
  5224. // U.UF.F.windowZooming(_formel);
  5225. // U.UF.F.topWindow(_formel);
  5226. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5227. var _formel = document.getElementById("study");
  5228. // if (_formel.ismaximize) {
  5229. // return;
  5230. // }
  5231. // U.UF.F.windowZooming(_formel);
  5232. U.UF.F.topWindow(_formel);
  5233. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5234. var _formel = document.getElementById("studentIndex");
  5235. U.UF.F.windowZooming(_formel);
  5236. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5237. var _formel = document.getElementById("studyDetailS");
  5238. U.UF.F.windowZooming(_formel);
  5239. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5240. var _formel = document.getElementById("studioIndex");
  5241. U.UF.F.windowZooming(_formel);
  5242. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5243. var _formel = document.getElementById("studyDetailStudio");
  5244. U.UF.F.windowZooming(_formel);
  5245. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5246. var _formel = document.getElementById("studyDetailStudio");
  5247. U.UF.F.windowZooming(_formel);
  5248. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5249. var _formel = document.getElementById("studyDetailNT");
  5250. U.UF.F.windowZooming(_formel);
  5251. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5252. var _formel = document.getElementById("studyDetailS");
  5253. U.UF.F.windowZooming(_formel);
  5254. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5255. var _formel = document.getElementById("studyDetailS");
  5256. U.UF.F.topWindow(_formel);
  5257. } else if (e.data.tools && e.data.tools == "1") {
  5258. // U.MD.D.I.openApplication("whiteboard")
  5259. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5260. } else if (e.data.tools && e.data.tools == "2") {
  5261. U.MD.D.I.openApplication("note")
  5262. } else if (e.data.tools && e.data.tools == "3") {
  5263. // U.MD.D.I.openApplication("mind")
  5264. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5265. } else if (e.data.tools && e.data.tools == "4") {
  5266. U.MD.D.I.openApplication("investigation")
  5267. } else if (e.data.tools && e.data.tools == "6") {
  5268. // U.MD.D.I.openApplication("doc")
  5269. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5270. } else if (e.data.tools && e.data.tools == "7") {
  5271. // U.MD.D.I.openApplication("mindNetwork")
  5272. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5273. } else if (e.data.tools && e.data.tools == "8") {
  5274. U.MD.D.I.openApplication("library")
  5275. } else if (e.data.tools && e.data.tools == "17") {
  5276. U.MD.D.I.openApplication("stuLibrary")
  5277. } else if (e.data.tools && e.data.tools == "18") {
  5278. U.MD.D.I.openApplication("train")
  5279. } else if (e.data.tools && e.data.tools == "21") {
  5280. U.MD.D.I.openApplication("program")
  5281. } else if (e.data.tools && e.data.tools == "22") {
  5282. U.MD.D.I.openApplication("AIprogram2")
  5283. } else if (e.data.tools && e.data.tools == "23") {
  5284. U.MD.D.I.openApplication("Pythonprogram")
  5285. } else if (e.data.tools && e.data.tools == "24") {
  5286. U.MD.D.I.openApplication("AIprogram")
  5287. } else if (e.data.tools && e.data.tools == "25") {
  5288. U.MD.D.I.openApplication("sys")
  5289. } else if (e.data.tools && e.data.tools == "26") {
  5290. // U.MD.D.I.openApplication("courseDesign")
  5291. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5292. } else if (e.data.tools && e.data.tools == "31") {
  5293. U.MD.D.I.openApplication("netWorkPanel")
  5294. } else if (e.data.tools && e.data.tools == "32") {
  5295. U.MD.D.I.openApplication("codeEdit")
  5296. } else if (e.data.tools && e.data.tools == "57") {
  5297. U.MD.D.I.openApplication("CocoPi")
  5298. } else if (e.data.tools && e.data.tools == "63") {
  5299. U.MD.D.I.openApplication("Wood")
  5300. } else if (e.data.tools && e.data.tools == "58") {
  5301. U.MD.D.I.openApplication("car")
  5302. } else if (e.data.tools && e.data.tools == "59") {
  5303. U.MD.D.I.openApplication("lineSearch")
  5304. } else if (e.data.tools && e.data.tools == "60") {
  5305. U.MD.D.I.openApplication("deepLearning")
  5306. } else if (e.data.tools && e.data.tools == "61") {
  5307. U.MD.D.I.openApplication("allHistory")
  5308. } else if (e.data.tools && e.data.tools == "28") {
  5309. U.MD.D.I.openApplication("translation")
  5310. } else if (e.data.tools && e.data.tools == "37") {
  5311. U.MD.D.I.openApplication("mohe")
  5312. } else if (e.data.tools && e.data.tools == "38") {
  5313. U.MD.D.I.openApplication("24game")
  5314. } else if (e.data.tools && e.data.tools == "39") {
  5315. U.MD.D.I.openApplication("GeoGebra")
  5316. } else if (e.data.tools && e.data.tools == "43") {
  5317. U.MD.D.I.openApplication("studentEvaluate")
  5318. } else if (e.data.tools && e.data.tools == "44") {
  5319. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5320. } else if (e.data.tools && e.data.tools == "46") {
  5321. U.MD.D.I.openApplication("project")
  5322. } else if (e.data.tools && e.data.tools == "71") {
  5323. U.MD.D.I.openApplication("aigptCourse")
  5324. } else if (e.data.tools && e.data.tools == "72") {
  5325. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5326. } else if (e.data.tools && e.data.tools == "1s") {
  5327. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5328. } else if (e.data.tools && e.data.tools == "3s") {
  5329. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5330. } else if (e.data.tools && e.data.tools == "6s") {
  5331. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5332. } else if (e.data.tools && e.data.tools == "1studio") {
  5333. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5334. } else if (e.data.tools && e.data.tools == "3studio") {
  5335. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5336. } else if (e.data.tools && e.data.tools == "6studio") {
  5337. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5338. } else if (e.data.tools && e.data.tools == "3y") {
  5339. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5340. } else if (e.data.tools && e.data.tools == "1y") {
  5341. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5342. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5343. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5344. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5345. U.MD.D.I.openApplication("AIAnalyse")
  5346. } else if (e.data.tools && e.data.tools == "1teacher") {
  5347. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5348. } else if (e.data.tools && e.data.tools == "3teacher") {
  5349. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5350. } else if (e.data.tools && e.data.tools == "7teacher") {
  5351. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5352. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5353. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5354. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5355. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5356. } else if (e.data.tools && e.data.tools == "1E") {
  5357. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5358. } else if (e.data.tools && e.data.tools == "3E") {
  5359. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5360. } else if (e.data.tools && e.data.tools == "57y") {
  5361. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5362. } else if (e.data.tools && e.data.tools == "57u") {
  5363. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5364. } else if (e.data.tools && e.data.tools == "57teacher") {
  5365. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5366. } else if (e.data.tools && e.data.tools == "64") {
  5367. U.MD.D.I.openApplication("AIChat")
  5368. } else if (e.data.tools && e.data.tools == "66") {
  5369. U.MD.D.I.openApplication("formulaEdi")
  5370. } else if (e.data.tools && e.data.tools == "67") {
  5371. U.MD.D.I.openApplication("molStr")
  5372. } else if (e.data.tools && e.data.tools == "68") {
  5373. U.MD.D.I.openApplication("timeAxis")
  5374. } else if (e.data.tools && e.data.tools == "openCourse") {
  5375. let _data = {
  5376. typea: e.data.typea || '',
  5377. typeb: e.data.typeb || '',
  5378. typed: e.data.typed || '',
  5379. }
  5380. U.MD.D.I.openInApplication("index", _data)
  5381. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5382. let _data = {
  5383. classid: e.data.classid || '',
  5384. }
  5385. U.MD.D.I.openInApplication("dataClass", _data)
  5386. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5387. let _data = {
  5388. cid: e.data.cid || '',
  5389. gid: e.data.gid || '',
  5390. }
  5391. U.MD.D.I.openInApplication("opencCscl", _data)
  5392. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5393. U.MD.D.I.openApplication("dataBoardTest")
  5394. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5395. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5396. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5397. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5398. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5399. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5400. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5401. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5402. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5403. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5404. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5405. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5406. }else if (e.data.tools && e.data.tools == "loginSz") {
  5407. U.MD.D.I.openInApplication("loginSz")
  5408. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5409. if($('#classroom_observation_board')[0]){
  5410. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5411. }
  5412. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5413. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5414. if($('#classroom_observation_ob_comment')[0]){
  5415. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5416. }
  5417. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5418. }else if (e.data.tools && e.data.tools == "logout"){
  5419. U.MD.U.LO.logoutSystem()
  5420. }else if (e.data.tools && e.data.tools == "getLogin"){
  5421. let _iframe = $('#UI_Login')[0];
  5422. if (_iframe) {
  5423. var userInfo = US.userInfo;
  5424. var type = 2
  5425. if(userInfo && userInfo.userid){
  5426. type = 1
  5427. }
  5428. _contentWindow = _iframe.contentWindow;
  5429. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5430. }
  5431. }
  5432. });
  5433. U.MD.D.I.selectUser = function () {
  5434. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5435. if (res.value[0].length > 0) {
  5436. US.userInfo = res.value[0][0];
  5437. $(".userName")[0].innerHTML = US.userInfo.username;
  5438. }
  5439. }, [], { "type": "GET", "withCredentials": true });
  5440. }
  5441. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5442. var _userinfo = US.userInfo, //登录用户信息
  5443. _userid = US.userInfo.userid, //登录用户id
  5444. _oid = _userinfo.organizeid,
  5445. _type = US.userInfo.type,
  5446. _org = US.userInfo.org,
  5447. _role = US.userInfo.role,
  5448. _classId = US.userInfo.classid;
  5449. if (_type == 4) {
  5450. tType = 4
  5451. }
  5452. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5453. if(opArray.includes(str)){
  5454. let _str = str
  5455. if(str == 'appStore'){
  5456. _str = "cocoFlow"
  5457. }else if(str == "futureClass"){
  5458. _str = "cocoNote"
  5459. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5460. _str = "IntelligentForm"
  5461. }else if(str == "testStudent" || str == "testStudentSies"){
  5462. _str = "TeacherCenter"
  5463. }
  5464. try {
  5465. if (data) {
  5466. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5467. }else {
  5468. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5469. }
  5470. } catch (error) {
  5471. console.log(error);
  5472. }
  5473. }
  5474. switch (str) {
  5475. case "studyDetailNT": //无终端模式
  5476. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5477. setTimeout(() => {
  5478. U.MD.U.L.login();
  5479. }, 2000);
  5480. } else {
  5481. _formdiv = new U.UF.UI.form(
  5482. "课程详情",
  5483. $$("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 }), {
  5484. "id": "studyDetailNT",
  5485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. _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); } }
  5491. break;
  5492. }
  5493. case "studyDetail":
  5494. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5495. setTimeout(() => {
  5496. U.MD.U.L.login();
  5497. }, 2000);
  5498. } else {
  5499. _formdiv = new U.UF.UI.form(
  5500. "课程详情",
  5501. $$("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 }), {
  5502. "id": "studyDetail",
  5503. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5504. "onresize": function () { }
  5505. }, {
  5506. closecallback: function () { }
  5507. }, { "style": { "height": "36px" } }).form; //创建窗体
  5508. _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); } }
  5509. break;
  5510. }
  5511. case "studyDetailTrain":
  5512. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5513. setTimeout(() => {
  5514. U.MD.U.L.login();
  5515. }, 2000);
  5516. } else {
  5517. _formdiv = new U.UF.UI.form(
  5518. "培训详情",
  5519. $$("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 }), {
  5520. "id": "studyDetailTrain",
  5521. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _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); } }
  5527. break;
  5528. }
  5529. case "studyDetailS":
  5530. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5531. setTimeout(() => {
  5532. U.MD.U.L.login();
  5533. }, 2000);
  5534. } else {
  5535. _formdiv = new U.UF.UI.form(
  5536. "项目详情",
  5537. $$("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 }), {
  5538. "id": "studyDetailS",
  5539. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5540. "onresize": function () { }
  5541. }, {
  5542. closecallback: function () { }
  5543. }, { "style": { "height": "36px" } }).form; //创建窗体
  5544. _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); } }
  5545. break;
  5546. }
  5547. case "studyDetailStudio":
  5548. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5549. setTimeout(() => {
  5550. U.MD.U.L.login();
  5551. }, 2000);
  5552. } else {
  5553. _formdiv = new U.UF.UI.form(
  5554. "工作详情",
  5555. $$("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 }), {
  5556. "id": "studyDetailStudio",
  5557. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5558. "onresize": function () { }
  5559. }, {
  5560. closecallback: function () { }
  5561. }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. _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); } }
  5563. break;
  5564. }
  5565. case "studyDetailS5":
  5566. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5567. setTimeout(() => {
  5568. U.MD.U.L.login();
  5569. }, 2000);
  5570. } else {
  5571. _formdiv = new U.UF.UI.form(
  5572. "项目详情",
  5573. $$("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 }), {
  5574. "id": "studyDetailS",
  5575. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5576. "onresize": function () { }
  5577. }, {
  5578. closecallback: function () { }
  5579. }, { "style": { "height": "36px" } }).form; //创建窗体
  5580. _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); } }
  5581. break;
  5582. }
  5583. case "studyDetailGM":
  5584. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5585. setTimeout(() => {
  5586. U.MD.U.L.login();
  5587. }, 2000);
  5588. } else {
  5589. _formdiv = new U.UF.UI.form(
  5590. "课程详情",
  5591. $$("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 }), {
  5592. "id": "studyDetail",
  5593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5594. "onresize": function () { }
  5595. }, {
  5596. closecallback: function () { }
  5597. }, { "style": { "height": "36px" } }).form; //创建窗体
  5598. _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); } }
  5599. break;
  5600. }
  5601. case "hanUrl":
  5602. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5603. setTimeout(() => {
  5604. U.MD.U.L.login();
  5605. }, 2000);
  5606. } else {
  5607. _formdiv = new U.UF.UI.form(
  5608. "汉字宫",
  5609. $$("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" }), {
  5610. "id": "hanUrl",
  5611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () { }
  5615. }, { "style": { "height": "36px" } }).form; //创建窗体
  5616. _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); } }
  5617. break;
  5618. }
  5619. case "index":
  5620. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5621. setTimeout(() => {
  5622. U.MD.U.L.login();
  5623. }, 2000);
  5624. } else {
  5625. _formdiv = new U.UF.UI.form(
  5626. "课程中心",
  5627. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  5628. "id": "study",
  5629. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5630. "onresize": function () { }
  5631. }, {
  5632. closecallback: function () { }
  5633. }, { "style": { "height": "36px" } }).form; //创建窗体
  5634. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5635. break;
  5636. }
  5637. case "dataClass":
  5638. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5639. setTimeout(() => {
  5640. U.MD.U.L.login();
  5641. }, 2000);
  5642. } else {
  5643. _formdiv = new U.UF.UI.form(
  5644. "数据报告",
  5645. $$("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 }), {
  5646. "id": "dataClass",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _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); } }
  5653. break;
  5654. }
  5655. case "opencCscl":
  5656. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5657. setTimeout(() => {
  5658. U.MD.U.L.login();
  5659. }, 2000);
  5660. } else {
  5661. _formdiv = new U.UF.UI.form(
  5662. "协同建构",
  5663. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5664. "id": "futureClass",
  5665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5666. "onresize": function () { }
  5667. }, {
  5668. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5669. }, { "style": { "height": "36px" } }).form; //创建窗体
  5670. _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); } }
  5671. break;
  5672. }
  5673. case "openCourseUpdate":
  5674. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5675. setTimeout(() => {
  5676. U.MD.U.L.login();
  5677. }, 2000);
  5678. } else {
  5679. _formdiv = new U.UF.UI.form(
  5680. "课程管理",
  5681. $$("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 }), {
  5682. "id": "openCourseUpdate",
  5683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. break;
  5689. }
  5690. case "openNewCourseUpdate":
  5691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5692. setTimeout(() => {
  5693. U.MD.U.L.login();
  5694. }, 2000);
  5695. } else {
  5696. _formdiv = new U.UF.UI.form(
  5697. "课程管理",
  5698. $$("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 }), {
  5699. "id": "openCourseUpdate",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. break;
  5706. }
  5707. case "openCourseEUpdate":
  5708. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5709. setTimeout(() => {
  5710. U.MD.U.L.login();
  5711. }, 2000);
  5712. } else {
  5713. _formdiv = new U.UF.UI.form(
  5714. "课程管理",
  5715. $$("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 }), {
  5716. "id": "openCourseUpdate",
  5717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. break;
  5723. }
  5724. case "openCourseAiUpdate":
  5725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5726. setTimeout(() => {
  5727. U.MD.U.L.login();
  5728. }, 2000);
  5729. } else {
  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-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5733. "id": "openCourseUpdate",
  5734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. break;
  5740. }
  5741. case "openCourseAiUpdate2":
  5742. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5743. setTimeout(() => {
  5744. U.MD.U.L.login();
  5745. }, 2000);
  5746. } else {
  5747. _formdiv = new U.UF.UI.form(
  5748. "课程管理",
  5749. $$("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 }), {
  5750. "id": "openCourseUpdate",
  5751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5752. "onresize": function () { }
  5753. }, {
  5754. closecallback: function () { }
  5755. }, { "style": { "height": "36px" } }).form; //创建窗体
  5756. break;
  5757. }
  5758. case "openCourseNewUpdate":
  5759. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5760. setTimeout(() => {
  5761. U.MD.U.L.login();
  5762. }, 2000);
  5763. } else {
  5764. _formdiv = new U.UF.UI.form(
  5765. "课程管理",
  5766. $$("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 }), {
  5767. "id": "openCourseUpdate",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. break;
  5774. }
  5775. case "inviteLoginSz":
  5776. _formdiv = new U.UF.UI.form(
  5777. "随机码登录",
  5778. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5779. "id": "loginSz",
  5780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. break;
  5786. case "loginSz":
  5787. _formdiv = new U.UF.UI.form(
  5788. "教师登录",
  5789. $$("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" }), {
  5790. "id": "loginSz",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. break;
  5797. case "teacher":
  5798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5799. setTimeout(() => {
  5800. U.MD.U.L.login();
  5801. }, 2000);
  5802. } else {
  5803. _formdiv = new U.UF.UI.form(
  5804. "教师管理",
  5805. $$("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 }), {
  5806. "id": "teacher",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. break;
  5813. }
  5814. case "dataBoardSZArea":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "综合数据看板",
  5822. $$("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 }), {
  5823. "id": "dataBoardSZArea",
  5824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. break;
  5830. }
  5831. case "dataBoardSZCity":
  5832. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5833. setTimeout(() => {
  5834. U.MD.U.L.login();
  5835. }, 2000);
  5836. } else {
  5837. _formdiv = new U.UF.UI.form(
  5838. "综合数据看板",
  5839. $$("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 }), {
  5840. "id": "dataBoardSZCity",
  5841. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. break;
  5847. }
  5848. case "classroom_observation_board":
  5849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5850. setTimeout(() => {
  5851. U.MD.U.L.login();
  5852. }, 2000);
  5853. } else {
  5854. _formdiv = new U.UF.UI.form(
  5855. "课堂观察",
  5856. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5857. "id": "classroom_observation_board",
  5858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. break;
  5864. }
  5865. case "classroom_observation_ob_comment":
  5866. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5867. setTimeout(() => {
  5868. U.MD.U.L.login();
  5869. }, 2000);
  5870. } else {
  5871. _formdiv = new U.UF.UI.form(
  5872. "课堂审核",
  5873. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5874. "id": "classroom_observation_ob_comment",
  5875. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5876. "onresize": function () { }
  5877. }, {
  5878. closecallback: function () { }
  5879. }, { "style": { "height": "36px" } }).form; //创建窗体
  5880. break;
  5881. }
  5882. case "gptConfig":
  5883. _formdiv = new U.UF.UI.form(
  5884. data.name ? data.name : "应用中心",
  5885. $$("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": data.url }), {
  5886. "id": "gptConfig" + data.id,
  5887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5888. "onresize": function () { }
  5889. }, {
  5890. closecallback: function () { }
  5891. }, { "style": { "height": "36px" } }).form; //创建窗体
  5892. break;
  5893. case "testDetail":
  5894. _formdiv = new U.UF.UI.form(
  5895. "表单填写",
  5896. $$("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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5897. "id": "testDetail" + data,
  5898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. break;
  5904. }
  5905. }
  5906. U.MD.D.I.openApplication = function (str, obj, info) {
  5907. obj = obj || {};
  5908. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5909. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5910. _userinfo = US.userInfo, //登录用户信息
  5911. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5912. _oid = obj.organizeid || _userinfo.organizeid,
  5913. _type = US.userInfo.type,
  5914. _org = obj.org || US.userInfo.org,
  5915. _role = US.userInfo.role,
  5916. _classId = US.userInfo.classid,
  5917. _TscreenType = 1
  5918. _screenType = 2,
  5919. _SscreenType = 3;
  5920. let iframeBool = true
  5921. if(U.UF.UI.form.allForm[str]){
  5922. iframeBool = false
  5923. }
  5924. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5925. return;
  5926. }
  5927. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5928. if(opArray.includes(str)){
  5929. let _str = str
  5930. if(str == 'appStore'){
  5931. _str = "cocoFlow"
  5932. }else if(str == "futureClass"){
  5933. _str = "cocoNote"
  5934. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5935. _str = "IntelligentForm"
  5936. }else if(str == "testStudent" || str == "testStudentSies"){
  5937. _str = "TeacherCenter"
  5938. }
  5939. try {
  5940. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5941. } catch (error) {
  5942. console.log(error);
  5943. }
  5944. }
  5945. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5946. switch (str) {
  5947. case "studnetProject": //好友打开
  5948. _formdiv = new U.UF.UI.form(
  5949. "我的项目",
  5950. $$("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 }), {
  5951. "id": "studnetProject",
  5952. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //创建窗体
  5957. _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); } }
  5958. break;
  5959. case "studentEvaluate": //好友打开
  5960. _formdiv = new U.UF.UI.form(
  5961. "我的评价",
  5962. $$("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 }), {
  5963. "id": "studentEvaluate",
  5964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5965. "onresize": function () { }
  5966. }, {
  5967. closecallback: function () { }
  5968. }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. _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); } }
  5970. break;
  5971. case "my":
  5972. _formdiv = new U.UF.UI.form(
  5973. "我的资料",
  5974. $$("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 }), {
  5975. "id": "my",
  5976. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. _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); } }
  5982. break;
  5983. case "program":
  5984. _formdiv = new U.UF.UI.form(
  5985. "编程平台",
  5986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5987. "id": "program",
  5988. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //创建窗体
  5993. _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); } }
  5994. break;
  5995. case "library":
  5996. _formdiv = new U.UF.UI.form(
  5997. "素材库",
  5998. $$("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 }), {
  5999. "id": "library",
  6000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6001. "onresize": function () { }
  6002. }, {
  6003. closecallback: function () { }
  6004. }, { "style": { "height": "36px" } }).form; //创建窗体
  6005. _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); } }
  6006. break;
  6007. case "whiteboard":
  6008. _formdiv = new U.UF.UI.form(
  6009. "电子白板",
  6010. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6011. "id": "whiteboard",
  6012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6013. "onresize": function () { }
  6014. }, {
  6015. closecallback: function () { }
  6016. }, { "style": { "height": "36px" } }).form; //创建窗体
  6017. _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); } }
  6018. break;
  6019. case "investigation":
  6020. _formdiv = new U.UF.UI.form(
  6021. "问卷调查",
  6022. $$("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 }), {
  6023. "id": "investigation",
  6024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6025. "onresize": function () { }
  6026. }, {
  6027. closecallback: function () { }
  6028. }, { "style": { "height": "36px" } }).form; //创建窗体
  6029. _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); } }
  6030. break;
  6031. case "note":
  6032. _formdiv = new U.UF.UI.form(
  6033. "便签分类",
  6034. $$("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 }), {
  6035. "id": "note",
  6036. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6037. "onresize": function () { }
  6038. }, {
  6039. closecallback: function () { }
  6040. }, { "style": { "height": "36px" } }).form; //创建窗体
  6041. _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); } }
  6042. break;
  6043. // case "score":
  6044. // _formdiv = new U.UF.UI.form(
  6045. // "量规评分",
  6046. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6047. // "id": "score",
  6048. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6049. // "onresize": function() {}
  6050. // }, {
  6051. // closecallback: function() {}
  6052. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6053. // _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); } }
  6054. // break;
  6055. case "mind":
  6056. _formdiv = new U.UF.UI.form(
  6057. "思维导图",
  6058. $$("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"
  6059. "id": "mind",
  6060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //创建窗体
  6065. _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); } }
  6066. break;
  6067. case "doc":
  6068. // U.MD.D.I.isRoom();
  6069. _formdiv = new U.UF.UI.form(
  6070. "协同文档",
  6071. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6072. "id": "doc",
  6073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6079. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6080. // })
  6081. _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); } }
  6082. break;
  6083. case "studentStudy":
  6084. _formdiv = new U.UF.UI.form(
  6085. "课程中心",
  6086. $$("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
  6087. "id": "studentStudy",
  6088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //创建窗体
  6093. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6094. break;
  6095. case "train": //好友打开
  6096. _formdiv = new U.UF.UI.form(
  6097. "训练平台",
  6098. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6099. "id": "train",
  6100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6106. break;
  6107. case "mindNetwork": //好友打开
  6108. _formdiv = new U.UF.UI.form(
  6109. "思维网格",
  6110. $$("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 }), {
  6111. "id": "mindNetwork",
  6112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6118. break;
  6119. case "studentClassRoom": //好友打开
  6120. _formdiv = new U.UF.UI.form(
  6121. "实时课堂",
  6122. $$("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 }), {
  6123. "id": "studentClassRoom",
  6124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6130. setTimeout(() => {
  6131. U.UF.F.windowZooming(_formdiv)
  6132. }, 0);
  6133. break;
  6134. }
  6135. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6136. switch (str) {
  6137. case "studnetProject": //好友打开
  6138. _formdiv = new U.UF.UI.form(
  6139. "我的项目",
  6140. $$("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 }), {
  6141. "id": "studnetProject",
  6142. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "studentEvaluate": //好友打开
  6150. _formdiv = new U.UF.UI.form(
  6151. "我的评价",
  6152. $$("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 }), {
  6153. "id": "studentEvaluate",
  6154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "my":
  6162. _formdiv = new U.UF.UI.form(
  6163. "我的资料",
  6164. $$("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 }), {
  6165. "id": "my",
  6166. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "program":
  6174. _formdiv = new U.UF.UI.form(
  6175. "编程平台",
  6176. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6177. "id": "program",
  6178. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "library":
  6186. _formdiv = new U.UF.UI.form(
  6187. "素材库",
  6188. $$("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 }), {
  6189. "id": "library",
  6190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "whiteboard":
  6198. _formdiv = new U.UF.UI.form(
  6199. "电子白板",
  6200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6201. "id": "whiteboard",
  6202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. break;
  6209. case "investigation":
  6210. _formdiv = new U.UF.UI.form(
  6211. "问卷调查",
  6212. $$("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 }), {
  6213. "id": "investigation",
  6214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _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); } }
  6220. break;
  6221. case "note":
  6222. _formdiv = new U.UF.UI.form(
  6223. "便签分类",
  6224. $$("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 }), {
  6225. "id": "note",
  6226. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _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); } }
  6232. break;
  6233. // case "score":
  6234. // _formdiv = new U.UF.UI.form(
  6235. // "量规评分",
  6236. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6237. // "id": "score",
  6238. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6239. // "onresize": function() {}
  6240. // }, {
  6241. // closecallback: function() {}
  6242. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. // _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); } }
  6244. // break;
  6245. case "mind":
  6246. _formdiv = new U.UF.UI.form(
  6247. "思维导图",
  6248. $$("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"
  6249. "id": "mind",
  6250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. case "doc":
  6258. // U.MD.D.I.isRoom();
  6259. _formdiv = new U.UF.UI.form(
  6260. "协同文档",
  6261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6262. "id": "doc",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6269. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6270. })
  6271. _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); } }
  6272. break;
  6273. case "train": //好友打开
  6274. _formdiv = new U.UF.UI.form(
  6275. "训练平台",
  6276. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6277. "id": "train",
  6278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, { "style": { "height": "36px" } }).form; //创建窗体
  6283. _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); } }
  6284. break;
  6285. case "studentStudy":
  6286. _formdiv = new U.UF.UI.form(
  6287. "课程中心",
  6288. $$("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
  6289. "id": "studentStudy",
  6290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6291. "onresize": function () { }
  6292. }, {
  6293. closecallback: function () { }
  6294. }, { "style": { "height": "36px" } }).form; //创建窗体
  6295. _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); } }
  6296. break;
  6297. case "mindNetwork": //好友打开
  6298. _formdiv = new U.UF.UI.form(
  6299. "思维网格",
  6300. $$("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 }), {
  6301. "id": "mindNetwork",
  6302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //创建窗体
  6307. _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); } }
  6308. break;
  6309. case "studentClassRoom": //好友打开
  6310. _formdiv = new U.UF.UI.form(
  6311. "实时课堂",
  6312. $$("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 }), {
  6313. "id": "studentClassRoom",
  6314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //创建窗体
  6319. _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); } }
  6320. setTimeout(() => {
  6321. U.UF.F.windowZooming(_formdiv)
  6322. }, 0);
  6323. break;
  6324. }
  6325. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6326. //选择应用处理
  6327. switch (str) {
  6328. case "project": //好友打开
  6329. _formdiv = new U.UF.UI.form(
  6330. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6331. $$("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 }), {
  6332. "id": "project",
  6333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. case "student":
  6341. _formdiv = new U.UF.UI.form(
  6342. "学生管理",
  6343. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6344. "id": "student",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6351. break;
  6352. case "evaluate":
  6353. _formdiv = new U.UF.UI.form(
  6354. "学生评价",
  6355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6356. "id": "evaluate",
  6357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6363. break;
  6364. case "sys":
  6365. _formdiv = new U.UF.UI.form(
  6366. "目标管理",
  6367. $$("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 }), {
  6368. "id": "sys",
  6369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. case "courseDesign":
  6377. _formdiv = new U.UF.UI.form(
  6378. "项目设计",
  6379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6380. "id": "courseDesign",
  6381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "program":
  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": "https://x.cocorobo.cn" }), {
  6392. "id": "program",
  6393. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6399. break;
  6400. case "class":
  6401. _formdiv = new U.UF.UI.form(
  6402. "班级管理",
  6403. $$("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 }), {
  6404. "id": "class",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "Grade":
  6413. _formdiv = new U.UF.UI.form(
  6414. "年级管理",
  6415. $$("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 }), {
  6416. "id": "Grade",
  6417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "teacherOffice":
  6425. _formdiv = new U.UF.UI.form(
  6426. "教研室",
  6427. $$("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 }), {
  6428. "id": "teacherOffice",
  6429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. case "my":
  6437. _formdiv = new U.UF.UI.form(
  6438. "我的资料",
  6439. $$("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 }), {
  6440. "id": "my",
  6441. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _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); } }
  6447. break;
  6448. case "notice":
  6449. _formdiv = new U.UF.UI.form(
  6450. "通知公告",
  6451. $$("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 }), {
  6452. "id": "notice",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _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); } }
  6459. break;
  6460. case "library":
  6461. _formdiv = new U.UF.UI.form(
  6462. "素材库",
  6463. $$("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 }), {
  6464. "id": "library",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. break;
  6472. case "whiteboard":
  6473. _formdiv = new U.UF.UI.form(
  6474. "电子白板",
  6475. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6476. "id": "whiteboard",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. break;
  6484. case "investigation":
  6485. _formdiv = new U.UF.UI.form(
  6486. "问卷调查",
  6487. $$("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 }), {
  6488. "id": "investigation",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _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); } }
  6495. break;
  6496. case "note":
  6497. _formdiv = new U.UF.UI.form(
  6498. "便签分类",
  6499. $$("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 }), {
  6500. "id": "note",
  6501. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _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); } }
  6507. break;
  6508. // case "score":
  6509. // _formdiv = new U.UF.UI.form(
  6510. // "量规评分",
  6511. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6512. // "id": "score",
  6513. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6514. // "onresize": function() {}
  6515. // }, {
  6516. // closecallback: function() {}
  6517. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. // _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); } }
  6519. // break;
  6520. case "mind":
  6521. _formdiv = new U.UF.UI.form(
  6522. "思维导图",
  6523. $$("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"
  6524. "id": "mind",
  6525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "doc":
  6533. // U.MD.D.I.isRoom();
  6534. _formdiv = new U.UF.UI.form(
  6535. "协同文档",
  6536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6537. "id": "doc",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6544. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6545. })
  6546. _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); } }
  6547. break;
  6548. case "study":
  6549. _formdiv = new U.UF.UI.form(
  6550. "课程中心",
  6551. $$("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
  6552. "id": "study",
  6553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _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); } }
  6559. break;
  6560. case "mindNetwork": //好友打开
  6561. _formdiv = new U.UF.UI.form(
  6562. "思维网格",
  6563. $$("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 }), {
  6564. "id": "mindNetwork",
  6565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6566. "onresize": function () { }
  6567. }, {
  6568. closecallback: function () { }
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _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); } }
  6571. break;
  6572. case "train": //好友打开
  6573. _formdiv = new U.UF.UI.form(
  6574. "训练平台",
  6575. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6576. "id": "mindNetwork",
  6577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _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); } }
  6583. break;
  6584. case "teacherClassRoom": //好友打开
  6585. _formdiv = new U.UF.UI.form(
  6586. "实时课堂",
  6587. $$("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 }), {
  6588. "id": "teacherClassRoom",
  6589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _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); } }
  6595. setTimeout(() => {
  6596. U.UF.F.windowZooming(_formdiv)
  6597. }, 0);
  6598. break;
  6599. }
  6600. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6601. switch (str) {
  6602. case "project": //好友打开
  6603. _formdiv = new U.UF.UI.form(
  6604. "课程管理",
  6605. $$("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 }), {
  6606. "id": "project",
  6607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "evaluate":
  6615. _formdiv = new U.UF.UI.form(
  6616. "学生评价",
  6617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6618. "id": "evaluate",
  6619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6625. break;
  6626. case "notice":
  6627. _formdiv = new U.UF.UI.form(
  6628. "通知公告",
  6629. $$("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 }), {
  6630. "id": "notice",
  6631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6637. break;
  6638. case "stuLibrary":
  6639. _formdiv = new U.UF.UI.form(
  6640. "学习资料",
  6641. $$("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 }), {
  6642. "id": "stuLibrary",
  6643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6649. break;
  6650. case "program":
  6651. _formdiv = new U.UF.UI.form(
  6652. "编程平台",
  6653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6654. "id": "program",
  6655. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6661. break;
  6662. case "whiteboard":
  6663. _formdiv = new U.UF.UI.form(
  6664. "电子白板",
  6665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6666. "id": "whiteboard",
  6667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6668. "onresize": function () { }
  6669. }, {
  6670. closecallback: function () { }
  6671. }, { "style": { "height": "36px" } }).form; //创建窗体
  6672. _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); } }
  6673. break;
  6674. case "investigation":
  6675. _formdiv = new U.UF.UI.form(
  6676. "问卷调查",
  6677. $$("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 }), {
  6678. "id": "investigation",
  6679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6680. "onresize": function () { }
  6681. }, {
  6682. closecallback: function () { }
  6683. }, { "style": { "height": "36px" } }).form; //创建窗体
  6684. _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); } }
  6685. break;
  6686. case "mind":
  6687. _formdiv = new U.UF.UI.form(
  6688. "思维导图",
  6689. $$("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"
  6690. "id": "mind",
  6691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6692. "onresize": function () { }
  6693. }, {
  6694. closecallback: function () { }
  6695. }, { "style": { "height": "36px" } }).form; //创建窗体
  6696. _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); } }
  6697. break;
  6698. case "doc":
  6699. // U.MD.D.I.isRoom();
  6700. _formdiv = new U.UF.UI.form(
  6701. "协同文档",
  6702. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6703. "id": "doc",
  6704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //创建窗体
  6709. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6710. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6711. })
  6712. _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); } }
  6713. break;
  6714. case "study":
  6715. _formdiv = new U.UF.UI.form(
  6716. "课程中心",
  6717. $$("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
  6718. "id": "study",
  6719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6720. "onresize": function () { }
  6721. }, {
  6722. closecallback: function () { }
  6723. }, { "style": { "height": "36px" } }).form; //创建窗体
  6724. _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); } }
  6725. break;
  6726. case "mindNetwork": //好友打开
  6727. _formdiv = new U.UF.UI.form(
  6728. "思维网格",
  6729. $$("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 }), {
  6730. "id": "mindNetwork",
  6731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6732. "onresize": function () { }
  6733. }, {
  6734. closecallback: function () { }
  6735. }, { "style": { "height": "36px" } }).form; //创建窗体
  6736. _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); } }
  6737. break;
  6738. case "train": //好友打开
  6739. _formdiv = new U.UF.UI.form(
  6740. "训练平台",
  6741. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6742. "id": "train",
  6743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6744. "onresize": function () { }
  6745. }, {
  6746. closecallback: function () { }
  6747. }, { "style": { "height": "36px" } }).form; //创建窗体
  6748. _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); } }
  6749. break;
  6750. case "sys":
  6751. _formdiv = new U.UF.UI.form(
  6752. "目标管理",
  6753. $$("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 }), {
  6754. "id": "sys",
  6755. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6756. "onresize": function () { }
  6757. }, {
  6758. closecallback: function () { }
  6759. }, { "style": { "height": "36px" } }).form; //创建窗体
  6760. _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); } }
  6761. break;
  6762. case "courseDesign":
  6763. _formdiv = new U.UF.UI.form(
  6764. "项目设计",
  6765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6766. "id": "courseDesign",
  6767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6768. "onresize": function () { }
  6769. }, {
  6770. closecallback: function () { }
  6771. }, { "style": { "height": "36px" } }).form; //创建窗体
  6772. _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); } }
  6773. break;
  6774. }
  6775. } else if (!_type) {
  6776. switch (str) {
  6777. case "my":
  6778. _formdiv = new U.UF.UI.form(
  6779. "我的资料",
  6780. $$("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 }), {
  6781. "id": "my",
  6782. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _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); } }
  6788. break;
  6789. }
  6790. }
  6791. switch (str) {
  6792. // AIprogram2 AI体验 aihub.cocorobo.cn
  6793. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6794. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6795. case "formulaEdi": //公式编辑
  6796. _formdiv = new U.UF.UI.form(
  6797. "公式编辑",
  6798. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6799. "id": "formulaEdi",
  6800. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6801. "onresize": function () { }
  6802. }, {
  6803. closecallback: function () { }
  6804. }, { "style": { "height": "36px" } }).form; //创建窗体
  6805. _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); } }
  6806. break;
  6807. case "molStr": //分子结构
  6808. _formdiv = new U.UF.UI.form(
  6809. "分子结构",
  6810. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6811. "id": "molStr",
  6812. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6813. "onresize": function () { }
  6814. }, {
  6815. closecallback: function () { }
  6816. }, { "style": { "height": "36px" } }).form; //创建窗体
  6817. _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); } }
  6818. break;
  6819. case "timeAxis": //时间轴
  6820. _formdiv = new U.UF.UI.form(
  6821. "时间轴",
  6822. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6823. "id": "timeAxis",
  6824. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //创建窗体
  6829. _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); } }
  6830. break;
  6831. case "AIprogram2": //AI体验
  6832. _formdiv = new U.UF.UI.form(
  6833. "AI体验",
  6834. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6835. "id": "AIprogram2",
  6836. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _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); } }
  6842. break;
  6843. case "Pythonprogram": //python编程
  6844. _formdiv = new U.UF.UI.form(
  6845. "Python编程",
  6846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6847. "id": "Pythonprogram",
  6848. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //创建窗体
  6853. _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); } }
  6854. break;
  6855. case "AIprogram": //ai编程
  6856. _formdiv = new U.UF.UI.form(
  6857. "AI编程平台",
  6858. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6859. "id": "AIprogram",
  6860. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _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); } }
  6866. break;
  6867. case "CocoPi": //CocoPi
  6868. _formdiv = new U.UF.UI.form(
  6869. "CocoPi",
  6870. $$("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" }), {
  6871. "id": "CocoPi",
  6872. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _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); } }
  6878. break;
  6879. case "Wood": //Wood
  6880. _formdiv = new U.UF.UI.form(
  6881. "海龟编程",
  6882. $$("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/" }), {
  6883. "id": "Wood",
  6884. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _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); } }
  6890. break;
  6891. case "car": //模拟驾驶
  6892. _formdiv = new U.UF.UI.form(
  6893. "模拟驾驶",
  6894. $$("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/" }), {
  6895. "id": "car",
  6896. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //创建窗体
  6901. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6902. break;
  6903. case "lineSearch": //路径搜索
  6904. _formdiv = new U.UF.UI.form(
  6905. "路径搜索",
  6906. $$("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/" }), {
  6907. "id": "lineSearch",
  6908. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //创建窗体
  6913. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6914. break;
  6915. case "deepLearning": //深度学习
  6916. _formdiv = new U.UF.UI.form(
  6917. "深度学习",
  6918. $$("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/#" }), {
  6919. "id": "deepLearning",
  6920. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //创建窗体
  6925. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6926. break;
  6927. case "allHistory": //深度学习
  6928. _formdiv = new U.UF.UI.form(
  6929. "全历史",
  6930. $$("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/" }), {
  6931. "id": "allHistory",
  6932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. closecallback: function () { }
  6936. }, { "style": { "height": "36px" } }).form; //创建窗体
  6937. _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); } }
  6938. break;
  6939. case "chatPDF": //ai编程
  6940. _formdiv = new U.UF.UI.form(
  6941. "chatPDF",
  6942. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6943. "id": "chatPDF",
  6944. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //创建窗体
  6949. _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); } }
  6950. break;
  6951. case "resources": //国家教育
  6952. _formdiv = new U.UF.UI.form(
  6953. "国家教育",
  6954. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6955. "id": "resources",
  6956. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6957. "onresize": function () { }
  6958. }, {
  6959. closecallback: function () { }
  6960. }, { "style": { "height": "36px" } }).form; //创建窗体
  6961. _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); } }
  6962. break;
  6963. case "codeEdit": //源码编辑
  6964. _formdiv = new U.UF.UI.form(
  6965. "源码编辑",
  6966. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6967. "id": "codeEdit",
  6968. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6969. "onresize": function () { }
  6970. }, {
  6971. closecallback: function () { }
  6972. }, { "style": { "height": "36px" } }).form; //创建窗体
  6973. _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); } }
  6974. break; //
  6975. case "MindMap": //MindMap
  6976. _formdiv = new U.UF.UI.form(
  6977. "MindMap",
  6978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6979. "id": "MindMap",
  6980. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6981. "onresize": function () { }
  6982. }, {
  6983. closecallback: function () { }
  6984. }, { "style": { "height": "36px" } }).form; //创建窗体
  6985. _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); } }
  6986. break;
  6987. case "netWorkPanel": //netWorkPanel
  6988. _formdiv = new U.UF.UI.form(
  6989. "netWorkPanel",
  6990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6991. "id": "netWorkPanel",
  6992. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6993. "onresize": function () { }
  6994. }, {
  6995. closecallback: function () { }
  6996. }, { "style": { "height": "36px" } }).form; //创建窗体
  6997. _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); } }
  6998. break;
  6999. case "GeoGebra": //GeoGebra
  7000. _formdiv = new U.UF.UI.form(
  7001. "GeoGebra",
  7002. $$("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" }), {
  7003. "id": "GeoGebra",
  7004. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7005. "onresize": function () { }
  7006. }, {
  7007. closecallback: function () { }
  7008. }, { "style": { "height": "36px" } }).form; //创建窗体
  7009. _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); } }
  7010. break;
  7011. case "translation": //翻译
  7012. _formdiv = new U.UF.UI.form(
  7013. "翻译",
  7014. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7015. "id": "translation",
  7016. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7017. "onresize": function () { }
  7018. }, {
  7019. closecallback: function () { }
  7020. }, { "style": { "height": "36px" } }).form; //创建窗体
  7021. _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); } }
  7022. break;
  7023. case "mohe": //魔盒
  7024. _formdiv = new U.UF.UI.form(
  7025. "魔盒识字",
  7026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7027. "id": "mohe",
  7028. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //创建窗体
  7033. _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); } }
  7034. break;
  7035. case "24game": //24点
  7036. _formdiv = new U.UF.UI.form(
  7037. "24点",
  7038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7039. "id": "24game",
  7040. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //创建窗体
  7045. _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); } }
  7046. break;
  7047. case "case":
  7048. _formdiv = new U.UF.UI.form(
  7049. "课程进展",
  7050. $$("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 }), {
  7051. "id": "case",
  7052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, { "style": { "height": "36px" } }).form; //创建窗体
  7057. _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); } }
  7058. break;
  7059. case "snf":
  7060. _formdiv = new U.UF.UI.form(
  7061. "赛诺梵",
  7062. $$("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" }), {
  7063. "id": "snf",
  7064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. closecallback: function () { }
  7068. }, { "style": { "height": "36px" } }).form; //创建窗体
  7069. _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); } }
  7070. break;
  7071. case "hanFamily":
  7072. _formdiv = new U.UF.UI.form(
  7073. "汉字家族",
  7074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7075. "id": "hanFamily",
  7076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7077. "onresize": function () { }
  7078. }, {
  7079. closecallback: function () { }
  7080. }, { "style": { "height": "36px" } }).form; //创建窗体
  7081. _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); } }
  7082. break;
  7083. case "hanClassics":
  7084. _formdiv = new U.UF.UI.form(
  7085. "国学经典",
  7086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7087. "id": "hanClassics",
  7088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //创建窗体
  7093. _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); } }
  7094. break;
  7095. case "hanTraining":
  7096. _formdiv = new U.UF.UI.form(
  7097. "笔画训练",
  7098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7099. "id": "hanTraining",
  7100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //创建窗体
  7105. _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); } }
  7106. break;
  7107. case "hanClass":
  7108. _formdiv = new U.UF.UI.form(
  7109. "书法课堂",
  7110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7111. "id": "hanClass",
  7112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //创建窗体
  7117. _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); } }
  7118. break;
  7119. case "han":
  7120. _formdiv = new U.UF.UI.form(
  7121. "汉字宫",
  7122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7123. "id": "han",
  7124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7125. "onresize": function () { }
  7126. }, {
  7127. closecallback: function () { }
  7128. }, { "style": { "height": "36px" } }).form; //创建窗体
  7129. _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); } }
  7130. break;
  7131. case "projectGM": //课程管理
  7132. _formdiv = new U.UF.UI.form(
  7133. "课程管理",
  7134. $$("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 }), {
  7135. "id": "projectGM",
  7136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7137. "onresize": function () { }
  7138. }, {
  7139. closecallback: function () { }
  7140. }, { "style": { "height": "36px" } }).form; //创建窗体
  7141. _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); } }
  7142. break;
  7143. case "studyGM": //课程中心
  7144. _formdiv = new U.UF.UI.form(
  7145. "课程中心",
  7146. $$("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
  7147. "id": "study",
  7148. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7149. "onresize": function () { }
  7150. }, {
  7151. closecallback: function () { }
  7152. }, { "style": { "height": "36px" } }).form; //创建窗体
  7153. _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); } }
  7154. break;
  7155. // studentGM
  7156. case "studentGM": //学生管理
  7157. _formdiv = new U.UF.UI.form(
  7158. "学生管理",
  7159. $$("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 }), {
  7160. "id": "studentGM",
  7161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7162. "onresize": function () { }
  7163. }, {
  7164. closecallback: function () { }
  7165. }, { "style": { "height": "36px" } }).form; //创建窗体
  7166. _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); } }
  7167. break;
  7168. case "evaluateGM": //学生评价
  7169. _formdiv = new U.UF.UI.form(
  7170. "学生评价",
  7171. $$("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 }), {
  7172. "id": "evaluateGM",
  7173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7174. "onresize": function () { }
  7175. }, {
  7176. closecallback: function () { }
  7177. }, { "style": { "height": "36px" } }).form; //创建窗体
  7178. _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); } }
  7179. break;
  7180. // classGM
  7181. case "classGM": //班级管理
  7182. _formdiv = new U.UF.UI.form(
  7183. "班级管理",
  7184. $$("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 }), {
  7185. "id": "classGM",
  7186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _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); } }
  7192. break;
  7193. // dataGM
  7194. case "dataGM":
  7195. _formdiv = new U.UF.UI.form(
  7196. "我的资料",
  7197. $$("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 }), {
  7198. "id": "dataGM",
  7199. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7200. "onresize": function () { }
  7201. }, {
  7202. closecallback: function () { }
  7203. }, { "style": { "height": "36px" } }).form; //创建窗体
  7204. _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); } }
  7205. break;
  7206. // caseGM
  7207. case "caseGM": //课程进展
  7208. _formdiv = new U.UF.UI.form(
  7209. "课程进展",
  7210. $$("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 }), {
  7211. "id": "caseGM",
  7212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7213. "onresize": function () { }
  7214. }, {
  7215. closecallback: function () { }
  7216. }, { "style": { "height": "36px" } }).form; //创建窗体
  7217. _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); } }
  7218. break;
  7219. // meterialGM
  7220. case "meterialGM": //素材库
  7221. _formdiv = new U.UF.UI.form(
  7222. "素材库",
  7223. $$("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 }), {
  7224. "id": "meterialGM",
  7225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7226. "onresize": function () { }
  7227. }, {
  7228. closecallback: function () { }
  7229. }, { "style": { "height": "36px" } }).form; //创建窗体
  7230. _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); } }
  7231. break;
  7232. // evaluateSGM
  7233. case "evaluateSGM": //我的评价
  7234. _formdiv = new U.UF.UI.form(
  7235. "我的评价",
  7236. $$("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 }), {
  7237. "id": "evaluateSGM",
  7238. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7239. "onresize": function () { }
  7240. }, {
  7241. closecallback: function () { }
  7242. }, { "style": { "height": "36px" } }).form; //创建窗体
  7243. _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); } }
  7244. break;
  7245. case "jupyter": //jupyter
  7246. _formdiv = new U.UF.UI.form(
  7247. "jupyter",
  7248. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7249. "id": "jupyter",
  7250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7251. "onresize": function () { }
  7252. }, {
  7253. closecallback: function () { }
  7254. }, { "style": { "height": "36px" } }).form; //创建窗体
  7255. _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); } }
  7256. break;
  7257. case "number": //数字实验室
  7258. _formdiv = new U.UF.UI.form(
  7259. "数字实验室",
  7260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7261. "id": "number",
  7262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7263. "onresize": function () { }
  7264. }, {
  7265. closecallback: function () { }
  7266. }, { "style": { "height": "36px" } }).form; //创建窗体
  7267. _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); } }
  7268. break;
  7269. case "studentCourse": //项目管理 学生
  7270. _formdiv = new U.UF.UI.form(
  7271. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7272. $$("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 }), {
  7273. "id": "studentCourse",
  7274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7275. "onresize": function () { }
  7276. }, {
  7277. closecallback: function () { }
  7278. }, { "style": { "height": "36px" } }).form; //创建窗体
  7279. _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); } }
  7280. break;
  7281. case "studentCourseS": //项目管理 老师
  7282. _formdiv = new U.UF.UI.form(
  7283. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7284. $$("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 }), {
  7285. "id": "studentCourseS",
  7286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7287. "onresize": function () { }
  7288. }, {
  7289. closecallback: function () { }
  7290. }, { "style": { "height": "36px" } }).form; //创建窗体
  7291. _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); } }
  7292. break;
  7293. case "studentIndex": //项目中心
  7294. _formdiv = new U.UF.UI.form(
  7295. "项目中心",
  7296. $$("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 }), {
  7297. "id": "studentIndex",
  7298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7299. "onresize": function () { }
  7300. }, {
  7301. closecallback: function () { }
  7302. }, { "style": { "height": "36px" } }).form; //创建窗体
  7303. _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); } }
  7304. break;
  7305. case "CaseDesignS":
  7306. _formdiv = new U.UF.UI.form(
  7307. "项目进展",
  7308. $$("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 }), {
  7309. "id": "case",
  7310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7311. "onresize": function () { }
  7312. }, {
  7313. closecallback: function () { }
  7314. }, { "style": { "height": "36px" } }).form; //创建窗体
  7315. _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); } }
  7316. break;
  7317. case "tcStudent": //腾讯学生管理
  7318. _formdiv = new U.UF.UI.form(
  7319. "学生管理",
  7320. $$("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 }), {
  7321. "id": "tcStudent",
  7322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7323. "onresize": function () { }
  7324. }, {
  7325. closecallback: function () { }
  7326. }, { "style": { "height": "36px" } }).form; //创建窗体
  7327. _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); } }
  7328. break;
  7329. case "tcSchool": //腾讯学校管理
  7330. _formdiv = new U.UF.UI.form(
  7331. "学校管理",
  7332. $$("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 }), {
  7333. "id": "tcSchool",
  7334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7335. "onresize": function () { }
  7336. }, {
  7337. closecallback: function () { }
  7338. }, { "style": { "height": "36px" } }).form; //创建窗体
  7339. _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); } }
  7340. break;
  7341. case "tcTeacher": //腾讯学校管理
  7342. _formdiv = new U.UF.UI.form(
  7343. "教师管理",
  7344. $$("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 }), {
  7345. "id": "tcTeacher",
  7346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7347. "onresize": function () { }
  7348. }, {
  7349. closecallback: function () { }
  7350. }, { "style": { "height": "36px" } }).form; //创建窗体
  7351. _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); } }
  7352. break;
  7353. case "teacher":
  7354. _formdiv = new U.UF.UI.form(
  7355. "教师管理",
  7356. $$("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 }), {
  7357. "id": "teacher",
  7358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7359. "onresize": function () { }
  7360. }, {
  7361. closecallback: function () { }
  7362. }, { "style": { "height": "36px" } }).form; //创建窗体
  7363. _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); } }
  7364. break;
  7365. case "tcData": //腾讯我的资料
  7366. _formdiv = new U.UF.UI.form(
  7367. "我的资料",
  7368. $$("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 }), {
  7369. "id": "tcData",
  7370. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7371. "onresize": function () { }
  7372. }, {
  7373. closecallback: function () { }
  7374. }, { "style": { "height": "36px" } }).form; //创建窗体
  7375. _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); } }
  7376. break;
  7377. case "tcNotice": //腾讯消息通知
  7378. _formdiv = new U.UF.UI.form(
  7379. "消息通知",
  7380. $$("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 }), {
  7381. "id": "tcNotice",
  7382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7383. "onresize": function () { }
  7384. }, {
  7385. closecallback: function () { }
  7386. }, { "style": { "height": "36px" } }).form; //创建窗体
  7387. _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); } }
  7388. break;
  7389. case "myReport": //好友打开
  7390. _formdiv = new U.UF.UI.form(
  7391. "我的评价",
  7392. $$("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 }), {
  7393. "id": "myReport",
  7394. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7395. "onresize": function () { }
  7396. }, {
  7397. closecallback: function () { }
  7398. }, { "style": { "height": "36px" } }).form; //创建窗体
  7399. _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); } }
  7400. break;
  7401. case "learnAna": //好友打开
  7402. _formdiv = new U.UF.UI.form(
  7403. "学习分析",
  7404. $$("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 }), {
  7405. "id": "learnAna",
  7406. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //创建窗体
  7411. _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); } }
  7412. break;
  7413. case "AIChat": //AI共创
  7414. _formdiv = new U.UF.UI.form(
  7415. "AI共创",
  7416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7417. "id": "AIChat",
  7418. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7419. "onresize": function () { }
  7420. }, {
  7421. istop: true,
  7422. closecallback: function () { $("#aichat_icon").remove(); },
  7423. narrowcallback: function () {
  7424. if (!$("#aichat_icon")[0]) {
  7425. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7426. }
  7427. },
  7428. }, { "style": { "height": "36px" } }).form; //创建窗体
  7429. _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); } }
  7430. break;
  7431. case "ainew": //AI共创
  7432. _formdiv = new U.UF.UI.form(
  7433. "AI协同",
  7434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7435. "id": "ainew",
  7436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7437. "onresize": function () { }
  7438. }, {
  7439. closecallback: function () { }
  7440. }, { "style": { "height": "36px" } }).form; //创建窗体
  7441. _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); } }
  7442. break;
  7443. case "gpt4": //gpt4
  7444. _formdiv = new U.UF.UI.form(
  7445. "AI助手",
  7446. $$("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 }), {
  7447. "id": "gpt4",
  7448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7449. "onresize": function () { }
  7450. }, {
  7451. closecallback: function () { }
  7452. }, { "style": { "height": "36px" } }).form; //创建窗体
  7453. _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); } }
  7454. break;
  7455. case "aigpt": //gpt4
  7456. _formdiv = new U.UF.UI.form(
  7457. "AI助手+",
  7458. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7459. "id": "aigpt",
  7460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7461. "onresize": function () { }
  7462. }, {
  7463. closecallback: function () {
  7464. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7465. }
  7466. }, { "style": { "height": "36px" } }).form; //创建窗体
  7467. _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); } }
  7468. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7469. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7470. })
  7471. break;
  7472. case "aiKnowledge": //aiKnowledge
  7473. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7474. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7475. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7476. }
  7477. _formdiv = new U.UF.UI.form(
  7478. "知识建构",
  7479. $$("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": _url }), {
  7480. "id": "aiKnowledge",
  7481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7482. "onresize": function () { }
  7483. }, {
  7484. closecallback: function () { }
  7485. }, { "style": { "height": "36px" } }).form; //创建窗体
  7486. _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); } }
  7487. break;
  7488. case "futureClass": //AI共创
  7489. _formdiv = new U.UF.UI.form(
  7490. "协同建构",
  7491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7492. "id": "synergyCourse",
  7493. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7494. "onresize": function () { }
  7495. }, {
  7496. closecallback: function () {
  7497. $("iframe", _formdiv)[0].contentWindow.loginout();
  7498. }
  7499. }, { "style": { "height": "36px" } }).form; //创建窗体
  7500. _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); } }
  7501. break;
  7502. case "aiagent": //ai agent
  7503. _formdiv = new U.UF.UI.form(
  7504. "AI Agent",
  7505. $$("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" }), {
  7506. "id": "AIAgent",
  7507. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7508. "onresize": function () { }
  7509. }, {
  7510. closecallback: function () { }
  7511. }, { "style": { "height": "36px" } }).form; //创建窗体
  7512. _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); } }
  7513. break;
  7514. case "dataBoard": //数据看板
  7515. _formdiv = new U.UF.UI.form(
  7516. "数据看板",
  7517. $$("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 }), {
  7518. "id": "dataBoard",
  7519. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7520. "onresize": function () { }
  7521. }, {
  7522. closecallback: function () { }
  7523. }, { "style": { "height": "36px" } }).form; //创建窗体
  7524. _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); } }
  7525. break;
  7526. case "dataBoardSies": //数据融合
  7527. _formdiv = new U.UF.UI.form(
  7528. "数据融合",
  7529. $$("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 }), {
  7530. "id": "dataBoardSies",
  7531. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7532. "onresize": function () { }
  7533. }, {
  7534. closecallback: function () { }
  7535. }, { "style": { "height": "36px" } }).form; //创建窗体
  7536. _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); } }
  7537. break;
  7538. case "dataBoardNew": //数据看板
  7539. _formdiv = new U.UF.UI.form(
  7540. "综合看板",
  7541. $$("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 }), {
  7542. "id": "dataBoardNew",
  7543. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7544. "onresize": function () { }
  7545. }, {
  7546. closecallback: function () { }
  7547. }, { "style": { "height": "36px" } }).form; //创建窗体
  7548. _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); } }
  7549. break;
  7550. case "dataBoardTest": //数据看板
  7551. _formdiv = new U.UF.UI.form(
  7552. "评测看板",
  7553. $$("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 }), {
  7554. "id": "dataBoardTest",
  7555. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7556. "onresize": function () { }
  7557. }, {
  7558. closecallback: function () { }
  7559. }, { "style": { "height": "36px" } }).form; //创建窗体
  7560. _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); } }
  7561. break;
  7562. case "AIAnalyse": //AI共创
  7563. _formdiv = new U.UF.UI.form(
  7564. "AI分析",
  7565. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7566. "id": "AIAnalyse",
  7567. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7568. "onresize": function () { }
  7569. }, {
  7570. closecallback: function () { }
  7571. }, { "style": { "height": "36px" } }).form; //创建窗体
  7572. _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); } }
  7573. break;
  7574. case "studioCourse": //AI共创
  7575. _formdiv = new U.UF.UI.form(
  7576. "工作管理",
  7577. $$("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 }), {
  7578. "id": "studioCourse",
  7579. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7580. "onresize": function () { }
  7581. }, {
  7582. closecallback: function () { }
  7583. }, { "style": { "height": "36px" } }).form; //创建窗体
  7584. _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); } }
  7585. break;
  7586. case "studioIndex": //AI共创
  7587. _formdiv = new U.UF.UI.form(
  7588. "工作中心",
  7589. $$("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 }), {
  7590. "id": "studioIndex",
  7591. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7592. "onresize": function () { }
  7593. }, {
  7594. closecallback: function () { }
  7595. }, { "style": { "height": "36px" } }).form; //创建窗体
  7596. _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); } }
  7597. break;
  7598. case "source":
  7599. _formdiv = new U.UF.UI.form(
  7600. "教学资源",
  7601. $$("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 }), {
  7602. "id": "source",
  7603. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, { "style": { "height": "36px" } }).form; //创建窗体
  7608. _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); } }
  7609. break;
  7610. case "testTeacher":
  7611. _formdiv = new U.UF.UI.form(
  7612. "智能表单",
  7613. $$("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 }), {
  7614. "id": "testTeacher",
  7615. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7616. "onresize": function () { }
  7617. }, {
  7618. closecallback: function () { }
  7619. }, { "style": { "height": "36px" } }).form; //创建窗体
  7620. _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); } }
  7621. break;
  7622. case "testStudent":
  7623. _formdiv = new U.UF.UI.form(
  7624. "教师中心",
  7625. $$("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 }), {
  7626. "id": "testStudent",
  7627. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7628. "onresize": function () { }
  7629. }, {
  7630. closecallback: function () { }
  7631. }, { "style": { "height": "36px" } }).form; //创建窗体
  7632. _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); } }
  7633. break;
  7634. case "testTeacherSies":
  7635. _formdiv = new U.UF.UI.form(
  7636. "教师管理",
  7637. $$("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 }), {
  7638. "id": "testTeacherSies",
  7639. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7640. "onresize": function () { }
  7641. }, {
  7642. closecallback: function () { }
  7643. }, { "style": { "height": "36px" } }).form; //创建窗体
  7644. _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); } }
  7645. break;
  7646. case "testStudentSies":
  7647. _formdiv = new U.UF.UI.form(
  7648. "教师中心",
  7649. $$("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 }), {
  7650. "id": "testStudentSies",
  7651. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, { "style": { "height": "36px" } }).form; //创建窗体
  7656. _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); } }
  7657. break;
  7658. case "ytpbl": //消息通知
  7659. _formdiv = new U.UF.UI.form(
  7660. "案例征集",
  7661. $$("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 }), {
  7662. "id": "ytpbl",
  7663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7664. "onresize": function () { }
  7665. }, {
  7666. closecallback: function () { }
  7667. }, { "style": { "height": "36px" } }).form; //创建窗体
  7668. _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); } }
  7669. // 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");
  7670. break;
  7671. case "aiCourseResource": //人工智能窗体
  7672. _formdiv = new U.UF.UI.form(
  7673. false,
  7674. $$("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 }), {
  7675. "id": "aiCourseResource",
  7676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7677. "onresize": function () { },
  7678. "isdrag": false,
  7679. }, {
  7680. closecallback: function () { }
  7681. }, { "style": { "height": "36px" } }).form; //创建窗体
  7682. _taskbar = ''
  7683. break;
  7684. case "szdjgCocooroboX": //图形化编程
  7685. _formdiv = new U.UF.UI.form(
  7686. "图形化编程",
  7687. $$("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" }), {
  7688. "id": "szdjgCocooroboX",
  7689. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7690. "onresize": function () { }
  7691. }, {
  7692. closecallback: function () { }
  7693. }, { "style": { "height": "36px" } }).form; //创建窗体
  7694. _taskbar = ''
  7695. break;
  7696. case "szdjgPython": //python编程
  7697. _formdiv = new U.UF.UI.form(
  7698. "Python编程",
  7699. $$("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" }), {
  7700. "id": "szdjgPython",
  7701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7702. "onresize": function () { }
  7703. }, {
  7704. closecallback: function () { }
  7705. }, { "style": { "height": "36px" } }).form; //创建窗体
  7706. _taskbar = ''
  7707. break;
  7708. case "Record":
  7709. _formdiv = new U.UF.UI.form(
  7710. "观察记录",
  7711. $$("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 }), {
  7712. "id": "Record",
  7713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, { "style": { "height": "36px" } }).form; //创建窗体
  7718. _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); } }
  7719. break;
  7720. case "aigptCourse":
  7721. _formdiv = new U.UF.UI.form(
  7722. "AI智能体",
  7723. $$("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' }), {
  7724. "id": "aigptCourse",
  7725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7726. "onresize": function () { }
  7727. }, {
  7728. closecallback: function () { }
  7729. }, { "style": { "height": "36px" } }).form; //创建窗体
  7730. _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); } }
  7731. break;
  7732. case "classroomObservation":
  7733. _formdiv = new U.UF.UI.form(
  7734. "课堂观察",
  7735. $$("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 }), {
  7736. "id": "classroomObservation",
  7737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, { "style": { "height": "36px" } }).form; //创建窗体
  7742. _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); } }
  7743. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7744. break;
  7745. case "pblCourse":
  7746. _formdiv = new U.UF.UI.form(
  7747. "学生PBL",
  7748. $$("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 }), {
  7749. "id": "pblCourse",
  7750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7751. "onresize": function () { }
  7752. }, {
  7753. closecallback: function () { }
  7754. }, { "style": { "height": "36px" } }).form; //创建窗体
  7755. _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); } }
  7756. break;
  7757. case "appStore":
  7758. U.MD.D.addOp('','cocoflowOpen','')
  7759. _formdiv = new U.UF.UI.form(
  7760. "CocoFlow",
  7761. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7762. "id": "appStore",
  7763. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7764. "onresize": function () { }
  7765. }, {
  7766. closecallback: function () { }
  7767. }, { "style": { "height": "36px" } }).form; //创建窗体
  7768. _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); } }
  7769. break;
  7770. case "sassPlatform":
  7771. _formdiv = new U.UF.UI.form(
  7772. "Sass通用后台管理",
  7773. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7774. "id": "sassPlatform",
  7775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7776. "onresize": function () { }
  7777. }, {
  7778. closecallback: function () { }
  7779. }, { "style": { "height": "36px" } }).form; //创建窗体
  7780. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7781. break;
  7782. case "EDU":
  7783. _formdiv = new U.UF.UI.form(
  7784. "EDU",
  7785. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7786. "id": "EDU",
  7787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7788. "onresize": function () { }
  7789. }, {
  7790. closecallback: function () { }
  7791. }, { "style": { "height": "36px" } }).form; //创建窗体
  7792. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7793. break;
  7794. case "knowledge":
  7795. _formdiv = new U.UF.UI.form(
  7796. "知识库",
  7797. $$("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://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7798. "id": "knowledge",
  7799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7800. "onresize": function () { }
  7801. }, {
  7802. closecallback: function () { }
  7803. }, { "style": { "height": "36px" } }).form; //创建窗体
  7804. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7805. break;
  7806. case "userExamine":
  7807. _formdiv = new U.UF.UI.form(
  7808. "账号申请",
  7809. $$("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" }), {
  7810. "id": "userExamine",
  7811. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7812. "onresize": function () { }
  7813. }, {
  7814. closecallback: function () { }
  7815. }, { "style": { "height": "36px" } }).form; //创建窗体
  7816. break;
  7817. case "cocoflowDeskTop": //cocoflowDeskTop
  7818. _formdiv = new U.UF.UI.form(
  7819. false,
  7820. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7821. "id": "cocoflowDeskTop",
  7822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7823. "onresize": function () { },
  7824. }, {
  7825. closecallback: function () { },
  7826. "isdrag": false,
  7827. }, { "style": { "height": "36px" } }).form; //创建窗体
  7828. _taskbar = ''
  7829. break;
  7830. case "liyuanLogin": //liyuanLogin
  7831. _formdiv = new U.UF.UI.form(
  7832. false,
  7833. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7834. "id": "liyuanLogin",
  7835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7836. "onresize": function () { },
  7837. }, {
  7838. closecallback: function () { },
  7839. isdrag: false,
  7840. isstretching: false,
  7841. isenlarge: false,
  7842. isnarrow: false
  7843. }, { "style": { "height": "36px" } }).form; //创建窗体
  7844. _taskbar = ''
  7845. break;
  7846. case "updatePaDialog":
  7847. _formdiv = new U.UF.UI.form(
  7848. "密码修改",
  7849. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7850. "id": "updatePaDialog",
  7851. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7852. "onresize": function () { },
  7853. }, {
  7854. closecallback: function () { },
  7855. isclose: false,
  7856. isdrag: false,
  7857. isstretching: false,
  7858. isenlarge: false,
  7859. isnarrow: false
  7860. }, { "style": { "height": "36px" } }).form; //创建窗体
  7861. break;
  7862. }
  7863. //U.MD.D.I.openClick(str);
  7864. //如果有任务栏信息
  7865. if (_taskbar) {
  7866. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7867. }
  7868. if(iframeBool){
  7869. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7870. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7871. // console.log("iframe进入");
  7872. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7873. // };
  7874. setTimeout(() => {
  7875. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7876. }, 2000);
  7877. }
  7878. }
  7879. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7880. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7881. _userinfo = US.userInfo, //登录用户信息
  7882. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7883. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7884. let iframeBool = true;
  7885. let queryString = ''
  7886. if(array && array.length){
  7887. const paramsMap = {
  7888. userid: _userid,
  7889. org: _org,
  7890. oid: _oid,
  7891. type: _type,
  7892. role: _role,
  7893. classId: _classId,
  7894. TscreenType: _TscreenType,
  7895. SscreenType: _SscreenType
  7896. };
  7897. const canshu = array
  7898. .filter(param => paramsMap[param] !== undefined)
  7899. .map(param => `${param}=${paramsMap[param]}`);
  7900. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7901. }
  7902. let _url = url + queryString
  7903. if(U.UF.UI.form.allForm[id]){
  7904. iframeBool = false
  7905. }
  7906. _formdiv = new U.UF.UI.form(
  7907. false,
  7908. $$("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": _url }),
  7909. {
  7910. "id": id,
  7911. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7912. "onresize": function () { },
  7913. },
  7914. {
  7915. closecallback: function () { },
  7916. isdrag: false,
  7917. isstretching: false,
  7918. isenlarge: false,
  7919. isnarrow: false
  7920. },
  7921. { "style": { "height": "36px" } },
  7922. undefined,
  7923. undefined,
  7924. dom
  7925. ).form
  7926. }
  7927. // U.MD.D.I.openClick = function(str){
  7928. // var click = '';
  7929. // switch(str){
  7930. // case 'friend':
  7931. // click = '我的好友';
  7932. // break;
  7933. // case 'domain':
  7934. // click = '域名管理';
  7935. // break;
  7936. // case 'disk':
  7937. // click = '我的云盘';
  7938. // break;
  7939. // case 'word':
  7940. // click = 'Word';
  7941. // break;
  7942. // case 'excel':
  7943. // click = 'Execl';
  7944. // break;
  7945. // case 'txt':
  7946. // click = '文本文件';
  7947. // break;
  7948. // case 'lookupFriend':
  7949. // click = '查找好友';
  7950. // break;
  7951. // case 'ftp':
  7952. // click = 'FTP';
  7953. // break;
  7954. // case 'group':
  7955. // click = '群组';
  7956. // break;
  7957. // case 'set':
  7958. // click = '我的设置';
  7959. // break;
  7960. // case 'systemSet':
  7961. // click = '系统设置';
  7962. // break;
  7963. // case 'boomYun':
  7964. // click = '互联办公';
  7965. // break;
  7966. // case 'xz':
  7967. // click = '云端下载';
  7968. // break;
  7969. // case 'client':
  7970. // click = '有思浏览器';
  7971. // break;
  7972. // case 'backEndProgramming':
  7973. // click = '在线后台编程';
  7974. // break;
  7975. // case 'frontEndProgramming':
  7976. // click = '在线前端编程';
  7977. // break;
  7978. // default: break;
  7979. // }
  7980. // if(U.MD.D.I.Ip && click){
  7981. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7982. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7983. // })
  7984. // }
  7985. // }
  7986. /**
  7987. *函数作用:ajax简易函数,使用post格式
  7988. *@param url {data} 后台地址
  7989. *@param data {data} 参数json
  7990. *@param fn {data} 回调函数
  7991. *
  7992. */
  7993. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7994. // var xhr = new XMLHttpRequest();
  7995. // xhr.open("GET",url,true);
  7996. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7997. // xhr.onreadystatechange = function(){
  7998. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7999. // fn.call(this,xhr.responseText);
  8000. // }
  8001. // };
  8002. // xhr.send();
  8003. // }
  8004. /*判断是否是内网IP*/
  8005. // U.MD.D.I.isInnerIPFn = function(str){
  8006. // var curPageUrl = str;
  8007. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8008. // curPageUrl =curPageUrl.replace(reg1,'');
  8009. // // console.log('curPageUrl-1 '+curPageUrl);
  8010. // var reg2 = /\:+/g;//替换冒号为一点
  8011. // curPageUrl =curPageUrl.replace(reg2,'.');
  8012. // // console.log('curPageUrl-2 '+curPageUrl);
  8013. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8014. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8015. // if(curPageUrl[2] != '16'){
  8016. // return ipAddress;
  8017. // }else{
  8018. // return false;
  8019. // }
  8020. // }
  8021. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8022. // //compatibility for firefox and chrome
  8023. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8024. // var pc = new myPeerConnection({
  8025. // iceServers: []
  8026. // }),
  8027. // noop = function() {},
  8028. // localIPs = {},
  8029. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8030. // key;
  8031. // function iterateIP(ip) {
  8032. // if (!localIPs[ip]) onNewIP(ip);
  8033. // localIPs[ip] = true;
  8034. // }
  8035. // //create a bogus data channel
  8036. // pc.createDataChannel("");
  8037. // // create offer and set local description
  8038. // pc.createOffer().then(function(sdp) {
  8039. // sdp.sdp.split('\n').forEach(function(line) {
  8040. // if (line.indexOf('candidate') < 0) return;
  8041. // line.match(ipRegex).forEach(iterateIP);
  8042. // });
  8043. // pc.setLocalDescription(sdp, noop, noop);
  8044. // }).catch(function(reason) {
  8045. // // An error occurred, so handle the failure to connect
  8046. // });
  8047. // //sten for candidate events
  8048. // pc.onicecandidate = function(ice) {
  8049. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8050. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8051. // };
  8052. // }
  8053. // U.MD.D.I.getUserIpBool = function(callback){
  8054. // U.MD.D.I.getUserIP(function(ip){
  8055. // alert("Got IP! :" + ip);
  8056. // });
  8057. //}
  8058. //#endregion
  8059. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8060. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8061. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8062. _userinfo = US.userInfo, //登录用户信息
  8063. _userid = US.userInfo.userid //登录用户id
  8064. let _iframe;
  8065. let _cid = cid,
  8066. _stage = stage,
  8067. _task = task,
  8068. _tool = tool;
  8069. var _jie = $$("div", {
  8070. "style": {
  8071. "position": "absolute",
  8072. "bottom": "50px",
  8073. "right": "50px",
  8074. "zIndex": "9999",
  8075. "backgroundColor": "#2268bc",
  8076. "color": "#fff",
  8077. "padding": "12px 20px",
  8078. "cursor": "pointer",
  8079. "borderRadius": "4px",
  8080. },
  8081. "innerHTML": "提交作业"
  8082. })
  8083. let aTool = ''
  8084. let _loading = document.createElement('div')
  8085. _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;"
  8086. // _loading.id = "";
  8087. let _lchild = document.createElement('div')
  8088. let _limg = document.createElement('img')
  8089. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8090. _limg.style = "width: 26px;margin-right: 10px;"
  8091. _lchild.appendChild(_limg)
  8092. let _lspan = document.createElement('span')
  8093. _lspan.innerHTML = "上传中..."
  8094. _lchild.appendChild(_lspan)
  8095. _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%);"
  8096. _loading.appendChild(_lchild)
  8097. var _box = $$('div', {
  8098. "style": {
  8099. "position": "relative",
  8100. "width": "100%",
  8101. "height": "100%",
  8102. },
  8103. })
  8104. _box.appendChild(_loading)
  8105. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8106. switch (str) {
  8107. case "whiteboard":
  8108. aTool = 1;
  8109. _iframe = $$("iframe", {
  8110. "frameborder": "no",
  8111. "border": "0",
  8112. "scrolling ": "no",
  8113. "style": {
  8114. "cssText": "border:0;width:100%;height:100%"
  8115. },
  8116. "src": "https://beta.iwb.cocorobo.cn/"
  8117. })
  8118. _box.appendChild(_iframe);
  8119. _box.appendChild(_jie);
  8120. _formdiv = new U.UF.UI.form(
  8121. "电子白板",
  8122. _box, {
  8123. "id": "whiteboard" + cid + stage + task + tool,
  8124. "style": {
  8125. "width": "90%",
  8126. "height": "90%",
  8127. "overflow": 'hidden'
  8128. },
  8129. "onresize": function () { }
  8130. }, {
  8131. closecallback: function () { }
  8132. }, {
  8133. "style": {
  8134. "height": "36px"
  8135. }
  8136. }).form; //创建窗体
  8137. _taskbar = {
  8138. "id": str + _formdiv.id,
  8139. "style": {
  8140. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8141. },
  8142. "name": "电子白板",
  8143. "forms": _formdiv,
  8144. "click": function () {
  8145. U.MD.D.I.openApplication(str, obj, info);
  8146. }
  8147. }
  8148. break;
  8149. case "mind":
  8150. aTool = 3;
  8151. _iframe = $$("iframe", {
  8152. "frameborder": "no",
  8153. "border": "0",
  8154. "scrolling ": "no",
  8155. "style": {
  8156. "cssText": "border:0;width:100%;height:100%"
  8157. },
  8158. "src": "/kityminder-editor/dist/index.html"
  8159. })
  8160. _box.appendChild(_iframe);
  8161. _box.appendChild(_jie);
  8162. _formdiv = new U.UF.UI.form(
  8163. "思维导图",
  8164. _box, { //"/jsmind/example/demo.html"
  8165. "id": "mind" + cid + stage + task + tool,
  8166. "style": {
  8167. "width": "90%",
  8168. "height": "90%",
  8169. "overflow": 'hidden'
  8170. },
  8171. "onresize": function () { }
  8172. }, {
  8173. closecallback: function () { }
  8174. }, {
  8175. "style": {
  8176. "height": "36px"
  8177. }
  8178. }).form; //创建窗体
  8179. _taskbar = {
  8180. "id": str + _formdiv.id,
  8181. "style": {
  8182. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8183. },
  8184. "name": "思维导图",
  8185. "forms": _formdiv,
  8186. "click": function () {
  8187. U.MD.D.I.openApplication(str, obj, info);
  8188. }
  8189. }
  8190. break;
  8191. case "MindMap":
  8192. aTool = 3;
  8193. _iframe = $$("iframe", {
  8194. "frameborder": "no",
  8195. "border": "0",
  8196. "scrolling ": "no",
  8197. "style": {
  8198. "cssText": "border:0;width:100%;height:100%"
  8199. },
  8200. "src": "//cloud.cocorobo.cn/mind/"
  8201. })
  8202. _box.appendChild(_iframe);
  8203. _box.appendChild(_jie);
  8204. _formdiv = new U.UF.UI.form(
  8205. "思维导图",
  8206. _box, { //"/jsmind/example/demo.html"
  8207. "id": "mind" + cid + stage + task + tool,
  8208. "style": {
  8209. "width": "90%",
  8210. "height": "90%",
  8211. "overflow": 'hidden'
  8212. },
  8213. "onresize": function () { }
  8214. }, {
  8215. closecallback: function () { }
  8216. }, {
  8217. "style": {
  8218. "height": "36px"
  8219. }
  8220. }).form; //创建窗体
  8221. _taskbar = {
  8222. "id": str + _formdiv.id,
  8223. "style": {
  8224. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8225. },
  8226. "name": "思维导图",
  8227. "forms": _formdiv,
  8228. "click": function () {
  8229. U.MD.D.I.openApplication(str, obj, info);
  8230. }
  8231. }
  8232. break;
  8233. case "doc":
  8234. aTool = 6;
  8235. _iframe = $$("iframe", {
  8236. "frameborder": "no",
  8237. "border": "0",
  8238. "scrolling ": "no",
  8239. "style": {
  8240. "cssText": "border:0;width:100%;height:100%"
  8241. },
  8242. "src": "/Office/Word/WordEditArea.htm"
  8243. })
  8244. _box.appendChild(_iframe);
  8245. _box.appendChild(_jie);
  8246. _formdiv = new U.UF.UI.form(
  8247. "协同文档",
  8248. _box, {
  8249. "id": "doc" + cid + stage + task + tool,
  8250. "style": {
  8251. "width": "90%",
  8252. "height": "90%",
  8253. "overflow": 'hidden'
  8254. },
  8255. "onresize": function () { }
  8256. }, {
  8257. closecallback: function () { }
  8258. }, {
  8259. "style": {
  8260. "height": "36px"
  8261. }
  8262. }).form; //创建窗体
  8263. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8264. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8265. })
  8266. _taskbar = {
  8267. "id": str + _formdiv.id,
  8268. "style": {
  8269. "backgroundImage": "url(/img/icon/doc.png)"
  8270. },
  8271. "name": "协同文档",
  8272. "forms": _formdiv,
  8273. "click": function () {
  8274. U.MD.D.I.openApplication(str, obj, info);
  8275. }
  8276. }
  8277. break;
  8278. case "mindNetwork": //好友打开
  8279. aTool = 7;
  8280. _iframe = $$("iframe", {
  8281. "webkitallowfullscreen": "",
  8282. "mozallowfullscreen": "",
  8283. "allowfullscreen": "",
  8284. "frameborder": "no",
  8285. "border": "0",
  8286. "scrolling ": "no",
  8287. "style": {
  8288. "cssText": "border:0; width:100%; height:100%;"
  8289. },
  8290. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8291. })
  8292. _box.appendChild(_iframe);
  8293. _box.appendChild(_jie);
  8294. _formdiv = new U.UF.UI.form(
  8295. "思维网格",
  8296. _box, {
  8297. "id": "mindNetwork" + cid + stage + task + tool,
  8298. "style": {
  8299. "width": "90%",
  8300. "height": "90%",
  8301. "overflow": 'hidden'
  8302. },
  8303. "onresize": function () { }
  8304. }, {
  8305. closecallback: function () { }
  8306. }, {
  8307. "style": {
  8308. "height": "36px"
  8309. }
  8310. }).form; //创建窗体
  8311. _taskbar = {
  8312. "id": str + _formdiv.id,
  8313. "style": {
  8314. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8315. },
  8316. "name": "思维网格",
  8317. "forms": _formdiv,
  8318. "click": function () {
  8319. U.MD.D.I.openApplication(str, obj, info);
  8320. }
  8321. }
  8322. break;
  8323. case "courseDesign":
  8324. _iframe = $$("iframe", {
  8325. "webkitallowfullscreen": "",
  8326. "mozallowfullscreen": "",
  8327. "allowfullscreen": "",
  8328. "frameborder": "no",
  8329. "border": "0",
  8330. "scrolling ": "no",
  8331. "style": {
  8332. "cssText": "border:0; width:100%; height:100%;"
  8333. },
  8334. "src": "/course-design-vue"
  8335. })
  8336. _box.appendChild(_iframe);
  8337. _box.appendChild(_jie);
  8338. _formdiv = new U.UF.UI.form(
  8339. "项目设计",
  8340. _box, {
  8341. "id": "courseDesign" + cid + stage + task + tool,
  8342. "style": {
  8343. "width": "90%",
  8344. "height": "90%",
  8345. "overflow": 'hidden'
  8346. },
  8347. "onresize": function () { }
  8348. }, {
  8349. closecallback: function () { }
  8350. }, {
  8351. "style": {
  8352. "height": "36px"
  8353. }
  8354. }).form; //创建窗体
  8355. _taskbar = {
  8356. "id": str + _formdiv.id,
  8357. "style": {
  8358. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8359. },
  8360. "name": "项目设计",
  8361. "forms": _formdiv,
  8362. "click": function () {
  8363. U.MD.D.I.openApplication(str, obj, info);
  8364. }
  8365. }
  8366. break;
  8367. }
  8368. const script1 = document.createElement("script");
  8369. script1.type = "text/javascript";
  8370. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8371. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8372. const script2 = document.createElement("script");
  8373. script2.type = "text/javascript";
  8374. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8375. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8376. const script3 = document.createElement("script");
  8377. script3.type = "text/javascript";
  8378. script3.charset = "UTF-8";
  8379. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8380. const script4 = document.createElement("script");
  8381. script4.type = "text/javascript";
  8382. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8383. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8384. if (_iframe) {
  8385. if (str == 'doc') {
  8386. _iframe = _formdiv.querySelector('iframe')
  8387. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8388. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8389. _iframe.contentWindow.document.body.appendChild(script1);
  8390. _iframe.contentWindow.document.body.appendChild(script2);
  8391. // _iframe.contentWindow.document.body.appendChild(script3);
  8392. _iframe.contentWindow.document.body.appendChild(script4);
  8393. })
  8394. if (onloadListener) {
  8395. _iframe.contentDocument.location.reload()
  8396. } else {
  8397. _iframe.contentDocument.location.reload()
  8398. }
  8399. } else if (str == 'courseDesign') {
  8400. U.UF.DL.iframeLoad(_iframe, function () {
  8401. // _iframe.contentWindow.U.MD.O.W.load();
  8402. // _iframe.contentWindow.document.body.appendChild(script1);
  8403. _iframe.contentWindow.document.body.appendChild(script2);
  8404. _iframe.contentWindow.document.body.appendChild(script4);
  8405. })
  8406. } else if (str == 'mind') {
  8407. _iframe = _formdiv.querySelector('iframe')
  8408. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8409. //
  8410. _iframe.contentWindow.document.body.appendChild(script1);
  8411. _iframe.contentWindow.document.body.appendChild(script2);
  8412. _iframe.contentWindow.document.body.appendChild(script4);
  8413. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8414. })
  8415. if (onloadListener) {
  8416. _iframe.contentDocument.location.reload()
  8417. } else {
  8418. _iframe.contentDocument.location.reload()
  8419. }
  8420. } else if (str == 'whiteboard') {
  8421. _iframe = _formdiv.querySelector('iframe')
  8422. let onloadListener = _iframe.onload = () => {
  8423. _iframe.contentWindow.document.body.appendChild(script1);
  8424. _iframe.contentWindow.document.body.appendChild(script2);
  8425. _iframe.contentWindow.document.body.appendChild(script4);
  8426. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8427. };
  8428. // if (onloadListener) {
  8429. // try {
  8430. // _iframe.src += "?cocorobo="+new Date().getTime()
  8431. // _iframe.contentWindow.document.location.reload()
  8432. // } catch (error) {
  8433. // }
  8434. // } else {
  8435. // _iframe.contentDocument.location.reload()
  8436. // }
  8437. } else {
  8438. _iframe.onload = () => {
  8439. _iframe.contentWindow.document.body.appendChild(script1);
  8440. _iframe.contentWindow.document.body.appendChild(script2);
  8441. // _iframe.contentWindow.document.body.appendChild(script3);
  8442. _iframe.contentWindow.document.body.appendChild(script4);
  8443. };
  8444. }
  8445. _jie.onclick = async () => {
  8446. let text = ''
  8447. if (aTool == 1) {
  8448. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8449. } else if (aTool == 6) {
  8450. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8451. } else if (aTool == 3) {
  8452. text = await U.MD.D.I.getEditorContent(_iframe);
  8453. }
  8454. _loading.style.display = 'flex'
  8455. console.log(_loading);
  8456. var _ajs = _iframe.contentWindow.document.createElement("script");
  8457. _ajs.type = "text/javascript";
  8458. _ajs.innerHTML =
  8459. // 'console.log(' + _loading + ');\n' +
  8460. 'var _js = document.createElement("script");\n' +
  8461. '_js.type="text/javascript";\n' +
  8462. '_js.charset="UTF-8";\n' +
  8463. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8464. "_js.onload = function(){\n" +
  8465. ' var a = document.getElementsByTagName("img")\n' +
  8466. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8467. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8468. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8469. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8470. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8471. "beforeUpload_shishi(file," +
  8472. "'" +
  8473. _userid +
  8474. "'" +
  8475. ", " +
  8476. "'" +
  8477. _cid +
  8478. "'" +
  8479. ", " +
  8480. "'" +
  8481. _stage +
  8482. "'" +
  8483. ", " +
  8484. "'" +
  8485. _task +
  8486. "'" +
  8487. ", " +
  8488. "'" +
  8489. _tool +
  8490. "'" +
  8491. ", " +
  8492. "'" +
  8493. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8494. "'" +
  8495. ", " +
  8496. "'" +
  8497. aTool +
  8498. "'" +
  8499. ", " +
  8500. "`" +
  8501. text +
  8502. "`" +
  8503. ")\n" +
  8504. " });\n" +
  8505. "}\n" +
  8506. "document.head.appendChild(_js);\n";
  8507. _iframe.contentWindow.document.head.appendChild(_ajs);
  8508. }
  8509. }
  8510. //U.MD.D.I.openClick(str);
  8511. //如果有任务栏信息
  8512. // if (_taskbar) {
  8513. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8514. // }
  8515. }
  8516. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8517. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8518. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8519. _userinfo = US.userInfo, //登录用户信息
  8520. _userid = US.userInfo.userid //登录用户id
  8521. let _iframe;
  8522. let _cid = cid,
  8523. _stage = stage,
  8524. _task = task,
  8525. _tool = tool;
  8526. var _jie = $$("div", {
  8527. "style": {
  8528. "position": "absolute",
  8529. "bottom": "50px",
  8530. "right": "50px",
  8531. "zIndex": "9999",
  8532. "backgroundColor": "#2268bc",
  8533. "color": "#fff",
  8534. "padding": "12px 20px",
  8535. "cursor": "pointer",
  8536. "borderRadius": "4px",
  8537. },
  8538. "innerHTML": "提交作业"
  8539. })
  8540. let aTool = ''
  8541. let _loading = document.createElement('div')
  8542. _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;"
  8543. // _loading.id = "";
  8544. let _lchild = document.createElement('div')
  8545. let _limg = document.createElement('img')
  8546. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8547. _limg.style = "width: 26px;margin-right: 10px;"
  8548. _lchild.appendChild(_limg)
  8549. let _lspan = document.createElement('span')
  8550. _lspan.innerHTML = "上传中..."
  8551. _lchild.appendChild(_lspan)
  8552. _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%);"
  8553. _loading.appendChild(_lchild)
  8554. let _box = $$('div', {
  8555. "style": {
  8556. "position": "relative",
  8557. "width": "100%",
  8558. "height": "100%",
  8559. },
  8560. })
  8561. _box.appendChild(_loading)
  8562. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8563. switch (str) {
  8564. case "whiteboard":
  8565. aTool = 1;
  8566. _iframe = $$("iframe", {
  8567. "frameborder": "no",
  8568. "border": "0",
  8569. "scrolling ": "no",
  8570. "style": {
  8571. "cssText": "border:0;width:100%;height:100%"
  8572. },
  8573. "src": "https://beta.iwb.cocorobo.cn/"
  8574. })
  8575. _box.appendChild(_iframe);
  8576. _box.appendChild(_jie);
  8577. _formdiv = new U.UF.UI.form(
  8578. "电子白板",
  8579. _box, {
  8580. "id": "whiteboard" + cid + stage + task + tool,
  8581. "style": {
  8582. "width": "90%",
  8583. "height": "90%",
  8584. "overflow": 'hidden'
  8585. },
  8586. "onresize": function () { }
  8587. }, {
  8588. closecallback: function () { }
  8589. }, {
  8590. "style": {
  8591. "height": "36px"
  8592. }
  8593. }).form; //创建窗体
  8594. _taskbar = {
  8595. "id": str + _formdiv.id,
  8596. "style": {
  8597. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8598. },
  8599. "name": "电子白板",
  8600. "forms": _formdiv,
  8601. "click": function () {
  8602. U.MD.D.I.openApplication(str, obj, info);
  8603. }
  8604. }
  8605. break;
  8606. case "mind":
  8607. aTool = 3;
  8608. _iframe = $$("iframe", {
  8609. "frameborder": "no",
  8610. "border": "0",
  8611. "scrolling ": "no",
  8612. "style": {
  8613. "cssText": "border:0;width:100%;height:100%"
  8614. },
  8615. "src": "/kityminder-editor/dist/index.html"
  8616. })
  8617. _box.appendChild(_iframe);
  8618. _box.appendChild(_jie);
  8619. _formdiv = new U.UF.UI.form(
  8620. "思维导图",
  8621. _box, { //"/jsmind/example/demo.html"
  8622. "id": "mind" + cid + stage + task + tool,
  8623. "style": {
  8624. "width": "90%",
  8625. "height": "90%",
  8626. "overflow": 'hidden'
  8627. },
  8628. "onresize": function () { }
  8629. }, {
  8630. closecallback: function () { }
  8631. }, {
  8632. "style": {
  8633. "height": "36px"
  8634. }
  8635. }).form; //创建窗体
  8636. _taskbar = {
  8637. "id": str + _formdiv.id,
  8638. "style": {
  8639. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8640. },
  8641. "name": "思维导图",
  8642. "forms": _formdiv,
  8643. "click": function () {
  8644. U.MD.D.I.openApplication(str, obj, info);
  8645. }
  8646. }
  8647. break;
  8648. case "MindMap":
  8649. aTool = 3;
  8650. _iframe = $$("iframe", {
  8651. "frameborder": "no",
  8652. "border": "0",
  8653. "scrolling ": "no",
  8654. "style": {
  8655. "cssText": "border:0;width:100%;height:100%"
  8656. },
  8657. "src": "//cloud.cocorobo.cn/mind/"
  8658. })
  8659. _box.appendChild(_iframe);
  8660. _box.appendChild(_jie);
  8661. _formdiv = new U.UF.UI.form(
  8662. "思维导图",
  8663. _box, { //"/jsmind/example/demo.html"
  8664. "id": "mind" + cid + stage + task + tool,
  8665. "style": {
  8666. "width": "90%",
  8667. "height": "90%",
  8668. "overflow": 'hidden'
  8669. },
  8670. "onresize": function () { }
  8671. }, {
  8672. closecallback: function () { }
  8673. }, {
  8674. "style": {
  8675. "height": "36px"
  8676. }
  8677. }).form; //创建窗体
  8678. _taskbar = {
  8679. "id": str + _formdiv.id,
  8680. "style": {
  8681. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8682. },
  8683. "name": "思维导图",
  8684. "forms": _formdiv,
  8685. "click": function () {
  8686. U.MD.D.I.openApplication(str, obj, info);
  8687. }
  8688. }
  8689. break;
  8690. case "doc":
  8691. aTool = 6;
  8692. _iframe = $$("iframe", {
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "/Office/Word/WordEditArea.htm"
  8700. })
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "协同文档",
  8705. _box, {
  8706. "id": "doc" + cid + stage + task + tool,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //创建窗体
  8720. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8721. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8722. })
  8723. _taskbar = {
  8724. "id": str + _formdiv.id,
  8725. "style": {
  8726. "backgroundImage": "url(/img/icon/doc.png)"
  8727. },
  8728. "name": "协同文档",
  8729. "forms": _formdiv,
  8730. "click": function () {
  8731. U.MD.D.I.openApplication(str, obj, info);
  8732. }
  8733. }
  8734. break;
  8735. case "mindNetwork": //好友打开
  8736. aTool = 7;
  8737. _iframe = $$("iframe", {
  8738. "webkitallowfullscreen": "",
  8739. "mozallowfullscreen": "",
  8740. "allowfullscreen": "",
  8741. "frameborder": "no",
  8742. "border": "0",
  8743. "scrolling ": "no",
  8744. "style": {
  8745. "cssText": "border:0; width:100%; height:100%;"
  8746. },
  8747. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8748. })
  8749. _box.appendChild(_iframe);
  8750. _box.appendChild(_jie);
  8751. _formdiv = new U.UF.UI.form(
  8752. "思维网格",
  8753. _box, {
  8754. "id": "mindNetwork" + cid + stage + task + tool,
  8755. "style": {
  8756. "width": "90%",
  8757. "height": "90%",
  8758. "overflow": 'hidden'
  8759. },
  8760. "onresize": function () { }
  8761. }, {
  8762. closecallback: function () { }
  8763. }, {
  8764. "style": {
  8765. "height": "36px"
  8766. }
  8767. }).form; //创建窗体
  8768. _taskbar = {
  8769. "id": str + _formdiv.id,
  8770. "style": {
  8771. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8772. },
  8773. "name": "思维网格",
  8774. "forms": _formdiv,
  8775. "click": function () {
  8776. U.MD.D.I.openApplication(str, obj, info);
  8777. }
  8778. }
  8779. break;
  8780. case "courseDesign":
  8781. _iframe = $$("iframe", {
  8782. "webkitallowfullscreen": "",
  8783. "mozallowfullscreen": "",
  8784. "allowfullscreen": "",
  8785. "frameborder": "no",
  8786. "border": "0",
  8787. "scrolling ": "no",
  8788. "style": {
  8789. "cssText": "border:0; width:100%; height:100%;"
  8790. },
  8791. "src": "/course-design-vue"
  8792. })
  8793. _box.appendChild(_iframe);
  8794. _box.appendChild(_jie);
  8795. _formdiv = new U.UF.UI.form(
  8796. "项目设计",
  8797. _box, {
  8798. "id": "courseDesign" + cid + stage + task + tool,
  8799. "style": {
  8800. "width": "90%",
  8801. "height": "90%",
  8802. "overflow": 'hidden'
  8803. },
  8804. "onresize": function () { }
  8805. }, {
  8806. closecallback: function () { }
  8807. }, {
  8808. "style": {
  8809. "height": "36px"
  8810. }
  8811. }).form; //创建窗体
  8812. _taskbar = {
  8813. "id": str + _formdiv.id,
  8814. "style": {
  8815. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8816. },
  8817. "name": "项目设计",
  8818. "forms": _formdiv,
  8819. "click": function () {
  8820. U.MD.D.I.openApplication(str, obj, info);
  8821. }
  8822. }
  8823. break;
  8824. }
  8825. const script1 = document.createElement("script");
  8826. script1.type = "text/javascript";
  8827. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8828. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8829. const script2 = document.createElement("script");
  8830. script2.type = "text/javascript";
  8831. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8832. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8833. const script3 = document.createElement("script");
  8834. script3.type = "text/javascript";
  8835. script3.charset = "UTF-8";
  8836. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8837. const script4 = document.createElement("script");
  8838. script4.type = "text/javascript";
  8839. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8840. script4.src = window.origin + "/js/Common/jietu2E.js";
  8841. if (_iframe) {
  8842. if (str == 'doc') {
  8843. _iframe = _formdiv.querySelector('iframe')
  8844. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8845. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8846. _iframe.contentWindow.document.body.appendChild(script1);
  8847. _iframe.contentWindow.document.body.appendChild(script2);
  8848. // _iframe.contentWindow.document.body.appendChild(script3);
  8849. _iframe.contentWindow.document.body.appendChild(script4);
  8850. })
  8851. if (onloadListener) {
  8852. _iframe.contentDocument.location.reload()
  8853. } else {
  8854. _iframe.contentDocument.location.reload()
  8855. }
  8856. } else if (str == 'courseDesign') {
  8857. U.UF.DL.iframeLoad(_iframe, function () {
  8858. // _iframe.contentWindow.U.MD.O.W.load();
  8859. // _iframe.contentWindow.document.body.appendChild(script1);
  8860. _iframe.contentWindow.document.body.appendChild(script2);
  8861. _iframe.contentWindow.document.body.appendChild(script4);
  8862. })
  8863. } else if (str == 'mind') {
  8864. _iframe = _formdiv.querySelector('iframe')
  8865. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8866. //
  8867. _iframe.contentWindow.document.body.appendChild(script1);
  8868. _iframe.contentWindow.document.body.appendChild(script2);
  8869. _iframe.contentWindow.document.body.appendChild(script4);
  8870. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8871. })
  8872. if (onloadListener) {
  8873. _iframe.contentDocument.location.reload()
  8874. } else {
  8875. _iframe.contentDocument.location.reload()
  8876. }
  8877. } else if (str == 'whiteboard') {
  8878. _iframe = _formdiv.querySelector('iframe')
  8879. let onloadListener = _iframe.onload = () => {
  8880. _iframe.contentWindow.document.body.appendChild(script1);
  8881. _iframe.contentWindow.document.body.appendChild(script2);
  8882. _iframe.contentWindow.document.body.appendChild(script4);
  8883. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8884. };
  8885. // if (onloadListener) {
  8886. // try {
  8887. // _iframe.src += "?cocorobo="+new Date().getTime()
  8888. // _iframe.contentWindow.document.location.reload()
  8889. // } catch (error) {
  8890. // }
  8891. // } else {
  8892. // _iframe.contentDocument.location.reload()
  8893. // }
  8894. } else {
  8895. _iframe.onload = () => {
  8896. _iframe.contentWindow.document.body.appendChild(script1);
  8897. _iframe.contentWindow.document.body.appendChild(script2);
  8898. // _iframe.contentWindow.document.body.appendChild(script3);
  8899. _iframe.contentWindow.document.body.appendChild(script4);
  8900. };
  8901. }
  8902. _jie.onclick = async () => {
  8903. let text = ''
  8904. if (aTool == 1) {
  8905. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8906. } else if (aTool == 6) {
  8907. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8908. } else if (aTool == 3) {
  8909. text = await U.MD.D.I.getEditorContent(_iframe);
  8910. }
  8911. _loading.style.display = 'flex'
  8912. console.log(_loading);
  8913. var _ajs = _iframe.contentWindow.document.createElement("script");
  8914. _ajs.type = "text/javascript";
  8915. _ajs.innerHTML =
  8916. // 'console.log(' + _loading + ');\n' +
  8917. 'var _js = document.createElement("script");\n' +
  8918. '_js.type="text/javascript";\n' +
  8919. '_js.charset="UTF-8";\n' +
  8920. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8921. "_js.onload = function(){\n" +
  8922. ' var a = document.getElementsByTagName("img")\n' +
  8923. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8924. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8925. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8926. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8927. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8928. "beforeUpload_shishi(file," +
  8929. "'" +
  8930. _userid +
  8931. "'" +
  8932. ", " +
  8933. "'" +
  8934. _cid +
  8935. "'" +
  8936. ", " +
  8937. "'" +
  8938. _stage +
  8939. "'" +
  8940. ", " +
  8941. "'" +
  8942. _task +
  8943. "'" +
  8944. ", " +
  8945. "'" +
  8946. _tool +
  8947. "'" +
  8948. ", " +
  8949. "'" +
  8950. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8951. "'" +
  8952. ", " +
  8953. "'" +
  8954. aTool +
  8955. "'" +
  8956. ", " +
  8957. "`" +
  8958. text +
  8959. "`" +
  8960. ")\n" +
  8961. " });\n" +
  8962. "}\n" +
  8963. "document.head.appendChild(_js);\n";
  8964. _iframe.contentWindow.document.head.appendChild(_ajs);
  8965. }
  8966. }
  8967. //U.MD.D.I.openClick(str);
  8968. //如果有任务栏信息
  8969. // if (_taskbar) {
  8970. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8971. // }
  8972. }
  8973. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8974. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8975. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8976. _userid = student.userid, //登录用户id
  8977. _username = student.student //用户名字
  8978. let _iframe;
  8979. let _cid = cid,
  8980. _stage = stage,
  8981. _task = task,
  8982. _tool = tool;
  8983. var _jie = $$("div", {
  8984. "style": {
  8985. "position": "absolute",
  8986. "bottom": "50px",
  8987. "right": "50px",
  8988. "zIndex": "9999",
  8989. "backgroundColor": "#2268bc",
  8990. "color": "#fff",
  8991. "padding": "12px 20px",
  8992. "cursor": "pointer",
  8993. "borderRadius": "4px",
  8994. },
  8995. "innerHTML": "提交作业"
  8996. })
  8997. let aTool = ''
  8998. let _loading = document.createElement('div')
  8999. _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;"
  9000. // _loading.id = "";
  9001. let _lchild = document.createElement('div')
  9002. let _limg = document.createElement('img')
  9003. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9004. _limg.style = "width: 26px;margin-right: 10px;"
  9005. _lchild.appendChild(_limg)
  9006. let _lspan = document.createElement('span')
  9007. _lspan.innerHTML = "上传中..."
  9008. _lchild.appendChild(_lspan)
  9009. _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%);"
  9010. _loading.appendChild(_lchild)
  9011. var _box = $$('div', {
  9012. "style": {
  9013. "position": "relative",
  9014. "width": "100%",
  9015. "height": "100%",
  9016. },
  9017. })
  9018. _box.appendChild(_loading)
  9019. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9020. switch (str) {
  9021. case "whiteboard":
  9022. aTool = 1;
  9023. _iframe = $$("iframe", {
  9024. "frameborder": "no",
  9025. "border": "0",
  9026. "scrolling ": "no",
  9027. "style": {
  9028. "cssText": "border:0;width:100%;height:100%"
  9029. },
  9030. "src": "https://beta.iwb.cocorobo.cn/"
  9031. })
  9032. _box.appendChild(_iframe);
  9033. _box.appendChild(_jie);
  9034. _formdiv = new U.UF.UI.form(
  9035. "电子白板-" + _username,
  9036. _box, {
  9037. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9038. "style": {
  9039. "width": "90%",
  9040. "height": "90%",
  9041. "overflow": 'hidden'
  9042. },
  9043. "onresize": function () { }
  9044. }, {
  9045. closecallback: function () { }
  9046. }, {
  9047. "style": {
  9048. "height": "36px"
  9049. }
  9050. }).form; //创建窗体
  9051. _taskbar = {
  9052. "id": str + _formdiv.id,
  9053. "style": {
  9054. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9055. },
  9056. "name": "电子白板",
  9057. "forms": _formdiv,
  9058. "click": function () {
  9059. U.MD.D.I.openApplication(str, obj, info);
  9060. }
  9061. }
  9062. break;
  9063. case "mind":
  9064. aTool = 3;
  9065. _iframe = $$("iframe", {
  9066. "frameborder": "no",
  9067. "border": "0",
  9068. "scrolling ": "no",
  9069. "style": {
  9070. "cssText": "border:0;width:100%;height:100%"
  9071. },
  9072. "src": "/kityminder-editor/dist/index.html"
  9073. })
  9074. _box.appendChild(_iframe);
  9075. _box.appendChild(_jie);
  9076. _formdiv = new U.UF.UI.form(
  9077. "思维导图-" + _username,
  9078. _box, { //"/jsmind/example/demo.html"
  9079. "id": "mind" + cid + stage + task + tool + _userid,
  9080. "style": {
  9081. "width": "90%",
  9082. "height": "90%",
  9083. "overflow": 'hidden'
  9084. },
  9085. "onresize": function () { }
  9086. }, {
  9087. closecallback: function () { }
  9088. }, {
  9089. "style": {
  9090. "height": "36px"
  9091. }
  9092. }).form; //创建窗体
  9093. _taskbar = {
  9094. "id": str + _formdiv.id,
  9095. "style": {
  9096. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9097. },
  9098. "name": "思维导图",
  9099. "forms": _formdiv,
  9100. "click": function () {
  9101. U.MD.D.I.openApplication(str, obj, info);
  9102. }
  9103. }
  9104. break;
  9105. case "MindMap":
  9106. aTool = 3;
  9107. _iframe = $$("iframe", {
  9108. "frameborder": "no",
  9109. "border": "0",
  9110. "scrolling ": "no",
  9111. "style": {
  9112. "cssText": "border:0;width:100%;height:100%"
  9113. },
  9114. "src": "//cloud.cocorobo.cn/mind/"
  9115. })
  9116. _box.appendChild(_iframe);
  9117. _box.appendChild(_jie);
  9118. _formdiv = new U.UF.UI.form(
  9119. "思维导图-" + _username,
  9120. _box, { //"/jsmind/example/demo.html"
  9121. "id": "mind" + cid + stage + task + tool + _userid,
  9122. "style": {
  9123. "width": "90%",
  9124. "height": "90%",
  9125. "overflow": 'hidden'
  9126. },
  9127. "onresize": function () { }
  9128. }, {
  9129. closecallback: function () { }
  9130. }, {
  9131. "style": {
  9132. "height": "36px"
  9133. }
  9134. }).form; //创建窗体
  9135. _taskbar = {
  9136. "id": str + _formdiv.id,
  9137. "style": {
  9138. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9139. },
  9140. "name": "思维导图",
  9141. "forms": _formdiv,
  9142. "click": function () {
  9143. U.MD.D.I.openApplication(str, obj, info);
  9144. }
  9145. }
  9146. break;
  9147. case "doc":
  9148. aTool = 6;
  9149. _iframe = $$("iframe", {
  9150. "frameborder": "no",
  9151. "border": "0",
  9152. "scrolling ": "no",
  9153. "style": {
  9154. "cssText": "border:0;width:100%;height:100%"
  9155. },
  9156. "src": "/Office/Word/WordEditArea.htm"
  9157. })
  9158. _box.appendChild(_iframe);
  9159. _box.appendChild(_jie);
  9160. _formdiv = new U.UF.UI.form(
  9161. "协同文档-" + _username,
  9162. _box, {
  9163. "id": "doc" + cid + stage + task + tool + _userid,
  9164. "style": {
  9165. "width": "90%",
  9166. "height": "90%",
  9167. "overflow": 'hidden'
  9168. },
  9169. "onresize": function () { }
  9170. }, {
  9171. closecallback: function () { }
  9172. }, {
  9173. "style": {
  9174. "height": "36px"
  9175. }
  9176. }).form; //创建窗体
  9177. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9178. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9179. })
  9180. _taskbar = {
  9181. "id": str + _formdiv.id,
  9182. "style": {
  9183. "backgroundImage": "url(/img/icon/doc.png)"
  9184. },
  9185. "name": "协同文档",
  9186. "forms": _formdiv,
  9187. "click": function () {
  9188. U.MD.D.I.openApplication(str, obj, info);
  9189. }
  9190. }
  9191. break;
  9192. case "mindNetwork": //好友打开
  9193. aTool = 7;
  9194. _iframe = $$("iframe", {
  9195. "webkitallowfullscreen": "",
  9196. "mozallowfullscreen": "",
  9197. "allowfullscreen": "",
  9198. "frameborder": "no",
  9199. "border": "0",
  9200. "scrolling ": "no",
  9201. "style": {
  9202. "cssText": "border:0; width:100%; height:100%;"
  9203. },
  9204. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9205. })
  9206. _box.appendChild(_iframe);
  9207. _box.appendChild(_jie);
  9208. _formdiv = new U.UF.UI.form(
  9209. "思维网格-" + _username,
  9210. _box, {
  9211. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9212. "style": {
  9213. "width": "90%",
  9214. "height": "90%",
  9215. "overflow": 'hidden'
  9216. },
  9217. "onresize": function () { }
  9218. }, {
  9219. closecallback: function () { }
  9220. }, {
  9221. "style": {
  9222. "height": "36px"
  9223. }
  9224. }).form; //创建窗体
  9225. _taskbar = {
  9226. "id": str + _formdiv.id,
  9227. "style": {
  9228. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9229. },
  9230. "name": "思维网格",
  9231. "forms": _formdiv,
  9232. "click": function () {
  9233. U.MD.D.I.openApplication(str, obj, info);
  9234. }
  9235. }
  9236. break;
  9237. case "courseDesign":
  9238. _iframe = $$("iframe", {
  9239. "webkitallowfullscreen": "",
  9240. "mozallowfullscreen": "",
  9241. "allowfullscreen": "",
  9242. "frameborder": "no",
  9243. "border": "0",
  9244. "scrolling ": "no",
  9245. "style": {
  9246. "cssText": "border:0; width:100%; height:100%;"
  9247. },
  9248. "src": "/course-design-vue"
  9249. })
  9250. _box.appendChild(_iframe);
  9251. _box.appendChild(_jie);
  9252. _formdiv = new U.UF.UI.form(
  9253. "项目设计-" + _username,
  9254. _box, {
  9255. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9256. "style": {
  9257. "width": "90%",
  9258. "height": "90%",
  9259. "overflow": 'hidden'
  9260. },
  9261. "onresize": function () { }
  9262. }, {
  9263. closecallback: function () { }
  9264. }, {
  9265. "style": {
  9266. "height": "36px"
  9267. }
  9268. }).form; //创建窗体
  9269. _taskbar = {
  9270. "id": str + _formdiv.id,
  9271. "style": {
  9272. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9273. },
  9274. "name": "项目设计",
  9275. "forms": _formdiv,
  9276. "click": function () {
  9277. U.MD.D.I.openApplication(str, obj, info);
  9278. }
  9279. }
  9280. break;
  9281. }
  9282. const script1 = document.createElement("script");
  9283. script1.type = "text/javascript";
  9284. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9285. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9286. const script2 = document.createElement("script");
  9287. script2.type = "text/javascript";
  9288. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9289. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9290. const script3 = document.createElement("script");
  9291. script3.type = "text/javascript";
  9292. script3.charset = "UTF-8";
  9293. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9294. const script4 = document.createElement("script");
  9295. script4.type = "text/javascript";
  9296. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9297. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9298. if (_iframe) {
  9299. if (str == 'doc') {
  9300. _iframe = _formdiv.querySelector('iframe')
  9301. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9302. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9303. _iframe.contentWindow.document.body.appendChild(script1);
  9304. _iframe.contentWindow.document.body.appendChild(script2);
  9305. // _iframe.contentWindow.document.body.appendChild(script3);
  9306. _iframe.contentWindow.document.body.appendChild(script4);
  9307. })
  9308. if (onloadListener) {
  9309. _iframe.contentDocument.location.reload()
  9310. } else {
  9311. _iframe.contentDocument.location.reload()
  9312. }
  9313. } else if (str == 'courseDesign') {
  9314. U.UF.DL.iframeLoad(_iframe, function () {
  9315. // _iframe.contentWindow.U.MD.O.W.load();
  9316. // _iframe.contentWindow.document.body.appendChild(script1);
  9317. _iframe.contentWindow.document.body.appendChild(script2);
  9318. _iframe.contentWindow.document.body.appendChild(script4);
  9319. })
  9320. } else if (str == 'mind') {
  9321. _iframe = _formdiv.querySelector('iframe')
  9322. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9323. //
  9324. _iframe.contentWindow.document.body.appendChild(script1);
  9325. _iframe.contentWindow.document.body.appendChild(script2);
  9326. _iframe.contentWindow.document.body.appendChild(script4);
  9327. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9328. })
  9329. if (onloadListener) {
  9330. _iframe.contentDocument.location.reload()
  9331. } else {
  9332. _iframe.contentDocument.location.reload()
  9333. }
  9334. } else if (str == 'whiteboard') {
  9335. _iframe = _formdiv.querySelector('iframe')
  9336. let onloadListener = _iframe.onload = () => {
  9337. _iframe.contentWindow.document.body.appendChild(script1);
  9338. _iframe.contentWindow.document.body.appendChild(script2);
  9339. _iframe.contentWindow.document.body.appendChild(script4);
  9340. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9341. };
  9342. // if (onloadListener) {
  9343. // try {
  9344. // _iframe.src += "?cocorobo="+new Date().getTime()
  9345. // _iframe.contentWindow.document.location.reload()
  9346. // } catch (error) {
  9347. // }
  9348. // } else {
  9349. // _iframe.contentDocument.location.reload()
  9350. // }
  9351. } else {
  9352. _iframe.onload = () => {
  9353. _iframe.contentWindow.document.body.appendChild(script1);
  9354. _iframe.contentWindow.document.body.appendChild(script2);
  9355. // _iframe.contentWindow.document.body.appendChild(script3);
  9356. _iframe.contentWindow.document.body.appendChild(script4);
  9357. };
  9358. }
  9359. _jie.onclick = async () => {
  9360. let text = ''
  9361. if (aTool == 1) {
  9362. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9363. } else if (aTool == 6) {
  9364. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9365. } else if (aTool == 3) {
  9366. text = await U.MD.D.I.getEditorContent(_iframe);
  9367. }
  9368. _loading.style.display = 'flex'
  9369. console.log(_loading);
  9370. var _ajs = _iframe.contentWindow.document.createElement("script");
  9371. _ajs.type = "text/javascript";
  9372. _ajs.innerHTML =
  9373. // 'console.log(' + _loading + ');\n' +
  9374. 'var _js = document.createElement("script");\n' +
  9375. '_js.type="text/javascript";\n' +
  9376. '_js.charset="UTF-8";\n' +
  9377. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9378. "_js.onload = function(){\n" +
  9379. ' var a = document.getElementsByTagName("img")\n' +
  9380. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9381. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9382. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9383. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9384. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9385. "beforeUpload_shishi(file," +
  9386. "'" +
  9387. _userid +
  9388. "'" +
  9389. ", " +
  9390. "'" +
  9391. _cid +
  9392. "'" +
  9393. ", " +
  9394. "'" +
  9395. _stage +
  9396. "'" +
  9397. ", " +
  9398. "'" +
  9399. _task +
  9400. "'" +
  9401. ", " +
  9402. "'" +
  9403. _tool +
  9404. "'" +
  9405. ", " +
  9406. "'" +
  9407. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9408. "'" +
  9409. ", " +
  9410. "'" +
  9411. aTool +
  9412. "'" +
  9413. ", " +
  9414. "`" +
  9415. text +
  9416. "`" +
  9417. ")\n" +
  9418. " });\n" +
  9419. "}\n" +
  9420. "document.head.appendChild(_js);\n";
  9421. _iframe.contentWindow.document.head.appendChild(_ajs);
  9422. }
  9423. }
  9424. }
  9425. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9426. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9427. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9428. _userid = student.userid, //登录用户id
  9429. _username = student.student //用户名字
  9430. let _iframe;
  9431. let _cid = cid,
  9432. _stage = stage,
  9433. _task = task,
  9434. _tool = tool;
  9435. var _jie = $$("div", {
  9436. "style": {
  9437. "position": "absolute",
  9438. "bottom": "50px",
  9439. "right": "50px",
  9440. "zIndex": "9999",
  9441. "backgroundColor": "#2268bc",
  9442. "color": "#fff",
  9443. "padding": "12px 20px",
  9444. "cursor": "pointer",
  9445. "borderRadius": "4px",
  9446. },
  9447. "innerHTML": "提交作业"
  9448. })
  9449. let aTool = ''
  9450. let _loading = document.createElement('div')
  9451. _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;"
  9452. // _loading.id = "";
  9453. let _lchild = document.createElement('div')
  9454. let _limg = document.createElement('img')
  9455. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9456. _limg.style = "width: 26px;margin-right: 10px;"
  9457. _lchild.appendChild(_limg)
  9458. let _lspan = document.createElement('span')
  9459. _lspan.innerHTML = "上传中..."
  9460. _lchild.appendChild(_lspan)
  9461. _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%);"
  9462. _loading.appendChild(_lchild)
  9463. var _box = $$('div', {
  9464. "style": {
  9465. "position": "relative",
  9466. "width": "100%",
  9467. "height": "100%",
  9468. },
  9469. })
  9470. _box.appendChild(_loading)
  9471. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9472. switch (str) {
  9473. case "whiteboard":
  9474. aTool = 1;
  9475. _iframe = $$("iframe", {
  9476. "frameborder": "no",
  9477. "border": "0",
  9478. "scrolling ": "no",
  9479. "style": {
  9480. "cssText": "border:0;width:100%;height:100%"
  9481. },
  9482. "src": "https://beta.iwb.cocorobo.cn/"
  9483. })
  9484. _box.appendChild(_iframe);
  9485. _box.appendChild(_jie);
  9486. _formdiv = new U.UF.UI.form(
  9487. "电子白板-" + _username,
  9488. _box, {
  9489. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9490. "style": {
  9491. "width": "90%",
  9492. "height": "90%",
  9493. "overflow": 'hidden'
  9494. },
  9495. "onresize": function () { }
  9496. }, {
  9497. closecallback: function () { }
  9498. }, {
  9499. "style": {
  9500. "height": "36px"
  9501. }
  9502. }).form; //创建窗体
  9503. _taskbar = {
  9504. "id": str + _formdiv.id,
  9505. "style": {
  9506. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9507. },
  9508. "name": "电子白板",
  9509. "forms": _formdiv,
  9510. "click": function () {
  9511. U.MD.D.I.openApplication(str, obj, info);
  9512. }
  9513. }
  9514. break;
  9515. case "mind":
  9516. aTool = 3;
  9517. _iframe = $$("iframe", {
  9518. "frameborder": "no",
  9519. "border": "0",
  9520. "scrolling ": "no",
  9521. "style": {
  9522. "cssText": "border:0;width:100%;height:100%"
  9523. },
  9524. "src": "/kityminder-editor/dist/index.html"
  9525. })
  9526. _box.appendChild(_iframe);
  9527. _box.appendChild(_jie);
  9528. _formdiv = new U.UF.UI.form(
  9529. "思维导图-" + _username,
  9530. _box, { //"/jsmind/example/demo.html"
  9531. "id": "mind" + cid + stage + task + tool + _userid,
  9532. "style": {
  9533. "width": "90%",
  9534. "height": "90%",
  9535. "overflow": 'hidden'
  9536. },
  9537. "onresize": function () { }
  9538. }, {
  9539. closecallback: function () { }
  9540. }, {
  9541. "style": {
  9542. "height": "36px"
  9543. }
  9544. }).form; //创建窗体
  9545. _taskbar = {
  9546. "id": str + _formdiv.id,
  9547. "style": {
  9548. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9549. },
  9550. "name": "思维导图",
  9551. "forms": _formdiv,
  9552. "click": function () {
  9553. U.MD.D.I.openApplication(str, obj, info);
  9554. }
  9555. }
  9556. break;
  9557. case "MindMap":
  9558. aTool = 3;
  9559. _iframe = $$("iframe", {
  9560. "frameborder": "no",
  9561. "border": "0",
  9562. "scrolling ": "no",
  9563. "style": {
  9564. "cssText": "border:0;width:100%;height:100%"
  9565. },
  9566. "src": "//cloud.cocorobo.cn/mind/"
  9567. })
  9568. _box.appendChild(_iframe);
  9569. _box.appendChild(_jie);
  9570. _formdiv = new U.UF.UI.form(
  9571. "思维导图-" + _username,
  9572. _box, { //"/jsmind/example/demo.html"
  9573. "id": "mind" + cid + stage + task + tool + _userid,
  9574. "style": {
  9575. "width": "90%",
  9576. "height": "90%",
  9577. "overflow": 'hidden'
  9578. },
  9579. "onresize": function () { }
  9580. }, {
  9581. closecallback: function () { }
  9582. }, {
  9583. "style": {
  9584. "height": "36px"
  9585. }
  9586. }).form; //创建窗体
  9587. _taskbar = {
  9588. "id": str + _formdiv.id,
  9589. "style": {
  9590. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9591. },
  9592. "name": "思维导图",
  9593. "forms": _formdiv,
  9594. "click": function () {
  9595. U.MD.D.I.openApplication(str, obj, info);
  9596. }
  9597. }
  9598. break;
  9599. case "doc":
  9600. aTool = 6;
  9601. _iframe = $$("iframe", {
  9602. "frameborder": "no",
  9603. "border": "0",
  9604. "scrolling ": "no",
  9605. "style": {
  9606. "cssText": "border:0;width:100%;height:100%"
  9607. },
  9608. "src": "/Office/Word/WordEditArea.htm"
  9609. })
  9610. _box.appendChild(_iframe);
  9611. _box.appendChild(_jie);
  9612. _formdiv = new U.UF.UI.form(
  9613. "协同文档-" + _username,
  9614. _box, {
  9615. "id": "doc" + cid + stage + task + tool + _userid,
  9616. "style": {
  9617. "width": "90%",
  9618. "height": "90%",
  9619. "overflow": 'hidden'
  9620. },
  9621. "onresize": function () { }
  9622. }, {
  9623. closecallback: function () { }
  9624. }, {
  9625. "style": {
  9626. "height": "36px"
  9627. }
  9628. }).form; //创建窗体
  9629. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9630. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9631. })
  9632. _taskbar = {
  9633. "id": str + _formdiv.id,
  9634. "style": {
  9635. "backgroundImage": "url(/img/icon/doc.png)"
  9636. },
  9637. "name": "协同文档",
  9638. "forms": _formdiv,
  9639. "click": function () {
  9640. U.MD.D.I.openApplication(str, obj, info);
  9641. }
  9642. }
  9643. break;
  9644. case "mindNetwork": //好友打开
  9645. aTool = 7;
  9646. _iframe = $$("iframe", {
  9647. "webkitallowfullscreen": "",
  9648. "mozallowfullscreen": "",
  9649. "allowfullscreen": "",
  9650. "frameborder": "no",
  9651. "border": "0",
  9652. "scrolling ": "no",
  9653. "style": {
  9654. "cssText": "border:0; width:100%; height:100%;"
  9655. },
  9656. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9657. })
  9658. _box.appendChild(_iframe);
  9659. _box.appendChild(_jie);
  9660. _formdiv = new U.UF.UI.form(
  9661. "思维网格-" + _username,
  9662. _box, {
  9663. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9664. "style": {
  9665. "width": "90%",
  9666. "height": "90%",
  9667. "overflow": 'hidden'
  9668. },
  9669. "onresize": function () { }
  9670. }, {
  9671. closecallback: function () { }
  9672. }, {
  9673. "style": {
  9674. "height": "36px"
  9675. }
  9676. }).form; //创建窗体
  9677. _taskbar = {
  9678. "id": str + _formdiv.id,
  9679. "style": {
  9680. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9681. },
  9682. "name": "思维网格",
  9683. "forms": _formdiv,
  9684. "click": function () {
  9685. U.MD.D.I.openApplication(str, obj, info);
  9686. }
  9687. }
  9688. break;
  9689. case "courseDesign":
  9690. _iframe = $$("iframe", {
  9691. "webkitallowfullscreen": "",
  9692. "mozallowfullscreen": "",
  9693. "allowfullscreen": "",
  9694. "frameborder": "no",
  9695. "border": "0",
  9696. "scrolling ": "no",
  9697. "style": {
  9698. "cssText": "border:0; width:100%; height:100%;"
  9699. },
  9700. "src": "/course-design-vue"
  9701. })
  9702. _box.appendChild(_iframe);
  9703. _box.appendChild(_jie);
  9704. _formdiv = new U.UF.UI.form(
  9705. "项目设计-" + _username,
  9706. _box, {
  9707. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9708. "style": {
  9709. "width": "90%",
  9710. "height": "90%",
  9711. "overflow": 'hidden'
  9712. },
  9713. "onresize": function () { }
  9714. }, {
  9715. closecallback: function () { }
  9716. }, {
  9717. "style": {
  9718. "height": "36px"
  9719. }
  9720. }).form; //创建窗体
  9721. _taskbar = {
  9722. "id": str + _formdiv.id,
  9723. "style": {
  9724. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9725. },
  9726. "name": "项目设计",
  9727. "forms": _formdiv,
  9728. "click": function () {
  9729. U.MD.D.I.openApplication(str, obj, info);
  9730. }
  9731. }
  9732. break;
  9733. }
  9734. const script1 = document.createElement("script");
  9735. script1.type = "text/javascript";
  9736. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9737. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9738. const script2 = document.createElement("script");
  9739. script2.type = "text/javascript";
  9740. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9741. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9742. const script3 = document.createElement("script");
  9743. script3.type = "text/javascript";
  9744. script3.charset = "UTF-8";
  9745. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9746. const script4 = document.createElement("script");
  9747. script4.type = "text/javascript";
  9748. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9749. script4.src = window.origin + "/js/Common/jietu2E.js";
  9750. if (_iframe) {
  9751. if (str == 'doc') {
  9752. _iframe = _formdiv.querySelector('iframe')
  9753. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9754. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9755. _iframe.contentWindow.document.body.appendChild(script1);
  9756. _iframe.contentWindow.document.body.appendChild(script2);
  9757. // _iframe.contentWindow.document.body.appendChild(script3);
  9758. _iframe.contentWindow.document.body.appendChild(script4);
  9759. })
  9760. if (onloadListener) {
  9761. _iframe.contentDocument.location.reload()
  9762. } else {
  9763. _iframe.contentDocument.location.reload()
  9764. }
  9765. } else if (str == 'courseDesign') {
  9766. U.UF.DL.iframeLoad(_iframe, function () {
  9767. // _iframe.contentWindow.U.MD.O.W.load();
  9768. // _iframe.contentWindow.document.body.appendChild(script1);
  9769. _iframe.contentWindow.document.body.appendChild(script2);
  9770. _iframe.contentWindow.document.body.appendChild(script4);
  9771. })
  9772. } else if (str == 'mind') {
  9773. _iframe = _formdiv.querySelector('iframe')
  9774. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9775. //
  9776. _iframe.contentWindow.document.body.appendChild(script1);
  9777. _iframe.contentWindow.document.body.appendChild(script2);
  9778. _iframe.contentWindow.document.body.appendChild(script4);
  9779. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9780. })
  9781. if (onloadListener) {
  9782. _iframe.contentDocument.location.reload()
  9783. } else {
  9784. _iframe.contentDocument.location.reload()
  9785. }
  9786. } else if (str == 'whiteboard') {
  9787. _iframe = _formdiv.querySelector('iframe')
  9788. let onloadListener = _iframe.onload = () => {
  9789. _iframe.contentWindow.document.body.appendChild(script1);
  9790. _iframe.contentWindow.document.body.appendChild(script2);
  9791. _iframe.contentWindow.document.body.appendChild(script4);
  9792. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9793. };
  9794. // if (onloadListener) {
  9795. // try {
  9796. // _iframe.src += "?cocorobo="+new Date().getTime()
  9797. // _iframe.contentWindow.document.location.reload()
  9798. // } catch (error) {
  9799. // }
  9800. // } else {
  9801. // _iframe.contentDocument.location.reload()
  9802. // }
  9803. } else {
  9804. _iframe.onload = () => {
  9805. _iframe.contentWindow.document.body.appendChild(script1);
  9806. _iframe.contentWindow.document.body.appendChild(script2);
  9807. // _iframe.contentWindow.document.body.appendChild(script3);
  9808. _iframe.contentWindow.document.body.appendChild(script4);
  9809. };
  9810. }
  9811. _jie.onclick = async () => {
  9812. let text = ''
  9813. if (aTool == 1) {
  9814. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9815. } else if (aTool == 6) {
  9816. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9817. } else if (aTool == 3) {
  9818. text = await U.MD.D.I.getEditorContent(_iframe);
  9819. }
  9820. _loading.style.display = 'flex'
  9821. console.log(_loading);
  9822. var _ajs = _iframe.contentWindow.document.createElement("script");
  9823. _ajs.type = "text/javascript";
  9824. _ajs.innerHTML =
  9825. // 'console.log(' + _loading + ');\n' +
  9826. 'var _js = document.createElement("script");\n' +
  9827. '_js.type="text/javascript";\n' +
  9828. '_js.charset="UTF-8";\n' +
  9829. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9830. "_js.onload = function(){\n" +
  9831. ' var a = document.getElementsByTagName("img")\n' +
  9832. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9833. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9834. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9835. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9836. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9837. "beforeUpload_shishi(file," +
  9838. "'" +
  9839. _userid +
  9840. "'" +
  9841. ", " +
  9842. "'" +
  9843. _cid +
  9844. "'" +
  9845. ", " +
  9846. "'" +
  9847. _stage +
  9848. "'" +
  9849. ", " +
  9850. "'" +
  9851. _task +
  9852. "'" +
  9853. ", " +
  9854. "'" +
  9855. _tool +
  9856. "'" +
  9857. ", " +
  9858. "'" +
  9859. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9860. "'" +
  9861. ", " +
  9862. "'" +
  9863. aTool +
  9864. "'" +
  9865. ", " +
  9866. "`" +
  9867. text +
  9868. "`" +
  9869. ")\n" +
  9870. " });\n" +
  9871. "}\n" +
  9872. "document.head.appendChild(_js);\n";
  9873. _iframe.contentWindow.document.head.appendChild(_ajs);
  9874. }
  9875. }
  9876. }
  9877. U.MD.D.I.getEditorContent = function (iframe) {
  9878. return new Promise((resolve, reject) => {
  9879. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9880. console.log(content);
  9881. resolve(content)
  9882. });
  9883. });
  9884. }
  9885. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9886. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9887. // if (res.value[0].length > 0) {
  9888. // // resolve(res.value[0][0].text);
  9889. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9890. // $(fileInput).val('');
  9891. // });
  9892. // }
  9893. // }, [], { "type": "GET", "withCredentials": true });
  9894. var xmlhttp;
  9895. var Mac, Sn, DeviceId
  9896. if (window.XMLHttpRequest) {
  9897. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9898. xmlhttp = new XMLHttpRequest();
  9899. } else {
  9900. // IE6, IE5 浏览器执行代码
  9901. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9902. }
  9903. xmlhttp.onreadystatechange = function () {
  9904. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9905. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9906. // resolve(res.value[0][0].text);
  9907. if (type == '2') {
  9908. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9909. } else if (type == '3') {
  9910. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9911. }
  9912. } else {
  9913. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9914. }
  9915. }
  9916. }
  9917. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9918. xmlhttp.send();
  9919. }
  9920. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9921. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9922. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9923. _userinfo = US.userInfo, //登录用户信息
  9924. _userid = US.userInfo.userid //登录用户id
  9925. let _iframe;
  9926. let _cid = cid,
  9927. _stage = stage,
  9928. _task = task,
  9929. _tool = tool;
  9930. var _jie = $$("div", {
  9931. "style": {
  9932. "position": "absolute",
  9933. "bottom": "50px",
  9934. "right": "50px",
  9935. "zIndex": "9999",
  9936. "backgroundColor": "#2268bc",
  9937. "color": "#fff",
  9938. "padding": "12px 20px",
  9939. "cursor": "pointer",
  9940. "borderRadius": "4px",
  9941. },
  9942. "innerHTML": "确认并提交"
  9943. })
  9944. let aTool = ''
  9945. let _loading = document.createElement('div')
  9946. _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;"
  9947. // _loading.id = "";
  9948. let _lchild = document.createElement('div')
  9949. let _limg = document.createElement('img')
  9950. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9951. _limg.style = "width: 26px;margin-right: 10px;"
  9952. _lchild.appendChild(_limg)
  9953. let _lspan = document.createElement('span')
  9954. _lspan.innerHTML = "上传中..."
  9955. _lchild.appendChild(_lspan)
  9956. _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%);"
  9957. _loading.appendChild(_lchild)
  9958. var _box = $$('div', {
  9959. "style": {
  9960. "position": "relative",
  9961. "width": "100%",
  9962. "height": "100%",
  9963. },
  9964. })
  9965. _box.appendChild(_loading)
  9966. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9967. switch (str) {
  9968. case "whiteboard":
  9969. aTool = 1;
  9970. _iframe = $$("iframe", {
  9971. "frameborder": "no",
  9972. "border": "0",
  9973. "scrolling ": "no",
  9974. "style": {
  9975. "cssText": "border:0;width:100%;height:100%"
  9976. },
  9977. "src": "https://beta.iwb.cocorobo.cn/"
  9978. })
  9979. _box.appendChild(_iframe);
  9980. _box.appendChild(_jie);
  9981. _formdiv = new U.UF.UI.form(
  9982. "电子白板",
  9983. _box, {
  9984. "id": "whiteboards" + cid + stage + task + tool,
  9985. "style": {
  9986. "width": "90%",
  9987. "height": "90%",
  9988. "overflow": 'hidden'
  9989. },
  9990. "onresize": function () { }
  9991. }, {
  9992. closecallback: function () { }
  9993. }, {
  9994. "style": {
  9995. "height": "36px"
  9996. }
  9997. }).form; //创建窗体
  9998. _taskbar = {
  9999. "id": str + _formdiv.id,
  10000. "style": {
  10001. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10002. },
  10003. "name": "电子白板",
  10004. "forms": _formdiv,
  10005. "click": function () {
  10006. U.MD.D.I.openApplication(str, obj, info);
  10007. }
  10008. }
  10009. break;
  10010. case "mind":
  10011. aTool = 3;
  10012. _iframe = $$("iframe", {
  10013. "frameborder": "no",
  10014. "border": "0",
  10015. "scrolling ": "no",
  10016. "style": {
  10017. "cssText": "border:0;width:100%;height:100%"
  10018. },
  10019. "src": "/kityminder-editor/dist/index.html"
  10020. });
  10021. _box.appendChild(_iframe);
  10022. _box.appendChild(_jie);
  10023. _formdiv = new U.UF.UI.form(
  10024. "思维导图",
  10025. _box, { //"/jsmind/example/demo.html"
  10026. "id": "minds" + cid + stage + task + tool,
  10027. "style": {
  10028. "width": "90%",
  10029. "height": "90%",
  10030. "overflow": 'hidden'
  10031. },
  10032. "onresize": function () { }
  10033. }, {
  10034. closecallback: function () { }
  10035. }, {
  10036. "style": {
  10037. "height": "36px"
  10038. }
  10039. }).form; //创建窗体
  10040. _taskbar = {
  10041. "id": str + _formdiv.id,
  10042. "style": {
  10043. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10044. },
  10045. "name": "思维导图",
  10046. "forms": _formdiv,
  10047. "click": function () {
  10048. U.MD.D.I.openApplication(str, obj, info);
  10049. }
  10050. }
  10051. break;
  10052. case "doc":
  10053. aTool = 6;
  10054. _iframe = $$("iframe", {
  10055. "frameborder": "no",
  10056. "border": "0",
  10057. "scrolling ": "no",
  10058. "style": {
  10059. "cssText": "border:0;width:100%;height:100%"
  10060. },
  10061. "src": "/Office/Word/WordEditArea.htm"
  10062. })
  10063. _box.appendChild(_iframe);
  10064. _box.appendChild(_jie);
  10065. _formdiv = new U.UF.UI.form(
  10066. "协同文档",
  10067. _box, {
  10068. "id": "docs" + cid + stage + task + tool,
  10069. "style": {
  10070. "width": "90%",
  10071. "height": "90%",
  10072. "overflow": 'hidden'
  10073. },
  10074. "onresize": function () { }
  10075. }, {
  10076. closecallback: function () { }
  10077. }, {
  10078. "style": {
  10079. "height": "36px"
  10080. }
  10081. }).form; //创建窗体
  10082. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10083. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10084. })
  10085. _taskbar = {
  10086. "id": str + _formdiv.id,
  10087. "style": {
  10088. "backgroundImage": "url(/img/icon/doc.png)"
  10089. },
  10090. "name": "协同文档",
  10091. "forms": _formdiv,
  10092. "click": function () {
  10093. U.MD.D.I.openApplication(str, obj, info);
  10094. }
  10095. }
  10096. break;
  10097. }
  10098. const script1 = document.createElement("script");
  10099. script1.type = "text/javascript";
  10100. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10101. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10102. const script2 = document.createElement("script");
  10103. script2.type = "text/javascript";
  10104. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10105. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10106. const script3 = document.createElement("script");
  10107. script3.type = "text/javascript";
  10108. script3.charset = "UTF-8";
  10109. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10110. const script4 = document.createElement("script");
  10111. script4.type = "text/javascript";
  10112. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10113. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10114. if (_iframe) {
  10115. if (str == 'doc') {
  10116. _iframe = _formdiv.querySelector('iframe')
  10117. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10118. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10119. _iframe.contentWindow.document.body.appendChild(script1);
  10120. _iframe.contentWindow.document.body.appendChild(script2);
  10121. // _iframe.contentWindow.document.body.appendChild(script3);
  10122. _iframe.contentWindow.document.body.appendChild(script4);
  10123. })
  10124. if (onloadListener) {
  10125. _iframe.contentDocument.location.reload()
  10126. } else {
  10127. _iframe.contentDocument.location.reload()
  10128. }
  10129. } else if (str == 'mind') {
  10130. _iframe = _formdiv.querySelector('iframe')
  10131. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10132. _iframe.contentWindow.document.body.appendChild(script1);
  10133. _iframe.contentWindow.document.body.appendChild(script2);
  10134. _iframe.contentWindow.document.body.appendChild(script4);
  10135. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10136. })
  10137. if (onloadListener) {
  10138. _iframe.contentDocument.location.reload()
  10139. } else {
  10140. _iframe.contentDocument.location.reload()
  10141. }
  10142. } else {
  10143. _iframe.onload = () => {
  10144. _iframe.contentWindow.document.body.appendChild(script1);
  10145. _iframe.contentWindow.document.body.appendChild(script2);
  10146. // _iframe.contentWindow.document.body.appendChild(script3);
  10147. _iframe.contentWindow.document.body.appendChild(script4);
  10148. };
  10149. }
  10150. _jie.onclick = async () => {
  10151. let text = ''
  10152. if (aTool == 6) {
  10153. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10154. } else if (aTool == 3) {
  10155. text = await U.MD.D.I.getEditorContent(_iframe);
  10156. }
  10157. _loading.style.display = 'flex'
  10158. console.log(_loading);
  10159. var _ajs = _iframe.contentWindow.document.createElement("script");
  10160. _ajs.type = "text/javascript";
  10161. _ajs.innerHTML =
  10162. // 'console.log(' + _loading + ');\n' +
  10163. 'var _js = document.createElement("script");\n' +
  10164. '_js.type="text/javascript";\n' +
  10165. '_js.charset="UTF-8";\n' +
  10166. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10167. "_js.onload = function(){\n" +
  10168. ' var a = document.getElementsByTagName("img")\n' +
  10169. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10170. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10171. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10172. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10173. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10174. "beforeUpload_shishi(file," +
  10175. "'" +
  10176. _userid +
  10177. "'" +
  10178. ", " +
  10179. "'" +
  10180. _cid +
  10181. "'" +
  10182. ", " +
  10183. "'" +
  10184. _stage +
  10185. "'" +
  10186. ", " +
  10187. "'" +
  10188. _task +
  10189. "'" +
  10190. ", " +
  10191. "'" +
  10192. _tool +
  10193. "'" +
  10194. ", " +
  10195. "'" +
  10196. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10197. "'" +
  10198. ", " +
  10199. "'" +
  10200. aTool +
  10201. "'" +
  10202. ", " +
  10203. "`" +
  10204. text +
  10205. "`" +
  10206. ")\n" +
  10207. " });\n" +
  10208. "}\n" +
  10209. "document.head.appendChild(_js);\n";
  10210. _iframe.contentWindow.document.head.appendChild(_ajs);
  10211. }
  10212. }
  10213. //U.MD.D.I.openClick(str);
  10214. //如果有任务栏信息
  10215. // if (_taskbar) {
  10216. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10217. // }
  10218. }
  10219. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10220. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10221. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10222. _userinfo = US.userInfo, //登录用户信息
  10223. _userid = US.userInfo.userid //登录用户id
  10224. let _iframe;
  10225. let _cid = cid,
  10226. _stage = stage,
  10227. _task = task,
  10228. _tool = tool;
  10229. var _jie = $$("div", {
  10230. "style": {
  10231. "position": "absolute",
  10232. "bottom": "50px",
  10233. "right": "50px",
  10234. "zIndex": "9999",
  10235. "backgroundColor": "#2268bc",
  10236. "color": "#fff",
  10237. "padding": "12px 20px",
  10238. "cursor": "pointer",
  10239. "borderRadius": "4px",
  10240. },
  10241. "innerHTML": "确认并提交"
  10242. })
  10243. let aTool = ''
  10244. let _loading = document.createElement('div')
  10245. _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;"
  10246. // _loading.id = "";
  10247. let _lchild = document.createElement('div')
  10248. let _limg = document.createElement('img')
  10249. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10250. _limg.style = "width: 26px;margin-right: 10px;"
  10251. _lchild.appendChild(_limg)
  10252. let _lspan = document.createElement('span')
  10253. _lspan.innerHTML = "上传中..."
  10254. _lchild.appendChild(_lspan)
  10255. _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%);"
  10256. _loading.appendChild(_lchild)
  10257. var _box = $$('div', {
  10258. "style": {
  10259. "position": "relative",
  10260. "width": "100%",
  10261. "height": "100%",
  10262. },
  10263. })
  10264. _box.appendChild(_loading)
  10265. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10266. switch (str) {
  10267. case "whiteboard":
  10268. aTool = 1;
  10269. _iframe = $$("iframe", {
  10270. "frameborder": "no",
  10271. "border": "0",
  10272. "scrolling ": "no",
  10273. "style": {
  10274. "cssText": "border:0;width:100%;height:100%"
  10275. },
  10276. "src": "https://beta.iwb.cocorobo.cn/"
  10277. })
  10278. _box.appendChild(_iframe);
  10279. _box.appendChild(_jie);
  10280. _formdiv = new U.UF.UI.form(
  10281. "电子白板",
  10282. _box, {
  10283. "id": "whiteboards" + cid + stage + task + tool,
  10284. "style": {
  10285. "width": "90%",
  10286. "height": "90%",
  10287. "overflow": 'hidden'
  10288. },
  10289. "onresize": function () { }
  10290. }, {
  10291. closecallback: function () { }
  10292. }, {
  10293. "style": {
  10294. "height": "36px"
  10295. }
  10296. }).form; //创建窗体
  10297. _taskbar = {
  10298. "id": str + _formdiv.id,
  10299. "style": {
  10300. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10301. },
  10302. "name": "电子白板",
  10303. "forms": _formdiv,
  10304. "click": function () {
  10305. U.MD.D.I.openApplication(str, obj, info);
  10306. }
  10307. }
  10308. break;
  10309. case "mind":
  10310. aTool = 3;
  10311. _iframe = $$("iframe", {
  10312. "frameborder": "no",
  10313. "border": "0",
  10314. "scrolling ": "no",
  10315. "style": {
  10316. "cssText": "border:0;width:100%;height:100%"
  10317. },
  10318. "src": "/kityminder-editor/dist/index.html"
  10319. });
  10320. _box.appendChild(_iframe);
  10321. _box.appendChild(_jie);
  10322. _formdiv = new U.UF.UI.form(
  10323. "思维导图",
  10324. _box, { //"/jsmind/example/demo.html"
  10325. "id": "minds" + cid + stage + task + tool,
  10326. "style": {
  10327. "width": "90%",
  10328. "height": "90%",
  10329. "overflow": 'hidden'
  10330. },
  10331. "onresize": function () { }
  10332. }, {
  10333. closecallback: function () { }
  10334. }, {
  10335. "style": {
  10336. "height": "36px"
  10337. }
  10338. }).form; //创建窗体
  10339. _taskbar = {
  10340. "id": str + _formdiv.id,
  10341. "style": {
  10342. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10343. },
  10344. "name": "思维导图",
  10345. "forms": _formdiv,
  10346. "click": function () {
  10347. U.MD.D.I.openApplication(str, obj, info);
  10348. }
  10349. }
  10350. break;
  10351. case "doc":
  10352. aTool = 6;
  10353. _iframe = $$("iframe", {
  10354. "frameborder": "no",
  10355. "border": "0",
  10356. "scrolling ": "no",
  10357. "style": {
  10358. "cssText": "border:0;width:100%;height:100%"
  10359. },
  10360. "src": "/Office/Word/WordEditArea.htm"
  10361. })
  10362. _box.appendChild(_iframe);
  10363. _box.appendChild(_jie);
  10364. _formdiv = new U.UF.UI.form(
  10365. "协同文档",
  10366. _box, {
  10367. "id": "docs" + cid + stage + task + tool,
  10368. "style": {
  10369. "width": "90%",
  10370. "height": "90%",
  10371. "overflow": 'hidden'
  10372. },
  10373. "onresize": function () { }
  10374. }, {
  10375. closecallback: function () { }
  10376. }, {
  10377. "style": {
  10378. "height": "36px"
  10379. }
  10380. }).form; //创建窗体
  10381. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10382. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10383. })
  10384. _taskbar = {
  10385. "id": str + _formdiv.id,
  10386. "style": {
  10387. "backgroundImage": "url(/img/icon/doc.png)"
  10388. },
  10389. "name": "协同文档",
  10390. "forms": _formdiv,
  10391. "click": function () {
  10392. U.MD.D.I.openApplication(str, obj, info);
  10393. }
  10394. }
  10395. break;
  10396. }
  10397. const script1 = document.createElement("script");
  10398. script1.type = "text/javascript";
  10399. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10400. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10401. const script2 = document.createElement("script");
  10402. script2.type = "text/javascript";
  10403. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10404. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10405. const script3 = document.createElement("script");
  10406. script3.type = "text/javascript";
  10407. script3.charset = "UTF-8";
  10408. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10409. const script4 = document.createElement("script");
  10410. script4.type = "text/javascript";
  10411. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10412. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10413. if (_iframe) {
  10414. if (str == 'doc') {
  10415. _iframe = _formdiv.querySelector('iframe')
  10416. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10417. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10418. _iframe.contentWindow.document.body.appendChild(script1);
  10419. _iframe.contentWindow.document.body.appendChild(script2);
  10420. // _iframe.contentWindow.document.body.appendChild(script3);
  10421. _iframe.contentWindow.document.body.appendChild(script4);
  10422. })
  10423. if (onloadListener) {
  10424. _iframe.contentDocument.location.reload()
  10425. } else {
  10426. _iframe.contentDocument.location.reload()
  10427. }
  10428. } else if (str == 'mind') {
  10429. _iframe = _formdiv.querySelector('iframe')
  10430. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10431. _iframe.contentWindow.document.body.appendChild(script1);
  10432. _iframe.contentWindow.document.body.appendChild(script2);
  10433. _iframe.contentWindow.document.body.appendChild(script4);
  10434. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10435. })
  10436. if (onloadListener) {
  10437. _iframe.contentDocument.location.reload()
  10438. } else {
  10439. _iframe.contentDocument.location.reload()
  10440. }
  10441. } else {
  10442. _iframe.onload = () => {
  10443. _iframe.contentWindow.document.body.appendChild(script1);
  10444. _iframe.contentWindow.document.body.appendChild(script2);
  10445. // _iframe.contentWindow.document.body.appendChild(script3);
  10446. _iframe.contentWindow.document.body.appendChild(script4);
  10447. };
  10448. }
  10449. _jie.onclick = async () => {
  10450. let text = ''
  10451. if (aTool == 6) {
  10452. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10453. } else if (aTool == 3) {
  10454. text = await U.MD.D.I.getEditorContent(_iframe);
  10455. }
  10456. _loading.style.display = 'flex'
  10457. console.log(_loading);
  10458. var _ajs = _iframe.contentWindow.document.createElement("script");
  10459. _ajs.type = "text/javascript";
  10460. _ajs.innerHTML =
  10461. // 'console.log(' + _loading + ');\n' +
  10462. 'var _js = document.createElement("script");\n' +
  10463. '_js.type="text/javascript";\n' +
  10464. '_js.charset="UTF-8";\n' +
  10465. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10466. "_js.onload = function(){\n" +
  10467. ' var a = document.getElementsByTagName("img")\n' +
  10468. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10469. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10470. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10471. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10472. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10473. "beforeUpload_shishi(file," +
  10474. "'" +
  10475. _userid +
  10476. "'" +
  10477. ", " +
  10478. "'" +
  10479. _cid +
  10480. "'" +
  10481. ", " +
  10482. "'" +
  10483. _stage +
  10484. "'" +
  10485. ", " +
  10486. "'" +
  10487. _task +
  10488. "'" +
  10489. ", " +
  10490. "'" +
  10491. _tool +
  10492. "'" +
  10493. ", " +
  10494. "'" +
  10495. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10496. "'" +
  10497. ", " +
  10498. "'" +
  10499. aTool +
  10500. "'" +
  10501. ", " +
  10502. "`" +
  10503. text +
  10504. "`" +
  10505. ")\n" +
  10506. " });\n" +
  10507. "}\n" +
  10508. "document.head.appendChild(_js);\n";
  10509. _iframe.contentWindow.document.head.appendChild(_ajs);
  10510. }
  10511. }
  10512. //U.MD.D.I.openClick(str);
  10513. //如果有任务栏信息
  10514. // if (_taskbar) {
  10515. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10516. // }
  10517. }
  10518. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10519. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10520. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10521. _userinfo = US.userInfo, //登录用户信息
  10522. _userid = US.userInfo.userid //登录用户id
  10523. let _iframe;
  10524. let _cid = cid,
  10525. _stage = stage,
  10526. _task = task,
  10527. _tool = tool;
  10528. var _jie = $$("div", {
  10529. "style": {
  10530. "position": "absolute",
  10531. "bottom": "50px",
  10532. "right": "50px",
  10533. "zIndex": "9999",
  10534. "backgroundColor": "#2268bc",
  10535. "color": "#fff",
  10536. "padding": "12px 20px",
  10537. "cursor": "pointer",
  10538. "borderRadius": "4px",
  10539. },
  10540. "innerHTML": "上传模板"
  10541. })
  10542. let aTool = ''
  10543. let _loading = document.createElement('div')
  10544. _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;"
  10545. // _loading.id = "";
  10546. let _lchild = document.createElement('div')
  10547. let _limg = document.createElement('img')
  10548. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10549. _limg.style = "width: 26px;margin-right: 10px;"
  10550. _lchild.appendChild(_limg)
  10551. let _lspan = document.createElement('span')
  10552. _lspan.innerHTML = "上传中..."
  10553. _lchild.appendChild(_lspan)
  10554. _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%);"
  10555. _loading.appendChild(_lchild)
  10556. var _box = $$('div', {
  10557. "style": {
  10558. "position": "relative",
  10559. "width": "100%",
  10560. "height": "100%",
  10561. },
  10562. })
  10563. _box.appendChild(_loading)
  10564. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10565. switch (str) {
  10566. case "whiteboard":
  10567. aTool = 1;
  10568. _iframe = $$("iframe", {
  10569. "frameborder": "no",
  10570. "border": "0",
  10571. "scrolling ": "no",
  10572. "style": {
  10573. "cssText": "border:0;width:100%;height:100%"
  10574. },
  10575. "src": "https://beta.iwb.cocorobo.cn/"
  10576. })
  10577. _box.appendChild(_iframe);
  10578. _box.appendChild(_jie);
  10579. _formdiv = new U.UF.UI.form(
  10580. "电子白板",
  10581. _box, {
  10582. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10583. "style": {
  10584. "width": "90%",
  10585. "height": "90%",
  10586. "overflow": 'hidden'
  10587. },
  10588. "onresize": function () { }
  10589. }, {
  10590. closecallback: function () { }
  10591. }, {
  10592. "style": {
  10593. "height": "36px"
  10594. }
  10595. }).form; //创建窗体
  10596. _taskbar = {
  10597. "id": str + _formdiv.id,
  10598. "style": {
  10599. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10600. },
  10601. "name": "电子白板",
  10602. "forms": _formdiv,
  10603. "click": function () {
  10604. U.MD.D.I.openApplication(str, obj, info);
  10605. }
  10606. }
  10607. break;
  10608. case "mind":
  10609. aTool = 3;
  10610. _iframe = $$("iframe", {
  10611. "frameborder": "no",
  10612. "border": "0",
  10613. "scrolling ": "no",
  10614. "style": {
  10615. "cssText": "border:0;width:100%;height:100%"
  10616. },
  10617. "src": "/kityminder-editor/dist/index.html"
  10618. });
  10619. _box.appendChild(_iframe);
  10620. _box.appendChild(_jie);
  10621. _formdiv = new U.UF.UI.form(
  10622. "思维导图",
  10623. _box, { //"/jsmind/example/demo.html"
  10624. "id": "minds_Yu" + cid + stage + task + tool,
  10625. "style": {
  10626. "width": "90%",
  10627. "height": "90%",
  10628. "overflow": 'hidden'
  10629. },
  10630. "onresize": function () { }
  10631. }, {
  10632. closecallback: function () { }
  10633. }, {
  10634. "style": {
  10635. "height": "36px"
  10636. }
  10637. }).form; //创建窗体
  10638. _taskbar = {
  10639. "id": str + _formdiv.id,
  10640. "style": {
  10641. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10642. },
  10643. "name": "思维导图",
  10644. "forms": _formdiv,
  10645. "click": function () {
  10646. U.MD.D.I.openApplication(str, obj, info);
  10647. }
  10648. }
  10649. break;
  10650. case "doc":
  10651. aTool = 6;
  10652. _iframe = $$("iframe", {
  10653. "frameborder": "no",
  10654. "border": "0",
  10655. "scrolling ": "no",
  10656. "style": {
  10657. "cssText": "border:0;width:100%;height:100%"
  10658. },
  10659. "src": "/Office/Word/WordEditArea.htm"
  10660. })
  10661. _box.appendChild(_iframe);
  10662. _box.appendChild(_jie);
  10663. _formdiv = new U.UF.UI.form(
  10664. "协同文档",
  10665. _box, {
  10666. "id": "docs_Yu" + cid + stage + task + tool,
  10667. "style": {
  10668. "width": "90%",
  10669. "height": "90%",
  10670. "overflow": 'hidden'
  10671. },
  10672. "onresize": function () { }
  10673. }, {
  10674. closecallback: function () { }
  10675. }, {
  10676. "style": {
  10677. "height": "36px"
  10678. }
  10679. }).form; //创建窗体
  10680. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10681. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10682. })
  10683. _taskbar = {
  10684. "id": str + _formdiv.id,
  10685. "style": {
  10686. "backgroundImage": "url(/img/icon/doc.png)"
  10687. },
  10688. "name": "协同文档",
  10689. "forms": _formdiv,
  10690. "click": function () {
  10691. U.MD.D.I.openApplication(str, obj, info);
  10692. }
  10693. }
  10694. break;
  10695. case "CocoPi":
  10696. aTool = 57;
  10697. _iframe = $$("iframe", {
  10698. "allowpaymentrequest": "allowpaymentrequest",
  10699. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10700. "webkitallowfullscreen": "",
  10701. "mozallowfullscreen": "",
  10702. "frameborder": "no",
  10703. "border": "0",
  10704. "scrolling ": "no",
  10705. "style": {
  10706. "cssText": "border:0;width:100%;height:100%"
  10707. },
  10708. "src": "https://pi.cocorobo.cn/"
  10709. })
  10710. _box.appendChild(_iframe);
  10711. _box.appendChild(_jie);
  10712. _formdiv = new U.UF.UI.form(
  10713. "CocoPi",
  10714. _box, {
  10715. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10716. "style": {
  10717. "width": "90%",
  10718. "height": "90%",
  10719. "overflow": 'hidden'
  10720. },
  10721. "onresize": function () { }
  10722. }, {
  10723. closecallback: function () { }
  10724. }, {
  10725. "style": {
  10726. "height": "36px"
  10727. }
  10728. }).form; //创建窗体
  10729. _taskbar = {
  10730. "id": str + _formdiv.id,
  10731. "style": {
  10732. "backgroundImage": "url(/img/icon/cocopi.png)"
  10733. },
  10734. "name": "CocoPi",
  10735. "forms": _formdiv,
  10736. "click": function () {
  10737. U.MD.D.I.openApplication(str, obj, info);
  10738. }
  10739. }
  10740. break;
  10741. }
  10742. if (_iframe) {
  10743. if (str == 'doc') {
  10744. _iframe = _formdiv.querySelector('iframe')
  10745. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10746. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10747. })
  10748. if (onloadListener) {
  10749. _iframe.contentDocument.location.reload()
  10750. } else {
  10751. _iframe.contentDocument.location.reload()
  10752. }
  10753. } else if (str == 'mind') {
  10754. _iframe = _formdiv.querySelector('iframe')
  10755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10756. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10757. })
  10758. if (onloadListener) {
  10759. _iframe.contentDocument.location.reload()
  10760. } else {
  10761. _iframe.contentDocument.location.reload()
  10762. }
  10763. } else if (str == 'whiteboard') {
  10764. _iframe = _formdiv.querySelector('iframe')
  10765. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10766. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10767. })
  10768. // if (onloadListener) {
  10769. // try {
  10770. // _iframe.src += "?cocorobo="+new Date().getTime()
  10771. // _iframe.contentWindow.document.location.reload()
  10772. // } catch (error) {
  10773. // }
  10774. // } else {
  10775. // _iframe.contentDocument.location.reload()
  10776. // }
  10777. } else if (str == 'CocoPi') {
  10778. _iframe = _formdiv.querySelector('iframe')
  10779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10780. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10781. })
  10782. if (onloadListener) {
  10783. _iframe.contentDocument.location.reload()
  10784. } else {
  10785. _iframe.contentDocument.location.reload()
  10786. }
  10787. } else {
  10788. _iframe.onload = () => { };
  10789. }
  10790. _jie.onclick = async () => {
  10791. let text = ''
  10792. let type = '2'
  10793. if (aTool == 1) {
  10794. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10795. type = '3'
  10796. } else if (aTool == 6) {
  10797. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10798. type = '1'
  10799. } else if (aTool == 3) {
  10800. text = await U.MD.D.I.getEditorContent(_iframe);
  10801. type = '2'
  10802. } else if (aTool == 57) {
  10803. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10804. type = '4'
  10805. }
  10806. _loading.style.display = 'flex'
  10807. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10808. }
  10809. }
  10810. //U.MD.D.I.openClick(str);
  10811. //如果有任务栏信息
  10812. // if (_taskbar) {
  10813. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10814. // }
  10815. }
  10816. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10817. var xmlhttp;
  10818. var Mac, Sn, DeviceId
  10819. if (window.XMLHttpRequest) {
  10820. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10821. xmlhttp = new XMLHttpRequest();
  10822. } else {
  10823. // IE6, IE5 浏览器执行代码
  10824. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10825. }
  10826. xmlhttp.onreadystatechange = function () {
  10827. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10828. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10829. // resolve(res.value[0][0].text);
  10830. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10831. }
  10832. }
  10833. }
  10834. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10835. xmlhttp.send();
  10836. }
  10837. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10838. var xmlhttp;
  10839. var Mac, Sn, DeviceId
  10840. if (window.XMLHttpRequest) {
  10841. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10842. xmlhttp = new XMLHttpRequest();
  10843. } else {
  10844. // IE6, IE5 浏览器执行代码
  10845. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10846. }
  10847. xmlhttp.onreadystatechange = function () {
  10848. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10849. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10850. // resolve(res.value[0][0].text);
  10851. if (type == '2') {
  10852. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10853. } else if (type == '3') {
  10854. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10855. } else if (type == '4') {
  10856. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10857. }
  10858. } else {
  10859. if (type == '2') {
  10860. iframe.contentWindow.editor.minder.importData('json', '')
  10861. } else if (type == '3') {
  10862. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10863. } else if (type == '4') {
  10864. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10865. }
  10866. }
  10867. }
  10868. }
  10869. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10870. xmlhttp.send();
  10871. }
  10872. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10873. var xmlhttp;
  10874. var Mac, Sn, DeviceId
  10875. if (window.XMLHttpRequest) {
  10876. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10877. xmlhttp = new XMLHttpRequest();
  10878. } else {
  10879. // IE6, IE5 浏览器执行代码
  10880. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10881. }
  10882. xmlhttp.onreadystatechange = function () {
  10883. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10884. if (xmlhttp.response) {
  10885. // resolve(res.value[0][0].text);
  10886. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10887. // $(fileInput).val('');
  10888. // });
  10889. span.innerHTML = '上传成功'
  10890. setTimeout(() => {
  10891. loading.style.display = 'none'
  10892. }, 1000);
  10893. }
  10894. }
  10895. }
  10896. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10897. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10898. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10899. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10900. // 设置请求头,表示请求体的编码格式
  10901. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10902. // 设置请求体,使用url-encoded格式的数据
  10903. }
  10904. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10905. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10906. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10907. _userinfo = US.userInfo, //登录用户信息
  10908. _userid = US.userInfo.userid //登录用户id
  10909. let _iframe;
  10910. let _cid = cid,
  10911. _stage = stage,
  10912. _task = task,
  10913. _tool = tool;
  10914. var _jie = $$("div", {
  10915. "style": {
  10916. "position": "absolute",
  10917. "bottom": "50px",
  10918. "right": "50px",
  10919. "zIndex": "9999",
  10920. "backgroundColor": "#2268bc",
  10921. "color": "#fff",
  10922. "padding": "12px 20px",
  10923. "cursor": "pointer",
  10924. "borderRadius": "4px",
  10925. },
  10926. "innerHTML": "提交作业"
  10927. })
  10928. let aTool = ''
  10929. let _loading = document.createElement('div')
  10930. _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;"
  10931. // _loading.id = "";
  10932. let _lchild = document.createElement('div')
  10933. let _limg = document.createElement('img')
  10934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10935. _limg.style = "width: 26px;margin-right: 10px;"
  10936. _lchild.appendChild(_limg)
  10937. let _lspan = document.createElement('span')
  10938. _lspan.innerHTML = "上传中..."
  10939. _lchild.appendChild(_lspan)
  10940. _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%);"
  10941. _loading.appendChild(_lchild)
  10942. var _box = $$('div', {
  10943. "style": {
  10944. "position": "relative",
  10945. "width": "100%",
  10946. "height": "100%",
  10947. },
  10948. })
  10949. _box.appendChild(_loading)
  10950. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10951. switch (str) {
  10952. case "CocoPi":
  10953. aTool = 57;
  10954. _iframe = $$("iframe", {
  10955. "allowpaymentrequest": "allowpaymentrequest",
  10956. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10957. "webkitallowfullscreen": "",
  10958. "mozallowfullscreen": "",
  10959. "frameborder": "no",
  10960. "border": "0",
  10961. "scrolling ": "no",
  10962. "style": {
  10963. "cssText": "border:0;width:100%;height:100%"
  10964. },
  10965. "src": "https://pi.cocorobo.cn/"
  10966. })
  10967. _box.appendChild(_iframe);
  10968. _box.appendChild(_jie);
  10969. _formdiv = new U.UF.UI.form(
  10970. "CocoPi",
  10971. _box, {
  10972. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10973. "style": {
  10974. "width": "90%",
  10975. "height": "90%",
  10976. "overflow": 'hidden'
  10977. },
  10978. "onresize": function () { }
  10979. }, {
  10980. closecallback: function () { }
  10981. }, {
  10982. "style": {
  10983. "height": "36px"
  10984. }
  10985. }).form; //创建窗体
  10986. _taskbar = {
  10987. "id": str + _formdiv.id,
  10988. "style": {
  10989. "backgroundImage": "url(/img/icon/cocopi.png)"
  10990. },
  10991. "name": "CocoPi",
  10992. "forms": _formdiv,
  10993. "click": function () {
  10994. U.MD.D.I.openApplication(str, obj, info);
  10995. }
  10996. }
  10997. break;
  10998. }
  10999. if (_iframe) {
  11000. if (str == 'CocoPi') {
  11001. _iframe = _formdiv.querySelector('iframe')
  11002. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11003. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11004. })
  11005. if (onloadListener) {
  11006. _iframe.contentDocument.location.reload()
  11007. } else {
  11008. _iframe.contentDocument.location.reload()
  11009. }
  11010. }
  11011. _jie.onclick = async () => {
  11012. let text = ''
  11013. if (aTool == 57) {
  11014. text = _iframe.contentWindow.getLoadXmlStr()
  11015. }
  11016. _loading.style.display = 'flex'
  11017. console.log(_loading);
  11018. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11019. _loading.style.display = 'none'
  11020. let _div = document.createElement('div')
  11021. _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;"
  11022. let _inner = document.createElement('div')
  11023. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11024. _inner.innerHTML = "上传成功"
  11025. _div.appendChild(_inner)
  11026. _iframe.contentWindow.window.document.body.appendChild(_div)
  11027. _div.onclick = () => {
  11028. _iframe.contentWindow.window.document.body.removeChild(_div)
  11029. }
  11030. setTimeout(() => {
  11031. _iframe.contentWindow.window.document.body.removeChild(_div)
  11032. }, 1000);
  11033. }, [], { "type": "POST", "withCredentials": true });
  11034. }
  11035. }
  11036. }
  11037. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11038. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11039. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11040. _userid = student.userid, //登录用户id
  11041. _username = student.student //用户名字
  11042. let _iframe;
  11043. let _cid = cid,
  11044. _stage = stage,
  11045. _task = task,
  11046. _tool = tool;
  11047. var _jie = $$("div", {
  11048. "style": {
  11049. "position": "absolute",
  11050. "bottom": "50px",
  11051. "right": "50px",
  11052. "zIndex": "9999",
  11053. "backgroundColor": "#2268bc",
  11054. "color": "#fff",
  11055. "padding": "12px 20px",
  11056. "cursor": "pointer",
  11057. "borderRadius": "4px",
  11058. },
  11059. "innerHTML": "提交作业"
  11060. })
  11061. let aTool = ''
  11062. let _loading = document.createElement('div')
  11063. _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;"
  11064. // _loading.id = "";
  11065. let _lchild = document.createElement('div')
  11066. let _limg = document.createElement('img')
  11067. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11068. _limg.style = "width: 26px;margin-right: 10px;"
  11069. _lchild.appendChild(_limg)
  11070. let _lspan = document.createElement('span')
  11071. _lspan.innerHTML = "上传中..."
  11072. _lchild.appendChild(_lspan)
  11073. _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%);"
  11074. _loading.appendChild(_lchild)
  11075. var _box = $$('div', {
  11076. "style": {
  11077. "position": "relative",
  11078. "width": "100%",
  11079. "height": "100%",
  11080. },
  11081. })
  11082. _box.appendChild(_loading)
  11083. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11084. switch (str) {
  11085. case "CocoPi":
  11086. aTool = 57;
  11087. _iframe = $$("iframe", {
  11088. "allowpaymentrequest": "allowpaymentrequest",
  11089. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11090. "webkitallowfullscreen": "",
  11091. "mozallowfullscreen": "",
  11092. "frameborder": "no",
  11093. "border": "0",
  11094. "scrolling ": "no",
  11095. "style": {
  11096. "cssText": "border:0;width:100%;height:100%"
  11097. },
  11098. "src": "https://pi.cocorobo.cn/"
  11099. })
  11100. _box.appendChild(_iframe);
  11101. _box.appendChild(_jie);
  11102. _formdiv = new U.UF.UI.form(
  11103. "CocoPi-" + _username,
  11104. _box, {
  11105. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11106. "style": {
  11107. "width": "90%",
  11108. "height": "90%",
  11109. "overflow": 'hidden'
  11110. },
  11111. "onresize": function () { }
  11112. }, {
  11113. closecallback: function () { }
  11114. }, {
  11115. "style": {
  11116. "height": "36px"
  11117. }
  11118. }).form; //创建窗体
  11119. _taskbar = {
  11120. "id": str + _formdiv.id,
  11121. "style": {
  11122. "backgroundImage": "url(/img/icon/cocopi.png)"
  11123. },
  11124. "name": "CocoPi",
  11125. "forms": _formdiv,
  11126. "click": function () {
  11127. U.MD.D.I.openApplication(str, obj, info);
  11128. }
  11129. }
  11130. break;
  11131. }
  11132. if (_iframe) {
  11133. if (str == 'CocoPi') {
  11134. _iframe = _formdiv.querySelector('iframe')
  11135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11136. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11137. })
  11138. if (onloadListener) {
  11139. _iframe.contentDocument.location.reload()
  11140. } else {
  11141. _iframe.contentDocument.location.reload()
  11142. }
  11143. }
  11144. _jie.onclick = async () => {
  11145. let text = ''
  11146. if (aTool == 57) {
  11147. text = _iframe.contentWindow.getLoadXmlStr()
  11148. }
  11149. _loading.style.display = 'flex'
  11150. console.log(_loading);
  11151. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11152. _loading.style.display = 'none'
  11153. let _div = document.createElement('div')
  11154. _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;"
  11155. let _inner = document.createElement('div')
  11156. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11157. _inner.innerHTML = "上传成功"
  11158. _div.appendChild(_inner)
  11159. _iframe.contentWindow.window.document.body.appendChild(_div)
  11160. _div.onclick = () => {
  11161. _iframe.contentWindow.window.document.body.removeChild(_div)
  11162. }
  11163. setTimeout(() => {
  11164. _iframe.contentWindow.window.document.body.removeChild(_div)
  11165. }, 1000);
  11166. }, [], { "type": "POST", "withCredentials": true });
  11167. }
  11168. }
  11169. }
  11170. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11171. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11172. if (res.value[0].length > 0) {
  11173. if (atool == 57) {
  11174. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11175. }
  11176. } else {
  11177. if (atool == 57) {
  11178. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11179. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11180. }
  11181. }
  11182. }, [], { "type": "POST", "withCredentials": true });
  11183. }
  11184. U.MD.D.addOp = function(text,type,time){
  11185. var userInfo = US.userInfo;
  11186. if(Object.keys(userInfo).length !== 0){
  11187. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11188. }, [], { "type": "POST", "withCredentials": true });
  11189. }
  11190. }