DeskTop.js 712 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303
  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. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceteacherDeskIcon = [
  744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  750. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  751. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  752. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  753. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  754. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  755. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  756. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  757. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  758. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  761. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  762. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  763. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  764. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  773. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. ];
  776. //香海正覺蓮社佛教正覺中學
  777. U.MD.D.I.hkZJLSteacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  781. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  782. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  783. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  784. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  785. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  786. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  787. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  788. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  789. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  790. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //香海正覺蓮社佛教正覺中學
  796. U.MD.D.I.hkZJLSStudentDeskIcon = [
  797. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  801. ];
  802. //云海
  803. U.MD.D.I.yunhaiTeacherDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  807. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  808. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  809. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  811. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  812. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  813. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  814. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  815. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  816. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  817. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //福田
  824. U.MD.D.I.heyuanTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  828. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  829. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  830. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  831. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  832. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  833. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //福田
  839. U.MD.D.I.heyuanAdminDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  844. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  845. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  846. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  847. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  848. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  849. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  850. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  851. ];
  852. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  853. U.MD.D.I.szherTeacherDeskIcon = [
  854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  856. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  857. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  858. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  859. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  865. ];
  866. //dsei
  867. U.MD.D.I.dseiTeacherDeskIcon = [
  868. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  869. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  870. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  871. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  877. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  878. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  879. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  880. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  881. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  882. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  883. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  884. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  885. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  886. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  887. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  888. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  889. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  890. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  891. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  892. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  893. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  894. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  895. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  896. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  897. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  898. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  899. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  900. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  901. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  902. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  903. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  904. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  905. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  908. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  909. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  910. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  911. ];
  912. //dsei
  913. U.MD.D.I.dseiAdminDeskIcon = [
  914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  916. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  917. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  921. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  922. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  923. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  925. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  926. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  927. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  928. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  929. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  930. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  931. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  932. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  933. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  934. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  935. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  936. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  937. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  938. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  939. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  940. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  941. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  942. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  943. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  944. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  945. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  946. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  947. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  948. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  949. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  950. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  951. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  953. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  954. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  957. ];
  958. //dsei
  959. U.MD.D.I.dseiStudentDeskIcon = [
  960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. ];
  967. //未来教育基地
  968. U.MD.D.I.szjkyTeacherDeskIcon = [
  969. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  970. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  971. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  972. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  973. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  974. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  975. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  978. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  979. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  980. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  981. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  982. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  983. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  985. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  986. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  987. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  988. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  989. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  990. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  991. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  992. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  993. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  994. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  995. ];
  996. //未来教育基地
  997. U.MD.D.I.szjkyAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1005. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1017. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1018. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1019. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1020. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1021. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1022. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1023. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1024. ];
  1025. //未来教育基地
  1026. U.MD.D.I.szjkyStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1032. ];
  1033. //成华教育局
  1034. U.MD.D.I.chjyjTeacherDeskIcon = [
  1035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1040. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1041. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1042. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1043. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1044. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1045. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //成华教育局chjyj
  1051. U.MD.D.I.chjyjAdminDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1057. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1058. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1059. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1062. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1063. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1064. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1065. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1066. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1067. ];
  1068. //成华教育局chjyj
  1069. U.MD.D.I.chjyjStudentDeskIcon = [
  1070. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. ];
  1075. //tpc
  1076. U.MD.D.I.tpcStudentDeskIcon = [
  1077. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1079. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1080. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1081. ];
  1082. //tpc
  1083. U.MD.D.I.tpcTeacherDeskIcon = [
  1084. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1085. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1086. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1087. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //tpc
  1093. U.MD.D.I.tpcAdminDeskIcon = [
  1094. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1095. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "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. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1100. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1101. ];
  1102. //THU-IOE
  1103. U.MD.D.I.thuioeTeacherDeskIcon = [
  1104. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1105. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1107. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1108. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1114. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1115. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1116. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1117. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1118. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1119. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1120. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1121. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1122. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1123. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1124. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1125. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1126. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1127. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1128. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1129. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1130. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1131. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1132. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1133. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1134. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1135. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1136. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1137. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. ];
  1144. //THU-IOE
  1145. U.MD.D.I.thuioeStudentDeskIcon = [
  1146. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. ];
  1151. //jccssyl
  1152. U.MD.D.I.jccssylTeacherDeskIcon = [
  1153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1160. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1161. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1162. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1163. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1164. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1165. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1166. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1167. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1169. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1170. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1171. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1172. ];
  1173. //jccssyl
  1174. U.MD.D.I.jccssylStudentDeskIcon = [
  1175. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1176. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1177. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1178. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1179. ];
  1180. //cale
  1181. U.MD.D.I.caleTeacherDeskIcon = [
  1182. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1183. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1184. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1185. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1186. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1187. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1188. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1189. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1195. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1196. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1197. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1198. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1199. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1201. ];
  1202. //cale
  1203. U.MD.D.I.caleStudentDeskIcon = [
  1204. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1205. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1206. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1207. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1208. ];
  1209. //lqwmsgzs
  1210. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1211. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1212. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1214. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1215. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1216. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1217. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1218. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1219. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1221. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1224. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1225. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1226. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1227. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1228. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1229. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1230. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1231. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1232. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1233. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1234. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1235. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1236. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1237. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1238. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1239. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1240. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1241. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1242. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1243. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1246. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1248. ];
  1249. //lqwmsgzs
  1250. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1251. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1252. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1253. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. ];
  1256. //盐田区幼儿园
  1257. U.MD.D.I.ytyTeacherDeskIcon = [
  1258. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1259. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1262. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1263. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1264. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1271. ];
  1272. //盐田区幼儿园
  1273. U.MD.D.I.ytyStudentDeskIcon = [
  1274. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1275. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1276. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1280. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1281. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1282. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1283. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1284. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1285. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1286. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1287. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1288. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1289. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1290. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1291. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1292. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1296. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1297. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1298. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1299. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1301. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1302. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1303. ];
  1304. //scnuai
  1305. U.MD.D.I.scnuaiAdminDeskIcon = [
  1306. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1307. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1311. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1312. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1316. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1317. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1318. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1322. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1323. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1324. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1325. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1326. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1327. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1328. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1329. ];
  1330. //scnuai
  1331. U.MD.D.I.scnuaiStudentDeskIcon = [
  1332. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. ];
  1337. //cocobiz
  1338. U.MD.D.I.cocobizteacherDeskIcon = [
  1339. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1340. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1341. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1342. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1343. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1345. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1346. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1347. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1348. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1349. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1350. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1351. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1352. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1355. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1356. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1358. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1359. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizStudentDeskIcon = [
  1363. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1364. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1366. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1368. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1369. ];
  1370. //xxzjky
  1371. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1372. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1373. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1374. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1375. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1376. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1377. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1378. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1379. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1380. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1381. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1382. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1383. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1384. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1385. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1392. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1396. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1397. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1398. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1399. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1400. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //nsfx
  1404. U.MD.D.I.nsfxTeacherDeskIcon = [
  1405. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1413. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1414. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1415. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1416. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1417. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1418. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1419. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1420. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1421. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1422. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1423. ];
  1424. //nsfx
  1425. U.MD.D.I.nsfxStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //stia
  1432. U.MD.D.I.stiaTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1437. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1438. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1439. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1442. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1443. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1444. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1445. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1448. ];
  1449. //stia
  1450. U.MD.D.I.stiaStudentDeskIcon = [
  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. ];
  1456. //szdjg
  1457. U.MD.D.I.szdjgTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. ];
  1461. //szdjg
  1462. U.MD.D.I.szdjgStudentDeskIcon = [
  1463. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010607
  1469. U.MD.D.I.x010607TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1478. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1481. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1482. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1483. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1484. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1485. ];
  1486. //010607
  1487. U.MD.D.I.x010607StudentDeskIcon = [
  1488. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.x010608TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010608
  1511. U.MD.D.I.x010608StudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //xhly
  1518. U.MD.D.I.xhlyTeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. ];
  1521. //010608
  1522. U.MD.D.I.xhlyStudentDeskIcon = [
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. ];
  1525. //北师大
  1526. U.MD.D.I.BSDNSteacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1534. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //北师大
  1540. U.MD.D.I.BSDNSstudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //CUHK_EDU
  1547. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1555. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1558. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1559. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1560. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1561. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1562. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1563. ];
  1564. //CUHK_EDU
  1565. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //010503
  1572. U.MD.D.I.x010503TeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1581. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1582. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1583. ];
  1584. //010503
  1585. U.MD.D.I.x010503StudentDeskIcon = [
  1586. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1587. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1588. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1590. ];
  1591. //SPROUT Lab
  1592. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1593. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1594. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1595. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1596. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1597. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1599. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //SPROUT Lab
  1605. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //010204
  1612. U.MD.D.I.x010204TeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. ];
  1616. //010204
  1617. U.MD.D.I.x010204StudentDeskIcon = [
  1618. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1621. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. ];
  1623. //trail
  1624. U.MD.D.I.trailTeacherDeskIcon = [
  1625. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1626. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //trail
  1630. U.MD.D.I.trailStudentDeskIcon = [
  1631. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //trial
  1637. U.MD.D.I.trialTeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1641. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1642. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1643. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1644. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1645. ];
  1646. //trial
  1647. U.MD.D.I.trialStudentDeskIcon = [
  1648. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1649. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1650. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. ];
  1653. //010504
  1654. U.MD.D.I.x010504TeacherDeskIcon = [
  1655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1666. ];
  1667. //010504
  1668. U.MD.D.I.x010504StudentDeskIcon = [
  1669. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1670. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. ];
  1674. //010505
  1675. U.MD.D.I.x010505TeacherDeskIcon = [
  1676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1678. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1679. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1684. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1685. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1686. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1687. ];
  1688. //010505
  1689. U.MD.D.I.x010505StudentDeskIcon = [
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1694. ];
  1695. //SCNUET
  1696. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1702. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1703. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1704. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1708. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1709. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1710. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1711. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1714. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1715. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1716. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1717. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1720. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1721. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1722. ];
  1723. //SCNUET
  1724. U.MD.D.I.SCNUETAdminDeskIcon = [
  1725. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1726. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1730. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1731. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1732. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1735. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1736. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1737. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1738. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1742. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1743. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1744. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1745. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1748. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1749. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1750. ];
  1751. //SCNUET
  1752. U.MD.D.I.SCNUETStudentDeskIcon = [
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1757. ];
  1758. //x020201
  1759. U.MD.D.I.x020201TeacherDeskIcon = [
  1760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1767. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1771. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1772. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1773. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1776. ];
  1777. //x020201
  1778. U.MD.D.I.x020201AdminDeskIcon = [
  1779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1784. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1785. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1786. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1790. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1791. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1792. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1793. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1794. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1795. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1796. ];
  1797. //020201
  1798. U.MD.D.I.x020201StudentDeskIcon = [
  1799. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1800. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1803. ];
  1804. //010611
  1805. U.MD.D.I.x010611TeacherDeskIcon = [
  1806. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1807. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1809. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1814. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1815. ];
  1816. //010611
  1817. U.MD.D.I.x010611StudentDeskIcon = [
  1818. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1819. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1820. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1822. ];
  1823. //010612
  1824. U.MD.D.I.x010612TeacherDeskIcon = [
  1825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourseS", "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. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1833. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1834. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1835. ];
  1836. //010612
  1837. U.MD.D.I.x010612StudentDeskIcon = [
  1838. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1839. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1840. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. ];
  1843. //tianyuan
  1844. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1845. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1846. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1847. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1848. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1849. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1852. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1853. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1854. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1855. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1856. ];
  1857. //010611
  1858. U.MD.D.I.tianyuanStudentDeskIcon = [
  1859. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1862. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1863. ];
  1864. //320101
  1865. U.MD.D.I.x320101TeacherDeskIcon = [
  1866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1873. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1874. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1875. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1876. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1877. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1878. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1879. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1880. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1881. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1882. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1883. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1884. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1885. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1886. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1887. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1888. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1889. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1890. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1891. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1892. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1893. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1894. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1895. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1896. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1897. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1898. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1899. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1900. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1901. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1902. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1903. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1904. ];
  1905. //320101
  1906. U.MD.D.I.x320101StudentDeskIcon = [
  1907. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1908. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1909. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1911. ];
  1912. //szsy
  1913. U.MD.D.I.szsyTeacherDeskIcon = [
  1914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1916. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1917. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1918. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1919. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1920. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1921. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1922. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1923. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1927. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1928. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1931. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //szsy
  1935. U.MD.D.I.szsyStudentDeskIcon = [
  1936. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1941. ];
  1942. //010404
  1943. U.MD.D.I.x010404TeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1947. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1948. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1949. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1952. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1955. ];
  1956. //010404
  1957. U.MD.D.I.x010404StudentDeskIcon = [
  1958. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1959. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1962. ];
  1963. //#region 桌面初始化a
  1964. /**
  1965. * 初始化桌面的起始函数
  1966. *
  1967. */
  1968. U.MD.D.I.init = function () {
  1969. if ($("#U_MD_D_K")[0]) {
  1970. //初始化桌面图标
  1971. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1972. // var clickUrl = ':12588/requestIp.php';
  1973. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1974. // U.MD.D.I.Ip = data;
  1975. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1976. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1977. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1978. // })
  1979. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1980. // })
  1981. }
  1982. }
  1983. /**
  1984. * 模式切换
  1985. *
  1986. */
  1987. U.MD.D.I.ModeCheck = function (type) {
  1988. if (US.Config.type == type) {
  1989. return
  1990. }
  1991. US.Config.type = type
  1992. $('.U_PBL_Check .active')[0].className = ''
  1993. if (type == 1) {
  1994. $('.U_PBL_Check div')[0].className = 'active'
  1995. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1996. } else {
  1997. $('.U_PBL_Check div')[1].className = 'active'
  1998. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1999. }
  2000. //初始化桌面图标
  2001. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2002. if (type == 2) {
  2003. U.MD.D.I.openApplication("project")
  2004. }
  2005. }
  2006. /**
  2007. * 隐藏任务栏
  2008. *
  2009. * @param {element} 桌面元素
  2010. */
  2011. U.MD.D.I.hiddenTaskbar = function (el) {
  2012. //任务栏位置变小
  2013. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2014. //桌面的位置变大
  2015. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2016. }
  2017. /**
  2018. * 隐藏任务栏
  2019. *
  2020. * @param {element} 桌面元素
  2021. */
  2022. U.MD.D.I.hiddenTaskbarout = function (el) {
  2023. //任务栏位置变小
  2024. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2025. //任务栏位置变化
  2026. U.selectEl(el).css({ "bottom": "-60px" });
  2027. //桌面的位置变大
  2028. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2029. }
  2030. }
  2031. /**
  2032. * 初始化打印桌面图标
  2033. *
  2034. * @param {element} 桌面元素
  2035. */
  2036. U.MD.D.I.initDesktopIcons = function (el, type) {
  2037. var i, //用于循环
  2038. _content, //桌面图标元素
  2039. _iconcontent, //桌面图标元素
  2040. _frag = $$("frag"), //定义一个碎片元素
  2041. _type = US.userInfo.type,
  2042. _org = US.userInfo.org,
  2043. _oid = US.userInfo.organizeid,
  2044. _role = US.userInfo.role,
  2045. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2046. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2047. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2048. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2049. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2050. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2051. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2052. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2053. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2054. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2055. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2056. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2057. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2058. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2059. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2060. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2061. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2062. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2063. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2064. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2065. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2066. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2067. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2068. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2069. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2070. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2071. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2072. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2073. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2074. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2075. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2076. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2077. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2078. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2079. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2080. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2081. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2082. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2083. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2084. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2085. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2086. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2087. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2088. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2089. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2090. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2091. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2092. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2093. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2094. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2095. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2096. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2097. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2098. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2099. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2100. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2101. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2102. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2103. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2104. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2105. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2106. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2107. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2108. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2109. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2110. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2111. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2112. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2113. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2114. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2115. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2116. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2117. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2118. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2119. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2120. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2121. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2122. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2123. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2124. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2125. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2126. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2127. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2128. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2129. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2130. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2131. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2132. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2133. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2134. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2135. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2136. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2137. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2138. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2139. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2140. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2141. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2142. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2143. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2144. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2145. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2146. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2147. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2148. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2149. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2150. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2151. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2152. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2153. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2154. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2155. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2156. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2157. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2158. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2159. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2160. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2161. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2162. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2163. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2164. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2165. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2166. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2167. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2168. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2169. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2170. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2171. 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'];
  2172. 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'];
  2173. 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",]
  2174. //清楚桌面图标
  2175. el.innerHTML = "";
  2176. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2177. _teacherDesktopIconInfo.push(
  2178. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2179. { "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)" } },
  2180. )
  2181. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2182. }
  2183. 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 == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2184. _teacherDesktopIconInfo.push(
  2185. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2186. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2187. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2188. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2189. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2190. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2191. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2192. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2193. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2194. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2195. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2197. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2198. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2199. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2200. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2201. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2202. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2203. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2204. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2205. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2206. )
  2207. }
  2208. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2209. _teacherDesktopIconInfo.push(
  2210. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2211. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2212. )
  2213. }
  2214. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2215. _nsfxTeacherDeskIconInfo.push(
  2216. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2217. )
  2218. }
  2219. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2220. // _teacherDesktopIconInfo.push(
  2221. // )
  2222. // }
  2223. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2224. _teacherDesktopIconInfo.push(
  2225. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2226. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2227. )
  2228. }
  2229. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2230. _teacherDesktopIconInfo.push(
  2231. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2233. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2235. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2236. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2237. )
  2238. _studentDesktopIconInfo.push(
  2239. )
  2240. }
  2241. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2242. _teacherDesktopIconInfo.push(
  2243. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2244. )
  2245. _studentDesktopIconInfo.push(
  2246. )
  2247. }
  2248. //010606 组织
  2249. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2250. _teacherDesktopIconInfo.push(
  2251. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2252. )
  2253. _studentDesktopIconInfo.push(
  2254. )
  2255. }
  2256. //麒麟二中 和 民新小学
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2258. _teacherDesktopIconInfo.push(
  2259. )
  2260. }
  2261. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2262. _teacherDesktopIconInfo.push(
  2263. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2264. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2265. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2266. )
  2267. }
  2268. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2269. _hkTeacherDeskIconInfo.push(
  2270. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2271. )
  2272. }
  2273. //北师大附中(010601)
  2274. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2275. // _teacherDesktopIconInfo.push(
  2276. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2277. // )
  2278. // _studentDesktopIconInfo.push(
  2279. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2280. // )
  2281. // }
  2282. //樂善堂余近卿中學
  2283. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2284. _teacherDesktopIconInfo.push(
  2285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2286. )
  2287. }
  2288. // Education Artificial Intelligence
  2289. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2290. _teacherDesktopIconInfo.push(
  2291. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2292. )
  2293. }
  2294. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2295. _teacherDesktopIconInfo.push(
  2296. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2297. )
  2298. }
  2299. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2300. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2301. _teacherDesktopIconInfo.push(
  2302. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2303. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2304. )
  2305. }
  2306. //麒麟二中
  2307. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2308. _studentDesktopIconInfo.push(
  2309. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2310. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2311. )
  2312. }
  2313. //万科双语
  2314. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2315. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2316. if (el.Name == '项目管理') {
  2317. el.Name = 'PBL项目'
  2318. }
  2319. return el
  2320. })
  2321. _studentDesktopIconInfo3.push(
  2322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2323. )
  2324. }
  2325. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2326. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2327. return el.Name != '魔盒识字' && el.Name != '24点'
  2328. })
  2329. }
  2330. 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) {
  2331. _studentDesktopIconInfo.push(
  2332. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2333. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2334. )
  2335. }
  2336. //循环创建桌面图标
  2337. if (type == 1) {
  2338. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2339. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_studentDesktopIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_studentDesktopIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2356. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_hkZJLSStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. } //
  2372. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2373. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_ytyStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_ytyStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. } //
  2389. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2390. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_jccssylStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_jccssylStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2407. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_scnuaiStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_scnuaiStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2424. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_caleStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_caleStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2441. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_thuioeStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_thuioeStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2458. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_tpcStudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_tpcStudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2473. } //
  2474. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2475. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_chjyjStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_chjyjStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2492. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_szjkyStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_szjkyStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2509. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_x020201StudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_x020201StudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2526. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_SCNUETStudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_SCNUETStudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2543. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_dseiStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_dseiStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2560. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2577. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_nsfxStudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_nsfxStudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2594. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_stiaStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_stiaStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2611. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_szdjgStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_szdjgStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2628. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010607StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010607StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2645. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_xhlyStudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_xhlyStudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2662. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2679. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010503StudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_x010503StudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2696. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_x010504StudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010504StudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2713. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x010505StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010505StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2730. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_x010404StudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x010404StudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2747. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_x010204StudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_x010204StudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2764. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_x320101StudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_x320101StudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2781. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_trailStudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_trailStudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2798. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_trialStudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_trialStudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2815. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2832. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_szsyStudentDeskIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_szsyStudentDeskIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2849. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_x010608StudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_x010608StudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2866. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_x010611StudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_x010611StudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2883. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_x010612StudentDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_x010612StudentDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2900. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_tianyuantudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tianyuantudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2917. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_siesStudentDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_siesStudentDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2934. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_guzmsStudentDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_guzmsStudentDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2951. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_hkStudentDeskIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_hkStudentDeskIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2968. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2969. _content = $$("div", {
  2970. className: "U_MD_D_KO",
  2971. "onmousedown": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_tycyStudentDeskIconInfo[i]]),
  2975. "onclick": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_tycyStudentDeskIconInfo[i]])
  2979. }, _frag); //
  2980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  2982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  2983. }
  2984. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2985. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_hkaceStudentDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_hkaceStudentDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3002. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_BSDNSstudentDesktopIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3019. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_cocobizStudentDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_cocobizStudentDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3034. }
  3035. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3036. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_xxzjkyStudentDeskIconInfo[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3051. }
  3052. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3053. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3054. _content = $$("div", {
  3055. className: "U_MD_D_KO",
  3056. "onmousedown": U.UF.C.closure(function (obj) {
  3057. //防止拖动图标即打开了桌面应用
  3058. U.MD.D.click(this, obj);
  3059. }, [_studentDesktopIconInfo[i]]),
  3060. "onclick": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_studentDesktopIconInfo[i]])
  3064. }, _frag); //
  3065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3068. }
  3069. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3070. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_tcStudentDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_tcStudentDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3087. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_szscStudentDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_szscStudentDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3104. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3105. _content = $$("div", {
  3106. className: "U_MD_D_KO",
  3107. "onmousedown": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_studentDesktopIconInfo3[i]]),
  3111. "onclick": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_studentDesktopIconInfo3[i]])
  3115. }, _frag); //
  3116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3119. }
  3120. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3121. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3122. _content = $$("div", {
  3123. className: "U_MD_D_KO",
  3124. "onmousedown": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_studentDesktopIconInfo2[i]]),
  3128. "onclick": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_studentDesktopIconInfo2[i]])
  3132. }, _frag); //
  3133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3136. }
  3137. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3138. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3139. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3140. continue
  3141. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_wanketeacherDesktopIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3158. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_wankeAdminDesktopIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3175. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3176. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3177. continue
  3178. }
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_scnuaiTeacherDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3195. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3196. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3197. continue
  3198. }
  3199. _content = $$("div", {
  3200. className: "U_MD_D_KO",
  3201. "onmousedown": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3205. "onclick": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_BSDNSteacherDesktopIconInfo[i]])
  3209. }, _frag); //
  3210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3213. }
  3214. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3215. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_scnuaiAdminDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_scnuaiAdminDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3232. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3233. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3234. continue
  3235. }
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_jccssylTeacherDeskIconInfo[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_jccssylTeacherDeskIconInfo[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3252. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3253. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_caleTeacherDeskIconInfo[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_caleTeacherDeskIconInfo[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3272. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3273. _content = $$("div", {
  3274. className: "U_MD_D_KO",
  3275. "onmousedown": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_tpcOrganizerDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_tpcOrganizerDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3289. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3290. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3291. continue
  3292. }
  3293. _content = $$("div", {
  3294. className: "U_MD_D_KO",
  3295. "onmousedown": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_tpcTeacherDeskIconInfo[i]]),
  3299. "onclick": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_tpcTeacherDeskIconInfo[i]])
  3303. }, _frag); //
  3304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3307. }
  3308. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3309. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3310. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3311. continue
  3312. }
  3313. _content = $$("div", {
  3314. className: "U_MD_D_KO",
  3315. "onmousedown": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_teacherDesktopIconInfo2[i]]),
  3319. "onclick": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_teacherDesktopIconInfo2[i]])
  3323. }, _frag); //
  3324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3327. }
  3328. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3329. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3330. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3331. continue
  3332. }
  3333. _content = $$("div", {
  3334. className: "U_MD_D_KO",
  3335. "onmousedown": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_thuioeTeacherDeskIconInfo[i]]),
  3339. "onclick": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_thuioeTeacherDeskIconInfo[i]])
  3343. }, _frag); //
  3344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3347. }
  3348. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3349. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3350. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3351. continue
  3352. }
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_lotechTeacherDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_lotechTeacherDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3367. }//
  3368. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3369. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3370. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3371. continue
  3372. }
  3373. _content = $$("div", {
  3374. className: "U_MD_D_KO",
  3375. "onmousedown": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3389. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3390. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3391. continue
  3392. }
  3393. _content = $$("div", {
  3394. className: "U_MD_D_KO",
  3395. "onmousedown": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_siesTeacherDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_siesTeacherDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3407. }
  3408. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3409. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3411. continue
  3412. }
  3413. _content = $$("div", {
  3414. className: "U_MD_D_KO",
  3415. "onmousedown": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_guzmsTeacherDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_guzmsTeacherDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3429. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3430. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3431. continue
  3432. }
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_longhuaTeacherDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_longhuaTeacherDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3447. }
  3448. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3449. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_ytyTeacherDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_ytyTeacherDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3469. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3470. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3471. continue
  3472. }
  3473. _content = $$("div", {
  3474. className: "U_MD_D_KO",
  3475. "onmousedown": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_yunhaiTeacherDeskIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3487. } //_hkStudentDeskIconInfo
  3488. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3489. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3490. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3491. continue
  3492. }
  3493. _content = $$("div", {
  3494. className: "U_MD_D_KO",
  3495. "onmousedown": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3509. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3510. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3511. continue
  3512. }
  3513. _content = $$("div", {
  3514. className: "U_MD_D_KO",
  3515. "onmousedown": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_ricohTeacherDeskIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_ricohTeacherDeskIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3529. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3530. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3531. continue
  3532. }
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_hkTeacherDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_hkTeacherDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3549. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_tycyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_tycyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3569. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_hkaceTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_hkaceTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3589. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_cocobizTeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_cocobizTeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3609. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3629. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3630. _content = $$("div", {
  3631. className: "U_MD_D_KO",
  3632. "onmousedown": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_gdjgAdminDeskIconInfo[i]]),
  3636. "onclick": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_gdjgAdminDeskIconInfo[i]])
  3640. }, _frag); //
  3641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3644. }
  3645. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3646. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3647. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3648. continue
  3649. }
  3650. _content = $$("div", {
  3651. className: "U_MD_D_KO",
  3652. "onmousedown": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_gdjgTeacherDeskIconInfo[i]]),
  3656. "onclick": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_gdjgTeacherDeskIconInfo[i]])
  3660. }, _frag); //
  3661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3664. }
  3665. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3666. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3667. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3668. continue
  3669. }
  3670. _content = $$("div", {
  3671. className: "U_MD_D_KO",
  3672. "onmousedown": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_szherTeacherDeskIconInfo[i]]),
  3676. "onclick": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_szherTeacherDeskIconInfo[i]])
  3680. }, _frag); //
  3681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3684. }
  3685. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3686. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3687. _content = $$("div", {
  3688. className: "U_MD_D_KO",
  3689. "onmousedown": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_heyuannAdminDeskIconInfo[i]]),
  3693. "onclick": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_heyuannAdminDeskIconInfo[i]])
  3697. }, _frag); //
  3698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3701. }
  3702. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3703. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3704. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3705. continue
  3706. }
  3707. _content = $$("div", {
  3708. className: "U_MD_D_KO",
  3709. "onmousedown": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_heyuanTeacherDeskIconInfo[i]]),
  3713. "onclick": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_heyuanTeacherDeskIconInfo[i]])
  3717. }, _frag); //
  3718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3721. } //
  3722. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3723. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3724. _content = $$("div", {
  3725. className: "U_MD_D_KO",
  3726. "onmousedown": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_dseiAdminDeskIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_dseiAdminDeskIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3740. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3741. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3742. continue
  3743. }
  3744. _content = $$("div", {
  3745. className: "U_MD_D_KO",
  3746. "onmousedown": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_dseiTeacherDeskIconInfo[i]]),
  3750. "onclick": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_dseiTeacherDeskIconInfo[i]])
  3754. }, _frag); //
  3755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3758. } //
  3759. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3760. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_chjyjAdminDeskIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_chjyjAdminDeskIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3775. }//
  3776. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3777. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3778. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_chjyjTeacherDeskIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_chjyjTeacherDeskIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3797. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_szjkyAdminDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szjkyAdminDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3812. }//
  3813. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3814. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3815. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3816. continue
  3817. }
  3818. _content = $$("div", {
  3819. className: "U_MD_D_KO",
  3820. "onmousedown": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_szjkyTeacherDeskIconInfo[i]]),
  3824. "onclick": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_szjkyTeacherDeskIconInfo[i]])
  3828. }, _frag); //
  3829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3832. }
  3833. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3834. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_x020201AdminDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_x020201AdminDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3849. }//
  3850. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3851. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3852. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3853. continue
  3854. }
  3855. _content = $$("div", {
  3856. className: "U_MD_D_KO",
  3857. "onmousedown": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_x020201TeacherDeskIconInfo[i]]),
  3861. "onclick": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_x020201TeacherDeskIconInfo[i]])
  3865. }, _frag); //
  3866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3869. }
  3870. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3871. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_SCNUETAdminDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_SCNUETAdminDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3886. }//
  3887. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3888. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3889. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3890. continue
  3891. }
  3892. _content = $$("div", {
  3893. className: "U_MD_D_KO",
  3894. "onmousedown": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3898. "onclick": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_SCNUETTeacherDeskIconInfo[i]])
  3902. }, _frag); //
  3903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3906. }
  3907. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3908. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_futianAdminDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_futianAdminDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3925. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3926. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3927. continue
  3928. }
  3929. _content = $$("div", {
  3930. className: "U_MD_D_KO",
  3931. "onmousedown": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_futianTeacherDeskIconInfo[i]]),
  3935. "onclick": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_futianTeacherDeskIconInfo[i]])
  3939. }, _frag); //
  3940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3943. }
  3944. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3945. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3946. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3947. continue
  3948. }
  3949. _content = $$("div", {
  3950. className: "U_MD_D_KO",
  3951. "onmousedown": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_MingdeTeacherDeskIcon[i]]),
  3955. "onclick": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_MingdeTeacherDeskIcon[i]])
  3959. }, _frag); //
  3960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3963. }
  3964. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3965. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_lhsAdminDesktopIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_lhsAdminDesktopIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3982. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3983. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_lhsteacherDesktopIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_lhsteacherDesktopIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4002. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4003. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_zhoujiateacherDesktopIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4022. for (i = 0; i < _hanDeskIcon.length; i++) {
  4023. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_hanDeskIcon[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_hanDeskIcon[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4042. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4043. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_orgStemDeskIcon[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_orgStemDeskIcon[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4062. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4063. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_szulsDeskIcon[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_szulsDeskIcon[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4082. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4083. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_orgDesktopIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_orgDesktopIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4102. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4103. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_schoolDesktopIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_schoolDesktopIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4122. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4123. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_GMteacherDesktopIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_GMteacherDesktopIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4142. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4143. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_SONGteacherDesktopIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_SONGteacherDesktopIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4162. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4163. _content = $$("div", {
  4164. className: "U_MD_D_KO",
  4165. "onmousedown": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_GMstudentDesktopIconInfo[i]]),
  4169. "onclick": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_GMstudentDesktopIconInfo[i]])
  4173. }, _frag); //
  4174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4177. }
  4178. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4179. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4180. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4181. continue
  4182. }
  4183. _content = $$("div", {
  4184. className: "U_MD_D_KO",
  4185. "onmousedown": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_tcTeacherDeskIconInfo[i]]),
  4189. "onclick": U.UF.C.closure(function (obj) {
  4190. //防止拖动图标即打开了桌面应用
  4191. U.MD.D.click(this, obj);
  4192. }, [_tcTeacherDeskIconInfo[i]])
  4193. }, _frag); //
  4194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4197. }
  4198. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4199. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4200. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4201. continue
  4202. }
  4203. _content = $$("div", {
  4204. className: "U_MD_D_KO",
  4205. "onmousedown": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_tcOrganizerDeskIconInfo[i]]),
  4209. "onclick": U.UF.C.closure(function (obj) {
  4210. //防止拖动图标即打开了桌面应用
  4211. U.MD.D.click(this, obj);
  4212. }, [_tcOrganizerDeskIconInfo[i]])
  4213. }, _frag); //
  4214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4217. }
  4218. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4219. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4220. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4221. continue
  4222. }
  4223. _content = $$("div", {
  4224. className: "U_MD_D_KO",
  4225. "onmousedown": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_szscTeacherDeskIconInfo[i]]),
  4229. "onclick": U.UF.C.closure(function (obj) {
  4230. //防止拖动图标即打开了桌面应用
  4231. U.MD.D.click(this, obj);
  4232. }, [_szscTeacherDeskIconInfo[i]])
  4233. }, _frag); //
  4234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4237. }
  4238. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4239. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4240. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4241. continue
  4242. }
  4243. _content = $$("div", {
  4244. className: "U_MD_D_KO",
  4245. "onmousedown": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szscOrganizerDeskIconInfo[i]]),
  4249. "onclick": U.UF.C.closure(function (obj) {
  4250. //防止拖动图标即打开了桌面应用
  4251. U.MD.D.click(this, obj);
  4252. }, [_szscOrganizerDeskIconInfo[i]])
  4253. }, _frag); //
  4254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4257. }
  4258. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4259. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4260. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4261. continue
  4262. }
  4263. _content = $$("div", {
  4264. className: "U_MD_D_KO",
  4265. "onmousedown": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_nsfxTeacherDeskIconInfo[i]]),
  4269. "onclick": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_nsfxTeacherDeskIconInfo[i]])
  4273. }, _frag); //
  4274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4277. }
  4278. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4279. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4280. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4281. continue
  4282. }
  4283. _content = $$("div", {
  4284. className: "U_MD_D_KO",
  4285. "onmousedown": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_stiaTeacherDeskIconInfo[i]]),
  4289. "onclick": U.UF.C.closure(function (obj) {
  4290. //防止拖动图标即打开了桌面应用
  4291. U.MD.D.click(this, obj);
  4292. }, [_stiaTeacherDeskIconInfo[i]])
  4293. }, _frag); //
  4294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4297. }
  4298. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4299. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4300. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4301. continue
  4302. }
  4303. _content = $$("div", {
  4304. className: "U_MD_D_KO",
  4305. "onmousedown": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_szdjgTeacherDeskIconInfo[i]]),
  4309. "onclick": U.UF.C.closure(function (obj) {
  4310. //防止拖动图标即打开了桌面应用
  4311. U.MD.D.click(this, obj);
  4312. }, [_szdjgTeacherDeskIconInfo[i]])
  4313. }, _frag); //
  4314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4317. }
  4318. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4319. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4320. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4321. continue
  4322. }
  4323. _content = $$("div", {
  4324. className: "U_MD_D_KO",
  4325. "onmousedown": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010607TeacherDeskIconInfo[i]]),
  4329. "onclick": U.UF.C.closure(function (obj) {
  4330. //防止拖动图标即打开了桌面应用
  4331. U.MD.D.click(this, obj);
  4332. }, [_x010607TeacherDeskIconInfo[i]])
  4333. }, _frag); //
  4334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4337. }
  4338. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4339. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4340. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4341. continue
  4342. }
  4343. _content = $$("div", {
  4344. className: "U_MD_D_KO",
  4345. "onmousedown": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_xhlyTeacherDeskIconInfo[i]]),
  4349. "onclick": U.UF.C.closure(function (obj) {
  4350. //防止拖动图标即打开了桌面应用
  4351. U.MD.D.click(this, obj);
  4352. }, [_xhlyTeacherDeskIconInfo[i]])
  4353. }, _frag); //
  4354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4357. }
  4358. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4359. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4360. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4361. continue
  4362. }
  4363. _content = $$("div", {
  4364. className: "U_MD_D_KO",
  4365. "onmousedown": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4369. "onclick": U.UF.C.closure(function (obj) {
  4370. //防止拖动图标即打开了桌面应用
  4371. U.MD.D.click(this, obj);
  4372. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4373. }, _frag); //
  4374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4377. }
  4378. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4379. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4380. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4381. continue
  4382. }
  4383. _content = $$("div", {
  4384. className: "U_MD_D_KO",
  4385. "onmousedown": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x010503TeacherDeskIconInfo[i]]),
  4389. "onclick": U.UF.C.closure(function (obj) {
  4390. //防止拖动图标即打开了桌面应用
  4391. U.MD.D.click(this, obj);
  4392. }, [_x010503TeacherDeskIconInfo[i]])
  4393. }, _frag); //
  4394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4397. }
  4398. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4399. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4400. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4401. continue
  4402. }
  4403. _content = $$("div", {
  4404. className: "U_MD_D_KO",
  4405. "onmousedown": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_x010504TeacherDeskIconInfo[i]]),
  4409. "onclick": U.UF.C.closure(function (obj) {
  4410. //防止拖动图标即打开了桌面应用
  4411. U.MD.D.click(this, obj);
  4412. }, [_x010504TeacherDeskIconInfo[i]])
  4413. }, _frag); //
  4414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4417. }
  4418. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4419. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4420. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4421. continue
  4422. }
  4423. _content = $$("div", {
  4424. className: "U_MD_D_KO",
  4425. "onmousedown": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_x010505TeacherDeskIconInfo[i]]),
  4429. "onclick": U.UF.C.closure(function (obj) {
  4430. //防止拖动图标即打开了桌面应用
  4431. U.MD.D.click(this, obj);
  4432. }, [_x010505TeacherDeskIconInfo[i]])
  4433. }, _frag); //
  4434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4437. }
  4438. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4439. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4440. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4441. continue
  4442. }
  4443. _content = $$("div", {
  4444. className: "U_MD_D_KO",
  4445. "onmousedown": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_x010404TeacherDeskIconInfo[i]]),
  4449. "onclick": U.UF.C.closure(function (obj) {
  4450. //防止拖动图标即打开了桌面应用
  4451. U.MD.D.click(this, obj);
  4452. }, [_x010404TeacherDeskIconInfo[i]])
  4453. }, _frag); //
  4454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4457. }
  4458. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4459. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4460. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4461. continue
  4462. }
  4463. _content = $$("div", {
  4464. className: "U_MD_D_KO",
  4465. "onmousedown": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010204TeacherDeskIconInfo[i]]),
  4469. "onclick": U.UF.C.closure(function (obj) {
  4470. //防止拖动图标即打开了桌面应用
  4471. U.MD.D.click(this, obj);
  4472. }, [_x010204TeacherDeskIconInfo[i]])
  4473. }, _frag); //
  4474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4477. }
  4478. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4479. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4480. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4481. continue
  4482. }
  4483. _content = $$("div", {
  4484. className: "U_MD_D_KO",
  4485. "onmousedown": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x320101TeacherDeskIconInfo[i]]),
  4489. "onclick": U.UF.C.closure(function (obj) {
  4490. //防止拖动图标即打开了桌面应用
  4491. U.MD.D.click(this, obj);
  4492. }, [_x320101TeacherDeskIconInfo[i]])
  4493. }, _frag); //
  4494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4497. }
  4498. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4499. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4500. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4501. continue
  4502. }
  4503. _content = $$("div", {
  4504. className: "U_MD_D_KO",
  4505. "onmousedown": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_trailTeacherDeskIconInfo[i]]),
  4509. "onclick": U.UF.C.closure(function (obj) {
  4510. //防止拖动图标即打开了桌面应用
  4511. U.MD.D.click(this, obj);
  4512. }, [_trailTeacherDeskIconInfo[i]])
  4513. }, _frag); //
  4514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4517. }
  4518. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4519. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4520. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4521. continue
  4522. }
  4523. _content = $$("div", {
  4524. className: "U_MD_D_KO",
  4525. "onmousedown": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_trialTeacherDeskIconInfo[i]]),
  4529. "onclick": U.UF.C.closure(function (obj) {
  4530. //防止拖动图标即打开了桌面应用
  4531. U.MD.D.click(this, obj);
  4532. }, [_trialTeacherDeskIconInfo[i]])
  4533. }, _frag); //
  4534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4537. }
  4538. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4539. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4540. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4541. continue
  4542. }
  4543. _content = $$("div", {
  4544. className: "U_MD_D_KO",
  4545. "onmousedown": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4549. "onclick": U.UF.C.closure(function (obj) {
  4550. //防止拖动图标即打开了桌面应用
  4551. U.MD.D.click(this, obj);
  4552. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4553. }, _frag); //
  4554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4557. }
  4558. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4559. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4560. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4561. continue
  4562. }
  4563. _content = $$("div", {
  4564. className: "U_MD_D_KO",
  4565. "onmousedown": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_szsyTeacherDeskIconInfo[i]]),
  4569. "onclick": U.UF.C.closure(function (obj) {
  4570. //防止拖动图标即打开了桌面应用
  4571. U.MD.D.click(this, obj);
  4572. }, [_szsyTeacherDeskIconInfo[i]])
  4573. }, _frag); //
  4574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4577. }
  4578. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4579. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4580. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4581. continue
  4582. }
  4583. _content = $$("div", {
  4584. className: "U_MD_D_KO",
  4585. "onmousedown": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_x010608TeacherDeskIconInfo[i]]),
  4589. "onclick": U.UF.C.closure(function (obj) {
  4590. //防止拖动图标即打开了桌面应用
  4591. U.MD.D.click(this, obj);
  4592. }, [_x010608TeacherDeskIconInfo[i]])
  4593. }, _frag); //
  4594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4597. }
  4598. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4599. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4600. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4601. continue
  4602. }
  4603. _content = $$("div", {
  4604. className: "U_MD_D_KO",
  4605. "onmousedown": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010611TeacherDeskIconInfo[i]]),
  4609. "onclick": U.UF.C.closure(function (obj) {
  4610. //防止拖动图标即打开了桌面应用
  4611. U.MD.D.click(this, obj);
  4612. }, [_x010611TeacherDeskIconInfo[i]])
  4613. }, _frag); //
  4614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4617. }
  4618. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4619. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4620. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4621. continue
  4622. }
  4623. _content = $$("div", {
  4624. className: "U_MD_D_KO",
  4625. "onmousedown": U.UF.C.closure(function (obj) {
  4626. //防止拖动图标即打开了桌面应用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010612TeacherDeskIconInfo[i]]),
  4629. "onclick": U.UF.C.closure(function (obj) {
  4630. //防止拖动图标即打开了桌面应用
  4631. U.MD.D.click(this, obj);
  4632. }, [_x010612TeacherDeskIconInfo[i]])
  4633. }, _frag); //
  4634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4637. }
  4638. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4639. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4640. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4641. continue
  4642. }
  4643. _content = $$("div", {
  4644. className: "U_MD_D_KO",
  4645. "onmousedown": U.UF.C.closure(function (obj) {
  4646. //防止拖动图标即打开了桌面应用
  4647. U.MD.D.click(this, obj);
  4648. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4649. "onclick": U.UF.C.closure(function (obj) {
  4650. //防止拖动图标即打开了桌面应用
  4651. U.MD.D.click(this, obj);
  4652. }, [_tianyuanTeacherDeskIconInfo[i]])
  4653. }, _frag); //
  4654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4657. }
  4658. } else {
  4659. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4660. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4661. continue
  4662. }
  4663. _content = $$("div", {
  4664. className: "U_MD_D_KO",
  4665. "onmousedown": U.UF.C.closure(function (obj) {
  4666. //防止拖动图标即打开了桌面应用
  4667. U.MD.D.click(this, obj);
  4668. }, [_teacherDesktopIconInfo[i]]),
  4669. "onclick": U.UF.C.closure(function (obj) {
  4670. //防止拖动图标即打开了桌面应用
  4671. U.MD.D.click(this, obj);
  4672. }, [_teacherDesktopIconInfo[i]])
  4673. }, _frag); //
  4674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4677. }
  4678. }
  4679. } else {
  4680. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4681. _content = $$("div", {
  4682. className: "U_MD_D_KO",
  4683. style: { 'width': '124px', 'height': '145px' },
  4684. "onmousedown": U.UF.C.closure(function (obj) {
  4685. //防止拖动图标即打开了桌面应用
  4686. U.MD.D.click(this, obj);
  4687. }, [_easyDesktopIconInfo[i]]),
  4688. "onclick": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_easyDesktopIconInfo[i]])
  4692. }, _frag); //
  4693. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4696. }
  4697. }
  4698. if (type == 1) {
  4699. //加载好后给图标定位
  4700. U.MD.D.iconPostion($(_frag).Child());
  4701. } else {
  4702. //加载好后给图标定位
  4703. U.MD.D.iconPostion2($(_frag).Child());
  4704. }
  4705. //把图标加载到页面
  4706. el.appendChild(_frag);
  4707. }
  4708. /**
  4709. * 显示任务栏
  4710. *
  4711. * @param {element} 桌面元素
  4712. */
  4713. U.MD.D.I.displayTaskbar = function (el) {
  4714. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4715. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4716. //任务栏位置变化
  4717. U.selectEl(el).css({ "bottom": "0px" });
  4718. //桌面位置变话
  4719. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4720. }
  4721. }
  4722. //#region 桌面图标拖动逻辑
  4723. /**
  4724. * 桌面排列图标
  4725. *
  4726. * @param {element} 桌面元素
  4727. * @param {object} 上下相距的距离
  4728. * @param {object} 左右相距的距离
  4729. * @return {object} 命名空间
  4730. */
  4731. U.MD.D.iconPostion = function (childs, top, left) {
  4732. var i; //用于循环处理
  4733. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4734. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4735. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4736. for (i = 0; i < childs.length; i++) {
  4737. //如果竖排top超过了范围处理
  4738. if (top + 95 > US.height - 10) {
  4739. //left超过了页面范围处理,则向上重叠打印处理
  4740. if ((left + 180) > US.width) {
  4741. top -= 110;
  4742. left -= 90;
  4743. }
  4744. //没有超过范围,那么left+90添加到下一个竖排打印
  4745. else {
  4746. left += 90;
  4747. top = 15;
  4748. };
  4749. }
  4750. //给图标的位置赋值
  4751. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4752. if (i < childs.length - 1) {
  4753. //页面图标每次向下加95
  4754. top += 95;
  4755. }
  4756. }
  4757. //返回最后调用的图标的位置
  4758. return [top, left];
  4759. }
  4760. /**
  4761. * 桌面排列图标
  4762. *
  4763. * @param {element} 桌面元素
  4764. * @param {object} 上下相距的距离
  4765. * @param {object} 左右相距的距离
  4766. * @return {object} 命名空间
  4767. */
  4768. U.MD.D.iconPostion2 = function (childs, top, left) {
  4769. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4770. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4771. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4772. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4773. for (i = 0; i < childs.length; i++) {
  4774. //如果竖排top超过了范围处理
  4775. if (left + 150 > US.width - 10) {
  4776. //left超过了页面范围处理,则向上重叠打印处理
  4777. if ((top + 180) > US.Height) {
  4778. top -= 150;
  4779. left -= 150;
  4780. }
  4781. //没有超过范围,那么left+90添加到下一个竖排打印
  4782. else {
  4783. top += 150;
  4784. left = ol;
  4785. };
  4786. }
  4787. //给图标的位置赋值
  4788. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4789. if (i < childs.length - 1) {
  4790. //页面图标每次向下加95
  4791. left += 150;
  4792. }
  4793. }
  4794. //返回最后调用的图标的位置
  4795. return [top, left];
  4796. }
  4797. /**
  4798. * 桌面点击事件逻辑
  4799. *
  4800. * @param {element} 桌面元素
  4801. * @param {object} 上下相距的距离
  4802. * @param {object} 左右相距的距离
  4803. * @return {object} 命名空间
  4804. */
  4805. U.MD.D.click = function (el, obj) {
  4806. var _buttonnumber = event.button; //点击的按钮的事件值
  4807. var _userinfo = US.userInfo;
  4808. U.UF.EV.stopBubble(); //阻止向上冒泡
  4809. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4810. if (_buttonnumber < 2) {
  4811. //如果是click事件的处理
  4812. if (event.type == "click") {
  4813. //如果元素在mousemove事件中没有移动则出发click事件
  4814. if (!U.MD.D.I.IsDrag) {
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. U.alert("请先登录您的账号!");
  4817. setTimeout(() => {
  4818. U.MD.U.L.login();
  4819. }, 2000);
  4820. } else {
  4821. //打开应用处理
  4822. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4823. }
  4824. }
  4825. }
  4826. //如果是mouse事件的处理
  4827. else {
  4828. if (US.Config.type == '1') {
  4829. //拖动处理,添加拖动和拖动结束事件
  4830. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4831. }
  4832. }
  4833. U.MD.D.I.IsDrag = false;
  4834. }
  4835. }
  4836. /**
  4837. * 拖动的处理
  4838. *
  4839. */
  4840. U.MD.D.iconMove = function () {
  4841. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4842. U.MD.D.I.IsDrag = true;
  4843. }
  4844. /**
  4845. * 拖动结束后,这里是定位处理,以网状的形式定位
  4846. *
  4847. * @param {element} 拖动的元素
  4848. * @return {object} 命名空间
  4849. */
  4850. U.MD.D.iconUp = function (el) {
  4851. var _top = 15,
  4852. _left = 20,
  4853. _margin,
  4854. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4855. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4856. if (_positioninfo["OT"] > 15) {
  4857. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4858. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4859. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4860. }
  4861. if (_positioninfo["OL"] > 20) {
  4862. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4863. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4864. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4865. }
  4866. //while循环判断么一个重叠的元素
  4867. do {
  4868. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4869. _top = _positioninfo[0] + 95; //得到定位后的top
  4870. _left = _positioninfo[1]; //得到定位后的left
  4871. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4872. }
  4873. /**
  4874. * 判断拖动后图标是否重叠
  4875. *
  4876. * @param {element} 拖动的元素
  4877. * @param {element} 桌面所有的元素
  4878. * @param {array} 拖动元素的位置
  4879. ----------[0] 上 top
  4880. ----------[1] 左 left
  4881. * @return {object} 命名空间
  4882. */
  4883. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4884. //循环所有的图标
  4885. for (var i = 0; i < childs.length; i++) {
  4886. //判断有没有和该图标诶子重叠的元素
  4887. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4888. return childs[i]; //如果有返回
  4889. }
  4890. }
  4891. }
  4892. //#endregion
  4893. //#endregion
  4894. //#region 桌面应用
  4895. /**
  4896. * 打开应用
  4897. *
  4898. * @param {string} 类型
  4899. -----------------Disk 网盘系统
  4900. -----------------PDisk 学习系统网盘
  4901. -----------------Poto 图片
  4902. -----------------Video 视频
  4903. -----------------Music 音乐
  4904. -----------------Word word
  4905. -----------------Excel excel
  4906. -----------------Txt 记事本
  4907. -----------------PB 学习系统
  4908. -----------------Blog 朋友圈系统
  4909. -----------------FTP ftp系统
  4910. -----------------Group 好友群
  4911. -----------------SY 首页系统
  4912. -----------------Set 个人设置
  4913. -----------------XSet 系统设置
  4914. -----------------App 我们所有的app
  4915. -----------------BC c.1473.cn 平台
  4916. -----------------CWeb d.1473.cn 变成平台
  4917. -----------------其他的外联系统 我们统一用iframe打开
  4918. * @param {array} 类型
  4919. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4920. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4921. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4922. 如果第一个参数为其他,则无第二个参数
  4923. * @returns {array}
  4924. */
  4925. window.addEventListener('message', function (e) { // 监听 message 事件
  4926. // alert(e.data.type);
  4927. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4928. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4929. //3是展示全部阶段 2学生 1老师 4专家
  4930. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4931. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4932. //3是展示全部阶段 2学生 1老师 4专家
  4933. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4934. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4935. //3是展示全部阶段 2学生 1老师 4专家
  4936. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4937. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4938. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4939. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4940. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4941. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4942. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4943. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4944. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4945. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4946. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4947. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4948. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4949. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4950. //3是展示全部阶段 2学生 1老师 4专家
  4951. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4952. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4953. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4954. U.MD.D.I.selectUser();
  4955. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4956. var _formel = document.getElementById("study");
  4957. U.UF.F.windowZooming(_formel);
  4958. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4959. var _formel = document.getElementById("studyDetail");
  4960. U.UF.F.windowZooming(_formel);
  4961. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4962. var _formel = document.getElementById("studyDetail");
  4963. U.UF.F.windowZooming(_formel);
  4964. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4965. var _formel = document.getElementById("studentStudy");
  4966. U.UF.F.windowZooming(_formel);
  4967. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4968. // var _formel = document.getElementById("study");
  4969. //如果最大化了,那么就把他缩小
  4970. // if (_formel.ismaximize) {
  4971. // return;
  4972. // }
  4973. // U.UF.F.windowZooming(_formel);
  4974. // U.UF.F.topWindow(_formel);
  4975. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4976. // var _formel = document.getElementById("studyDetail");
  4977. //如果最大化了,那么就把他缩小
  4978. // if (_formel.ismaximize) {
  4979. // return;
  4980. // }
  4981. // U.UF.F.windowZooming(_formel);
  4982. // U.UF.F.topWindow(_formel);
  4983. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4984. // var _formel = document.getElementById("studentStudy");
  4985. // if (_formel.ismaximize) {
  4986. // return;
  4987. // }
  4988. // U.UF.F.windowZooming(_formel);
  4989. // U.UF.F.topWindow(_formel);
  4990. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4991. var _formel = document.getElementById("study");
  4992. // if (_formel.ismaximize) {
  4993. // return;
  4994. // }
  4995. // U.UF.F.windowZooming(_formel);
  4996. U.UF.F.topWindow(_formel);
  4997. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4998. var _formel = document.getElementById("studentIndex");
  4999. U.UF.F.windowZooming(_formel);
  5000. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5001. var _formel = document.getElementById("studyDetailS");
  5002. U.UF.F.windowZooming(_formel);
  5003. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5004. var _formel = document.getElementById("studioIndex");
  5005. U.UF.F.windowZooming(_formel);
  5006. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5007. var _formel = document.getElementById("studyDetailStudio");
  5008. U.UF.F.windowZooming(_formel);
  5009. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5010. var _formel = document.getElementById("studyDetailStudio");
  5011. U.UF.F.windowZooming(_formel);
  5012. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5013. var _formel = document.getElementById("studyDetailNT");
  5014. U.UF.F.windowZooming(_formel);
  5015. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5016. var _formel = document.getElementById("studyDetailS");
  5017. U.UF.F.windowZooming(_formel);
  5018. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5019. var _formel = document.getElementById("studyDetailS");
  5020. U.UF.F.topWindow(_formel);
  5021. } else if (e.data.tools && e.data.tools == "1") {
  5022. // U.MD.D.I.openApplication("whiteboard")
  5023. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5024. } else if (e.data.tools && e.data.tools == "2") {
  5025. U.MD.D.I.openApplication("note")
  5026. } else if (e.data.tools && e.data.tools == "3") {
  5027. // U.MD.D.I.openApplication("mind")
  5028. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "4") {
  5030. U.MD.D.I.openApplication("investigation")
  5031. } else if (e.data.tools && e.data.tools == "6") {
  5032. // U.MD.D.I.openApplication("doc")
  5033. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5034. } else if (e.data.tools && e.data.tools == "7") {
  5035. // U.MD.D.I.openApplication("mindNetwork")
  5036. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "8") {
  5038. U.MD.D.I.openApplication("library")
  5039. } else if (e.data.tools && e.data.tools == "17") {
  5040. U.MD.D.I.openApplication("stuLibrary")
  5041. } else if (e.data.tools && e.data.tools == "18") {
  5042. U.MD.D.I.openApplication("train")
  5043. } else if (e.data.tools && e.data.tools == "21") {
  5044. U.MD.D.I.openApplication("program")
  5045. } else if (e.data.tools && e.data.tools == "22") {
  5046. U.MD.D.I.openApplication("AIprogram2")
  5047. } else if (e.data.tools && e.data.tools == "23") {
  5048. U.MD.D.I.openApplication("Pythonprogram")
  5049. } else if (e.data.tools && e.data.tools == "24") {
  5050. U.MD.D.I.openApplication("AIprogram")
  5051. } else if (e.data.tools && e.data.tools == "25") {
  5052. U.MD.D.I.openApplication("sys")
  5053. } else if (e.data.tools && e.data.tools == "26") {
  5054. // U.MD.D.I.openApplication("courseDesign")
  5055. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5056. } else if (e.data.tools && e.data.tools == "31") {
  5057. U.MD.D.I.openApplication("netWorkPanel")
  5058. } else if (e.data.tools && e.data.tools == "32") {
  5059. U.MD.D.I.openApplication("codeEdit")
  5060. } else if (e.data.tools && e.data.tools == "57") {
  5061. U.MD.D.I.openApplication("CocoPi")
  5062. } else if (e.data.tools && e.data.tools == "63") {
  5063. U.MD.D.I.openApplication("Wood")
  5064. } else if (e.data.tools && e.data.tools == "58") {
  5065. U.MD.D.I.openApplication("car")
  5066. } else if (e.data.tools && e.data.tools == "59") {
  5067. U.MD.D.I.openApplication("lineSearch")
  5068. } else if (e.data.tools && e.data.tools == "60") {
  5069. U.MD.D.I.openApplication("deepLearning")
  5070. } else if (e.data.tools && e.data.tools == "61") {
  5071. U.MD.D.I.openApplication("allHistory")
  5072. } else if (e.data.tools && e.data.tools == "28") {
  5073. U.MD.D.I.openApplication("translation")
  5074. } else if (e.data.tools && e.data.tools == "37") {
  5075. U.MD.D.I.openApplication("mohe")
  5076. } else if (e.data.tools && e.data.tools == "38") {
  5077. U.MD.D.I.openApplication("24game")
  5078. } else if (e.data.tools && e.data.tools == "39") {
  5079. U.MD.D.I.openApplication("GeoGebra")
  5080. } else if (e.data.tools && e.data.tools == "43") {
  5081. U.MD.D.I.openApplication("studentEvaluate")
  5082. } else if (e.data.tools && e.data.tools == "44") {
  5083. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5084. } else if (e.data.tools && e.data.tools == "46") {
  5085. U.MD.D.I.openApplication("project")
  5086. } else if (e.data.tools && e.data.tools == "71") {
  5087. U.MD.D.I.openApplication("aigptCourse")
  5088. } else if (e.data.tools && e.data.tools == "72") {
  5089. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5090. } else if (e.data.tools && e.data.tools == "1s") {
  5091. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5092. } else if (e.data.tools && e.data.tools == "3s") {
  5093. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5094. } else if (e.data.tools && e.data.tools == "6s") {
  5095. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5096. } else if (e.data.tools && e.data.tools == "1studio") {
  5097. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5098. } else if (e.data.tools && e.data.tools == "3studio") {
  5099. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5100. } else if (e.data.tools && e.data.tools == "6studio") {
  5101. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5102. } else if (e.data.tools && e.data.tools == "3y") {
  5103. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5104. } else if (e.data.tools && e.data.tools == "1y") {
  5105. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5106. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5107. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5108. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5109. U.MD.D.I.openApplication("AIAnalyse")
  5110. } else if (e.data.tools && e.data.tools == "1teacher") {
  5111. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5112. } else if (e.data.tools && e.data.tools == "3teacher") {
  5113. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5114. } else if (e.data.tools && e.data.tools == "7teacher") {
  5115. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5116. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5117. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5118. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5119. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5120. } else if (e.data.tools && e.data.tools == "1E") {
  5121. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5122. } else if (e.data.tools && e.data.tools == "3E") {
  5123. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5124. } else if (e.data.tools && e.data.tools == "57y") {
  5125. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5126. } else if (e.data.tools && e.data.tools == "57u") {
  5127. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5128. } else if (e.data.tools && e.data.tools == "57teacher") {
  5129. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5130. } else if (e.data.tools && e.data.tools == "64") {
  5131. U.MD.D.I.openApplication("AIChat")
  5132. } else if (e.data.tools && e.data.tools == "66") {
  5133. U.MD.D.I.openApplication("formulaEdi")
  5134. } else if (e.data.tools && e.data.tools == "67") {
  5135. U.MD.D.I.openApplication("molStr")
  5136. } else if (e.data.tools && e.data.tools == "68") {
  5137. U.MD.D.I.openApplication("timeAxis")
  5138. } else if (e.data.tools && e.data.tools == "openCourse") {
  5139. let _data = {
  5140. typea: e.data.typea || '',
  5141. typeb: e.data.typeb || '',
  5142. typed: e.data.typed || '',
  5143. }
  5144. U.MD.D.I.openInApplication("index", _data)
  5145. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5146. let _data = {
  5147. classid: e.data.classid || '',
  5148. }
  5149. U.MD.D.I.openInApplication("dataClass", _data)
  5150. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5151. let _data = {
  5152. cid: e.data.cid || '',
  5153. gid: e.data.gid || '',
  5154. }
  5155. U.MD.D.I.openInApplication("opencCscl", _data)
  5156. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5157. U.MD.D.I.openApplication("dataBoardTest")
  5158. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5159. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5160. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5161. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5162. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5163. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5164. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5165. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5166. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5167. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5168. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5169. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5170. }else if (e.data.tools && e.data.tools == "loginSz") {
  5171. U.MD.D.I.openInApplication("loginSz")
  5172. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5173. if($('#classroom_observation_board')[0]){
  5174. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5175. }
  5176. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5177. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5178. if($('#classroom_observation_ob_comment')[0]){
  5179. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5180. }
  5181. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5182. }else if (e.data.tools && e.data.tools == "logout"){
  5183. U.MD.U.LO.logoutSystem()
  5184. }else if (e.data.tools && e.data.tools == "getLogin"){
  5185. let _iframe = $('#UI_Login')[0];
  5186. if (_iframe) {
  5187. var userInfo = US.userInfo;
  5188. var type = 2
  5189. if(userInfo && userInfo.userid){
  5190. type = 1
  5191. }
  5192. _contentWindow = _iframe.contentWindow;
  5193. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5194. }
  5195. }
  5196. });
  5197. U.MD.D.I.selectUser = function () {
  5198. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5199. if (res.value[0].length > 0) {
  5200. US.userInfo = res.value[0][0];
  5201. $(".userName")[0].innerHTML = US.userInfo.username;
  5202. }
  5203. }, [], { "type": "GET", "withCredentials": true });
  5204. }
  5205. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5206. var _userinfo = US.userInfo, //登录用户信息
  5207. _userid = US.userInfo.userid, //登录用户id
  5208. _oid = _userinfo.organizeid,
  5209. _type = US.userInfo.type,
  5210. _org = US.userInfo.org,
  5211. _role = US.userInfo.role,
  5212. _classId = US.userInfo.classid;
  5213. if (_type == 4) {
  5214. tType = 4
  5215. }
  5216. switch (str) {
  5217. case "studyDetailNT": //无终端模式
  5218. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5219. setTimeout(() => {
  5220. U.MD.U.L.login();
  5221. }, 2000);
  5222. } else {
  5223. _formdiv = new U.UF.UI.form(
  5224. "课程详情",
  5225. $$("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 }), {
  5226. "id": "studyDetailNT",
  5227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _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); } }
  5233. break;
  5234. }
  5235. case "studyDetail":
  5236. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5237. setTimeout(() => {
  5238. U.MD.U.L.login();
  5239. }, 2000);
  5240. } else {
  5241. _formdiv = new U.UF.UI.form(
  5242. "课程详情",
  5243. $$("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 }), {
  5244. "id": "studyDetail",
  5245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5251. break;
  5252. }
  5253. case "studyDetailTrain":
  5254. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5255. setTimeout(() => {
  5256. U.MD.U.L.login();
  5257. }, 2000);
  5258. } else {
  5259. _formdiv = new U.UF.UI.form(
  5260. "培训详情",
  5261. $$("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 }), {
  5262. "id": "studyDetailTrain",
  5263. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _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); } }
  5269. break;
  5270. }
  5271. case "studyDetailS":
  5272. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5273. setTimeout(() => {
  5274. U.MD.U.L.login();
  5275. }, 2000);
  5276. } else {
  5277. _formdiv = new U.UF.UI.form(
  5278. "项目详情",
  5279. $$("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 }), {
  5280. "id": "studyDetailS",
  5281. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5287. break;
  5288. }
  5289. case "studyDetailStudio":
  5290. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5291. setTimeout(() => {
  5292. U.MD.U.L.login();
  5293. }, 2000);
  5294. } else {
  5295. _formdiv = new U.UF.UI.form(
  5296. "工作详情",
  5297. $$("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 }), {
  5298. "id": "studyDetailStudio",
  5299. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _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); } }
  5305. break;
  5306. }
  5307. case "studyDetailS5":
  5308. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5309. setTimeout(() => {
  5310. U.MD.U.L.login();
  5311. }, 2000);
  5312. } else {
  5313. _formdiv = new U.UF.UI.form(
  5314. "项目详情",
  5315. $$("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 }), {
  5316. "id": "studyDetailS",
  5317. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. }
  5325. case "studyDetailGM":
  5326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5327. setTimeout(() => {
  5328. U.MD.U.L.login();
  5329. }, 2000);
  5330. } else {
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程详情",
  5333. $$("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 }), {
  5334. "id": "studyDetail",
  5335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5341. break;
  5342. }
  5343. case "hanUrl":
  5344. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5345. setTimeout(() => {
  5346. U.MD.U.L.login();
  5347. }, 2000);
  5348. } else {
  5349. _formdiv = new U.UF.UI.form(
  5350. "汉字宫",
  5351. $$("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" }), {
  5352. "id": "hanUrl",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. }
  5361. case "index":
  5362. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5363. setTimeout(() => {
  5364. U.MD.U.L.login();
  5365. }, 2000);
  5366. } else {
  5367. _formdiv = new U.UF.UI.form(
  5368. "课程中心",
  5369. $$("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 }), {
  5370. "id": "study",
  5371. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5377. break;
  5378. }
  5379. case "dataClass":
  5380. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5381. setTimeout(() => {
  5382. U.MD.U.L.login();
  5383. }, 2000);
  5384. } else {
  5385. _formdiv = new U.UF.UI.form(
  5386. "数据报告",
  5387. $$("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 }), {
  5388. "id": "dataClass",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. }
  5397. case "opencCscl":
  5398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5399. setTimeout(() => {
  5400. U.MD.U.L.login();
  5401. }, 2000);
  5402. } else {
  5403. _formdiv = new U.UF.UI.form(
  5404. "协同建构",
  5405. $$("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 }), {
  5406. "id": "futureClass",
  5407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. _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); } }
  5413. break;
  5414. }
  5415. case "openCourseUpdate":
  5416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5417. setTimeout(() => {
  5418. U.MD.U.L.login();
  5419. }, 2000);
  5420. } else {
  5421. _formdiv = new U.UF.UI.form(
  5422. "课程管理",
  5423. $$("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 }), {
  5424. "id": "openCourseUpdate",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. break;
  5431. }
  5432. case "openNewCourseUpdate":
  5433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5434. setTimeout(() => {
  5435. U.MD.U.L.login();
  5436. }, 2000);
  5437. } else {
  5438. _formdiv = new U.UF.UI.form(
  5439. "课程管理",
  5440. $$("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 }), {
  5441. "id": "openCourseUpdate",
  5442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. break;
  5448. }
  5449. case "openCourseEUpdate":
  5450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5451. setTimeout(() => {
  5452. U.MD.U.L.login();
  5453. }, 2000);
  5454. } else {
  5455. _formdiv = new U.UF.UI.form(
  5456. "课程管理",
  5457. $$("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 }), {
  5458. "id": "openCourseUpdate",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. break;
  5465. }
  5466. case "openCourseAiUpdate":
  5467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5468. setTimeout(() => {
  5469. U.MD.U.L.login();
  5470. }, 2000);
  5471. } else {
  5472. _formdiv = new U.UF.UI.form(
  5473. "课程管理",
  5474. $$("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 }), {
  5475. "id": "openCourseUpdate",
  5476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. break;
  5482. }
  5483. case "openCourseAiUpdate2":
  5484. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5485. setTimeout(() => {
  5486. U.MD.U.L.login();
  5487. }, 2000);
  5488. } else {
  5489. _formdiv = new U.UF.UI.form(
  5490. "课程管理",
  5491. $$("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 }), {
  5492. "id": "openCourseUpdate",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. break;
  5499. }
  5500. case "openCourseNewUpdate":
  5501. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5502. setTimeout(() => {
  5503. U.MD.U.L.login();
  5504. }, 2000);
  5505. } else {
  5506. _formdiv = new U.UF.UI.form(
  5507. "课程管理",
  5508. $$("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 }), {
  5509. "id": "openCourseUpdate",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. break;
  5516. }
  5517. case "inviteLoginSz":
  5518. _formdiv = new U.UF.UI.form(
  5519. "随机码登录",
  5520. $$("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 }), {
  5521. "id": "loginSz",
  5522. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. break;
  5528. case "loginSz":
  5529. _formdiv = new U.UF.UI.form(
  5530. "教师登录",
  5531. $$("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" }), {
  5532. "id": "loginSz",
  5533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. break;
  5539. case "teacher":
  5540. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5541. setTimeout(() => {
  5542. U.MD.U.L.login();
  5543. }, 2000);
  5544. } else {
  5545. _formdiv = new U.UF.UI.form(
  5546. "教师管理",
  5547. $$("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 }), {
  5548. "id": "teacher",
  5549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. break;
  5555. }
  5556. case "dataBoardSZArea":
  5557. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5558. setTimeout(() => {
  5559. U.MD.U.L.login();
  5560. }, 2000);
  5561. } else {
  5562. _formdiv = new U.UF.UI.form(
  5563. "综合数据看板",
  5564. $$("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 }), {
  5565. "id": "dataBoardSZArea",
  5566. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //创建窗体
  5571. break;
  5572. }
  5573. case "dataBoardSZCity":
  5574. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5575. setTimeout(() => {
  5576. U.MD.U.L.login();
  5577. }, 2000);
  5578. } else {
  5579. _formdiv = new U.UF.UI.form(
  5580. "综合数据看板",
  5581. $$("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 }), {
  5582. "id": "dataBoardSZCity",
  5583. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. break;
  5589. }
  5590. case "classroom_observation_board":
  5591. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5592. setTimeout(() => {
  5593. U.MD.U.L.login();
  5594. }, 2000);
  5595. } else {
  5596. _formdiv = new U.UF.UI.form(
  5597. "课堂观察",
  5598. $$("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 }), {
  5599. "id": "classroom_observation_board",
  5600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. break;
  5606. }
  5607. case "classroom_observation_ob_comment":
  5608. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5609. setTimeout(() => {
  5610. U.MD.U.L.login();
  5611. }, 2000);
  5612. } else {
  5613. _formdiv = new U.UF.UI.form(
  5614. "课堂审核",
  5615. $$("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 }), {
  5616. "id": "classroom_observation_ob_comment",
  5617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5618. "onresize": function () { }
  5619. }, {
  5620. closecallback: function () { }
  5621. }, { "style": { "height": "36px" } }).form; //创建窗体
  5622. break;
  5623. }
  5624. case "gptConfig":
  5625. _formdiv = new U.UF.UI.form(
  5626. data.name ? data.name : "应用中心",
  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": data.url }), {
  5628. "id": "gptConfig" + data.id,
  5629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5630. "onresize": function () { }
  5631. }, {
  5632. closecallback: function () { }
  5633. }, { "style": { "height": "36px" } }).form; //创建窗体
  5634. break;
  5635. }
  5636. }
  5637. U.MD.D.I.openApplication = function (str, obj, info) {
  5638. obj = obj || {};
  5639. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5640. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5641. _userinfo = US.userInfo, //登录用户信息
  5642. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5643. _oid = obj.organizeid || _userinfo.organizeid,
  5644. _type = US.userInfo.type,
  5645. _org = obj.org || US.userInfo.org,
  5646. _role = US.userInfo.role,
  5647. _classId = US.userInfo.classid,
  5648. _TscreenType = 1
  5649. _screenType = 2,
  5650. _SscreenType = 3;
  5651. let iframeBool = true
  5652. if(U.UF.UI.form.allForm[str]){
  5653. iframeBool = false
  5654. }
  5655. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5656. return;
  5657. }
  5658. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5659. if(opArray.includes(str)){
  5660. let _str = str
  5661. if(str == 'appStore'){
  5662. _str = "cocoFlow"
  5663. }else if(str == "futureClass"){
  5664. _str = "cocoNote"
  5665. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5666. _str = "IntelligentForm"
  5667. }else if(str == "testStudent" || str == "testStudentSies"){
  5668. _str = "TeacherCenter"
  5669. }
  5670. try {
  5671. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5672. } catch (error) {
  5673. console.log(error);
  5674. }
  5675. }
  5676. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5677. switch (str) {
  5678. case "studnetProject": //好友打开
  5679. _formdiv = new U.UF.UI.form(
  5680. "我的项目",
  5681. $$("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 }), {
  5682. "id": "studnetProject",
  5683. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _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); } }
  5689. break;
  5690. case "studentEvaluate": //好友打开
  5691. _formdiv = new U.UF.UI.form(
  5692. "我的评价",
  5693. $$("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 }), {
  5694. "id": "studentEvaluate",
  5695. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. _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); } }
  5701. break;
  5702. case "my":
  5703. _formdiv = new U.UF.UI.form(
  5704. "我的资料",
  5705. $$("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 }), {
  5706. "id": "my",
  5707. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _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); } }
  5713. break;
  5714. case "program":
  5715. _formdiv = new U.UF.UI.form(
  5716. "编程平台",
  5717. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5718. "id": "program",
  5719. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _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); } }
  5725. break;
  5726. case "library":
  5727. _formdiv = new U.UF.UI.form(
  5728. "素材库",
  5729. $$("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 }), {
  5730. "id": "library",
  5731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "whiteboard":
  5739. _formdiv = new U.UF.UI.form(
  5740. "电子白板",
  5741. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5742. "id": "whiteboard",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "investigation":
  5751. _formdiv = new U.UF.UI.form(
  5752. "问卷调查",
  5753. $$("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 }), {
  5754. "id": "investigation",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "note":
  5763. _formdiv = new U.UF.UI.form(
  5764. "便签分类",
  5765. $$("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 }), {
  5766. "id": "note",
  5767. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. // case "score":
  5775. // _formdiv = new U.UF.UI.form(
  5776. // "量规评分",
  5777. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5778. // "id": "score",
  5779. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. // "onresize": function() {}
  5781. // }, {
  5782. // closecallback: function() {}
  5783. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. // _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); } }
  5785. // break;
  5786. case "mind":
  5787. _formdiv = new U.UF.UI.form(
  5788. "思维导图",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5790. "id": "mind",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5797. break;
  5798. case "doc":
  5799. // U.MD.D.I.isRoom();
  5800. _formdiv = new U.UF.UI.form(
  5801. "协同文档",
  5802. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5803. "id": "doc",
  5804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5810. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5811. // })
  5812. _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); } }
  5813. break;
  5814. case "studentStudy":
  5815. _formdiv = new U.UF.UI.form(
  5816. "课程中心",
  5817. $$("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
  5818. "id": "studentStudy",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _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); } }
  5825. break;
  5826. case "train": //好友打开
  5827. _formdiv = new U.UF.UI.form(
  5828. "训练平台",
  5829. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5830. "id": "train",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _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); } }
  5837. break;
  5838. case "mindNetwork": //好友打开
  5839. _formdiv = new U.UF.UI.form(
  5840. "思维网格",
  5841. $$("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 }), {
  5842. "id": "mindNetwork",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _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); } }
  5849. break;
  5850. case "studentClassRoom": //好友打开
  5851. _formdiv = new U.UF.UI.form(
  5852. "实时课堂",
  5853. $$("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 }), {
  5854. "id": "studentClassRoom",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. setTimeout(() => {
  5862. U.UF.F.windowZooming(_formdiv)
  5863. }, 0);
  5864. break;
  5865. }
  5866. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5867. switch (str) {
  5868. case "studnetProject": //好友打开
  5869. _formdiv = new U.UF.UI.form(
  5870. "我的项目",
  5871. $$("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 }), {
  5872. "id": "studnetProject",
  5873. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _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); } }
  5879. break;
  5880. case "studentEvaluate": //好友打开
  5881. _formdiv = new U.UF.UI.form(
  5882. "我的评价",
  5883. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5884. "id": "studentEvaluate",
  5885. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. _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); } }
  5891. break;
  5892. case "my":
  5893. _formdiv = new U.UF.UI.form(
  5894. "我的资料",
  5895. $$("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 }), {
  5896. "id": "my",
  5897. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _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); } }
  5903. break;
  5904. case "program":
  5905. _formdiv = new U.UF.UI.form(
  5906. "编程平台",
  5907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5908. "id": "program",
  5909. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "library":
  5917. _formdiv = new U.UF.UI.form(
  5918. "素材库",
  5919. $$("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 }), {
  5920. "id": "library",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. case "whiteboard":
  5929. _formdiv = new U.UF.UI.form(
  5930. "电子白板",
  5931. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5932. "id": "whiteboard",
  5933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //创建窗体
  5938. _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); } }
  5939. break;
  5940. case "investigation":
  5941. _formdiv = new U.UF.UI.form(
  5942. "问卷调查",
  5943. $$("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 }), {
  5944. "id": "investigation",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. _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); } }
  5951. break;
  5952. case "note":
  5953. _formdiv = new U.UF.UI.form(
  5954. "便签分类",
  5955. $$("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 }), {
  5956. "id": "note",
  5957. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //创建窗体
  5962. _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); } }
  5963. break;
  5964. // case "score":
  5965. // _formdiv = new U.UF.UI.form(
  5966. // "量规评分",
  5967. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5968. // "id": "score",
  5969. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5970. // "onresize": function() {}
  5971. // }, {
  5972. // closecallback: function() {}
  5973. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. // _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); } }
  5975. // break;
  5976. case "mind":
  5977. _formdiv = new U.UF.UI.form(
  5978. "思维导图",
  5979. $$("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"
  5980. "id": "mind",
  5981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5987. break;
  5988. case "doc":
  5989. // U.MD.D.I.isRoom();
  5990. _formdiv = new U.UF.UI.form(
  5991. "协同文档",
  5992. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5993. "id": "doc",
  5994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6000. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6001. })
  6002. _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); } }
  6003. break;
  6004. case "train": //好友打开
  6005. _formdiv = new U.UF.UI.form(
  6006. "训练平台",
  6007. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6008. "id": "train",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "studentStudy":
  6017. _formdiv = new U.UF.UI.form(
  6018. "课程中心",
  6019. $$("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
  6020. "id": "studentStudy",
  6021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "mindNetwork": //好友打开
  6029. _formdiv = new U.UF.UI.form(
  6030. "思维网格",
  6031. $$("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 }), {
  6032. "id": "mindNetwork",
  6033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "studentClassRoom": //好友打开
  6041. _formdiv = new U.UF.UI.form(
  6042. "实时课堂",
  6043. $$("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 }), {
  6044. "id": "studentClassRoom",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. setTimeout(() => {
  6052. U.UF.F.windowZooming(_formdiv)
  6053. }, 0);
  6054. break;
  6055. }
  6056. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6057. //选择应用处理
  6058. switch (str) {
  6059. case "project": //好友打开
  6060. _formdiv = new U.UF.UI.form(
  6061. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6062. $$("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 }), {
  6063. "id": "project",
  6064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //创建窗体
  6069. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6070. break;
  6071. case "student":
  6072. _formdiv = new U.UF.UI.form(
  6073. "学生管理",
  6074. $$("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 }), {
  6075. "id": "student",
  6076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //创建窗体
  6081. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6082. break;
  6083. case "evaluate":
  6084. _formdiv = new U.UF.UI.form(
  6085. "学生评价",
  6086. $$("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 }), {
  6087. "id": "evaluate",
  6088. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6094. break;
  6095. case "sys":
  6096. _formdiv = new U.UF.UI.form(
  6097. "目标管理",
  6098. $$("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 }), {
  6099. "id": "sys",
  6100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6106. break;
  6107. case "courseDesign":
  6108. _formdiv = new U.UF.UI.form(
  6109. "项目设计",
  6110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6111. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6118. break;
  6119. case "program":
  6120. _formdiv = new U.UF.UI.form(
  6121. "编程平台",
  6122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6123. "id": "program",
  6124. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6130. break;
  6131. case "class":
  6132. _formdiv = new U.UF.UI.form(
  6133. "班级管理",
  6134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6135. "id": "class",
  6136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6142. break;
  6143. case "Grade":
  6144. _formdiv = new U.UF.UI.form(
  6145. "年级管理",
  6146. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6147. "id": "Grade",
  6148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6154. break;
  6155. case "teacherOffice":
  6156. _formdiv = new U.UF.UI.form(
  6157. "教研室",
  6158. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6159. "id": "teacherOffice",
  6160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6166. break;
  6167. case "my":
  6168. _formdiv = new U.UF.UI.form(
  6169. "我的资料",
  6170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6171. "id": "my",
  6172. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6178. break;
  6179. case "notice":
  6180. _formdiv = new U.UF.UI.form(
  6181. "通知公告",
  6182. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6183. "id": "notice",
  6184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6190. break;
  6191. case "library":
  6192. _formdiv = new U.UF.UI.form(
  6193. "素材库",
  6194. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6195. "id": "library",
  6196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6202. break;
  6203. case "whiteboard":
  6204. _formdiv = new U.UF.UI.form(
  6205. "电子白板",
  6206. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6207. "id": "whiteboard",
  6208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6214. break;
  6215. case "investigation":
  6216. _formdiv = new U.UF.UI.form(
  6217. "问卷调查",
  6218. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6219. "id": "investigation",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6226. break;
  6227. case "note":
  6228. _formdiv = new U.UF.UI.form(
  6229. "便签分类",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6231. "id": "note",
  6232. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6238. break;
  6239. // case "score":
  6240. // _formdiv = new U.UF.UI.form(
  6241. // "量规评分",
  6242. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6243. // "id": "score",
  6244. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6245. // "onresize": function() {}
  6246. // }, {
  6247. // closecallback: function() {}
  6248. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6250. // break;
  6251. case "mind":
  6252. _formdiv = new U.UF.UI.form(
  6253. "思维导图",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6255. "id": "mind",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6262. break;
  6263. case "doc":
  6264. // U.MD.D.I.isRoom();
  6265. _formdiv = new U.UF.UI.form(
  6266. "协同文档",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6268. "id": "doc",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6275. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6276. })
  6277. _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); } }
  6278. break;
  6279. case "study":
  6280. _formdiv = new U.UF.UI.form(
  6281. "课程中心",
  6282. $$("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
  6283. "id": "study",
  6284. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6290. break;
  6291. case "mindNetwork": //好友打开
  6292. _formdiv = new U.UF.UI.form(
  6293. "思维网格",
  6294. $$("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 }), {
  6295. "id": "mindNetwork",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6302. break;
  6303. case "train": //好友打开
  6304. _formdiv = new U.UF.UI.form(
  6305. "训练平台",
  6306. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6307. "id": "mindNetwork",
  6308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6314. break;
  6315. case "teacherClassRoom": //好友打开
  6316. _formdiv = new U.UF.UI.form(
  6317. "实时课堂",
  6318. $$("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 }), {
  6319. "id": "teacherClassRoom",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6326. setTimeout(() => {
  6327. U.UF.F.windowZooming(_formdiv)
  6328. }, 0);
  6329. break;
  6330. }
  6331. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6332. switch (str) {
  6333. case "project": //好友打开
  6334. _formdiv = new U.UF.UI.form(
  6335. "课程管理",
  6336. $$("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 }), {
  6337. "id": "project",
  6338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6339. "onresize": function () { }
  6340. }, {
  6341. closecallback: function () { }
  6342. }, { "style": { "height": "36px" } }).form; //创建窗体
  6343. _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); } }
  6344. break;
  6345. case "evaluate":
  6346. _formdiv = new U.UF.UI.form(
  6347. "学生评价",
  6348. $$("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 }), {
  6349. "id": "evaluate",
  6350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6351. "onresize": function () { }
  6352. }, {
  6353. closecallback: function () { }
  6354. }, { "style": { "height": "36px" } }).form; //创建窗体
  6355. _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); } }
  6356. break;
  6357. case "notice":
  6358. _formdiv = new U.UF.UI.form(
  6359. "通知公告",
  6360. $$("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 }), {
  6361. "id": "notice",
  6362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6363. "onresize": function () { }
  6364. }, {
  6365. closecallback: function () { }
  6366. }, { "style": { "height": "36px" } }).form; //创建窗体
  6367. _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); } }
  6368. break;
  6369. case "stuLibrary":
  6370. _formdiv = new U.UF.UI.form(
  6371. "学习资料",
  6372. $$("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 }), {
  6373. "id": "stuLibrary",
  6374. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //创建窗体
  6379. _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); } }
  6380. break;
  6381. case "program":
  6382. _formdiv = new U.UF.UI.form(
  6383. "编程平台",
  6384. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6385. "id": "program",
  6386. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //创建窗体
  6391. _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); } }
  6392. break;
  6393. case "whiteboard":
  6394. _formdiv = new U.UF.UI.form(
  6395. "电子白板",
  6396. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6397. "id": "whiteboard",
  6398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //创建窗体
  6403. _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); } }
  6404. break;
  6405. case "investigation":
  6406. _formdiv = new U.UF.UI.form(
  6407. "问卷调查",
  6408. $$("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 }), {
  6409. "id": "investigation",
  6410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //创建窗体
  6415. _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); } }
  6416. break;
  6417. case "mind":
  6418. _formdiv = new U.UF.UI.form(
  6419. "思维导图",
  6420. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6421. "id": "mind",
  6422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //创建窗体
  6427. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6428. break;
  6429. case "doc":
  6430. // U.MD.D.I.isRoom();
  6431. _formdiv = new U.UF.UI.form(
  6432. "协同文档",
  6433. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6434. "id": "doc",
  6435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6436. "onresize": function () { }
  6437. }, {
  6438. closecallback: function () { }
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6441. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6442. })
  6443. _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); } }
  6444. break;
  6445. case "study":
  6446. _formdiv = new U.UF.UI.form(
  6447. "课程中心",
  6448. $$("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
  6449. "id": "study",
  6450. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6451. "onresize": function () { }
  6452. }, {
  6453. closecallback: function () { }
  6454. }, { "style": { "height": "36px" } }).form; //创建窗体
  6455. _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); } }
  6456. break;
  6457. case "mindNetwork": //好友打开
  6458. _formdiv = new U.UF.UI.form(
  6459. "思维网格",
  6460. $$("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 }), {
  6461. "id": "mindNetwork",
  6462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _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); } }
  6468. break;
  6469. case "train": //好友打开
  6470. _formdiv = new U.UF.UI.form(
  6471. "训练平台",
  6472. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6473. "id": "train",
  6474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. break;
  6481. case "sys":
  6482. _formdiv = new U.UF.UI.form(
  6483. "目标管理",
  6484. $$("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 }), {
  6485. "id": "sys",
  6486. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, { "style": { "height": "36px" } }).form; //创建窗体
  6491. _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); } }
  6492. break;
  6493. case "courseDesign":
  6494. _formdiv = new U.UF.UI.form(
  6495. "项目设计",
  6496. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6497. "id": "courseDesign",
  6498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6499. "onresize": function () { }
  6500. }, {
  6501. closecallback: function () { }
  6502. }, { "style": { "height": "36px" } }).form; //创建窗体
  6503. _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); } }
  6504. break;
  6505. }
  6506. } else if (!_type) {
  6507. switch (str) {
  6508. case "my":
  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 + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6512. "id": "my",
  6513. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6519. break;
  6520. }
  6521. }
  6522. switch (str) {
  6523. // AIprogram2 AI体验 aihub.cocorobo.cn
  6524. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6525. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6526. case "formulaEdi": //公式编辑
  6527. _formdiv = new U.UF.UI.form(
  6528. "公式编辑",
  6529. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6530. "id": "formulaEdi",
  6531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "molStr": //分子结构
  6539. _formdiv = new U.UF.UI.form(
  6540. "分子结构",
  6541. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6542. "id": "molStr",
  6543. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "timeAxis": //时间轴
  6551. _formdiv = new U.UF.UI.form(
  6552. "时间轴",
  6553. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6554. "id": "timeAxis",
  6555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. case "AIprogram2": //AI体验
  6563. _formdiv = new U.UF.UI.form(
  6564. "AI体验",
  6565. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6566. "id": "AIprogram2",
  6567. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _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); } }
  6573. break;
  6574. case "Pythonprogram": //python编程
  6575. _formdiv = new U.UF.UI.form(
  6576. "Python编程",
  6577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6578. "id": "Pythonprogram",
  6579. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "AIprogram": //ai编程
  6587. _formdiv = new U.UF.UI.form(
  6588. "AI编程平台",
  6589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6590. "id": "AIprogram",
  6591. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. _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); } }
  6597. break;
  6598. case "CocoPi": //CocoPi
  6599. _formdiv = new U.UF.UI.form(
  6600. "CocoPi",
  6601. $$("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" }), {
  6602. "id": "CocoPi",
  6603. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6604. "onresize": function () { }
  6605. }, {
  6606. closecallback: function () { }
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "Wood": //Wood
  6611. _formdiv = new U.UF.UI.form(
  6612. "海龟编程",
  6613. $$("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/" }), {
  6614. "id": "Wood",
  6615. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. case "car": //模拟驾驶
  6623. _formdiv = new U.UF.UI.form(
  6624. "模拟驾驶",
  6625. $$("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/" }), {
  6626. "id": "car",
  6627. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "lineSearch": //路径搜索
  6635. _formdiv = new U.UF.UI.form(
  6636. "路径搜索",
  6637. $$("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/" }), {
  6638. "id": "lineSearch",
  6639. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, { "style": { "height": "36px" } }).form; //创建窗体
  6644. _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); } }
  6645. break;
  6646. case "deepLearning": //深度学习
  6647. _formdiv = new U.UF.UI.form(
  6648. "深度学习",
  6649. $$("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/#" }), {
  6650. "id": "deepLearning",
  6651. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. _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); } }
  6657. break;
  6658. case "allHistory": //深度学习
  6659. _formdiv = new U.UF.UI.form(
  6660. "全历史",
  6661. $$("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/" }), {
  6662. "id": "allHistory",
  6663. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _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); } }
  6669. break;
  6670. case "chatPDF": //ai编程
  6671. _formdiv = new U.UF.UI.form(
  6672. "chatPDF",
  6673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6674. "id": "chatPDF",
  6675. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _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); } }
  6681. break;
  6682. case "resources": //国家教育
  6683. _formdiv = new U.UF.UI.form(
  6684. "国家教育",
  6685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6686. "id": "resources",
  6687. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6693. break;
  6694. case "codeEdit": //源码编辑
  6695. _formdiv = new U.UF.UI.form(
  6696. "源码编辑",
  6697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6698. "id": "codeEdit",
  6699. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6705. break; //
  6706. case "MindMap": //MindMap
  6707. _formdiv = new U.UF.UI.form(
  6708. "MindMap",
  6709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6710. "id": "MindMap",
  6711. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6717. break;
  6718. case "netWorkPanel": //netWorkPanel
  6719. _formdiv = new U.UF.UI.form(
  6720. "netWorkPanel",
  6721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6722. "id": "netWorkPanel",
  6723. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6729. break;
  6730. case "GeoGebra": //GeoGebra
  6731. _formdiv = new U.UF.UI.form(
  6732. "GeoGebra",
  6733. $$("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" }), {
  6734. "id": "GeoGebra",
  6735. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //创建窗体
  6740. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6741. break;
  6742. case "translation": //翻译
  6743. _formdiv = new U.UF.UI.form(
  6744. "翻译",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6746. "id": "translation",
  6747. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6753. break;
  6754. case "mohe": //魔盒
  6755. _formdiv = new U.UF.UI.form(
  6756. "魔盒识字",
  6757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6758. "id": "mohe",
  6759. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "24game": //24点
  6767. _formdiv = new U.UF.UI.form(
  6768. "24点",
  6769. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6770. "id": "24game",
  6771. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6777. break;
  6778. case "case":
  6779. _formdiv = new U.UF.UI.form(
  6780. "课程进展",
  6781. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6782. "id": "case",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "snf":
  6791. _formdiv = new U.UF.UI.form(
  6792. "赛诺梵",
  6793. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6794. "id": "snf",
  6795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6801. break;
  6802. case "hanFamily":
  6803. _formdiv = new U.UF.UI.form(
  6804. "汉字家族",
  6805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6806. "id": "hanFamily",
  6807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6813. break;
  6814. case "hanClassics":
  6815. _formdiv = new U.UF.UI.form(
  6816. "国学经典",
  6817. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6818. "id": "hanClassics",
  6819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6825. break;
  6826. case "hanTraining":
  6827. _formdiv = new U.UF.UI.form(
  6828. "笔画训练",
  6829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6830. "id": "hanTraining",
  6831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6837. break;
  6838. case "hanClass":
  6839. _formdiv = new U.UF.UI.form(
  6840. "书法课堂",
  6841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6842. "id": "hanClass",
  6843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6849. break;
  6850. case "han":
  6851. _formdiv = new U.UF.UI.form(
  6852. "汉字宫",
  6853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6854. "id": "han",
  6855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6856. "onresize": function () { }
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _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); } }
  6861. break;
  6862. case "projectGM": //课程管理
  6863. _formdiv = new U.UF.UI.form(
  6864. "课程管理",
  6865. $$("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 }), {
  6866. "id": "projectGM",
  6867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _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); } }
  6873. break;
  6874. case "studyGM": //课程中心
  6875. _formdiv = new U.UF.UI.form(
  6876. "课程中心",
  6877. $$("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
  6878. "id": "study",
  6879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _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); } }
  6885. break;
  6886. // studentGM
  6887. case "studentGM": //学生管理
  6888. _formdiv = new U.UF.UI.form(
  6889. "学生管理",
  6890. $$("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 }), {
  6891. "id": "studentGM",
  6892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. break;
  6899. case "evaluateGM": //学生评价
  6900. _formdiv = new U.UF.UI.form(
  6901. "学生评价",
  6902. $$("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 }), {
  6903. "id": "evaluateGM",
  6904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _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); } }
  6910. break;
  6911. // classGM
  6912. case "classGM": //班级管理
  6913. _formdiv = new U.UF.UI.form(
  6914. "班级管理",
  6915. $$("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 }), {
  6916. "id": "classGM",
  6917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6923. break;
  6924. // dataGM
  6925. case "dataGM":
  6926. _formdiv = new U.UF.UI.form(
  6927. "我的资料",
  6928. $$("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 }), {
  6929. "id": "dataGM",
  6930. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6931. "onresize": function () { }
  6932. }, {
  6933. closecallback: function () { }
  6934. }, { "style": { "height": "36px" } }).form; //创建窗体
  6935. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6936. break;
  6937. // caseGM
  6938. case "caseGM": //课程进展
  6939. _formdiv = new U.UF.UI.form(
  6940. "课程进展",
  6941. $$("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 }), {
  6942. "id": "caseGM",
  6943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, { "style": { "height": "36px" } }).form; //创建窗体
  6948. _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); } }
  6949. break;
  6950. // meterialGM
  6951. case "meterialGM": //素材库
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6955. "id": "meterialGM",
  6956. "style": { "width": "90%", "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/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6962. break;
  6963. // evaluateSGM
  6964. case "evaluateSGM": //我的评价
  6965. _formdiv = new U.UF.UI.form(
  6966. "我的评价",
  6967. $$("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 }), {
  6968. "id": "evaluateSGM",
  6969. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _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); } }
  6975. break;
  6976. case "jupyter": //jupyter
  6977. _formdiv = new U.UF.UI.form(
  6978. "jupyter",
  6979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6980. "id": "jupyter",
  6981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _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); } }
  6987. break;
  6988. case "number": //数字实验室
  6989. _formdiv = new U.UF.UI.form(
  6990. "数字实验室",
  6991. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6992. "id": "number",
  6993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _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); } }
  6999. break;
  7000. case "studentCourse": //项目管理 学生
  7001. _formdiv = new U.UF.UI.form(
  7002. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7003. $$("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 }), {
  7004. "id": "studentCourse",
  7005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _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); } }
  7011. break;
  7012. case "studentCourseS": //项目管理 老师
  7013. _formdiv = new U.UF.UI.form(
  7014. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7015. $$("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 }), {
  7016. "id": "studentCourseS",
  7017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _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); } }
  7023. break;
  7024. case "studentIndex": //项目中心
  7025. _formdiv = new U.UF.UI.form(
  7026. "项目中心",
  7027. $$("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 }), {
  7028. "id": "studentIndex",
  7029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //创建窗体
  7034. _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); } }
  7035. break;
  7036. case "CaseDesignS":
  7037. _formdiv = new U.UF.UI.form(
  7038. "项目进展",
  7039. $$("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 }), {
  7040. "id": "case",
  7041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _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); } }
  7047. break;
  7048. case "tcStudent": //腾讯学生管理
  7049. _formdiv = new U.UF.UI.form(
  7050. "学生管理",
  7051. $$("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 }), {
  7052. "id": "tcStudent",
  7053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _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); } }
  7059. break;
  7060. case "tcSchool": //腾讯学校管理
  7061. _formdiv = new U.UF.UI.form(
  7062. "学校管理",
  7063. $$("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 }), {
  7064. "id": "tcSchool",
  7065. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, { "style": { "height": "36px" } }).form; //创建窗体
  7070. _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); } }
  7071. break;
  7072. case "tcTeacher": //腾讯学校管理
  7073. _formdiv = new U.UF.UI.form(
  7074. "教师管理",
  7075. $$("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 }), {
  7076. "id": "tcTeacher",
  7077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, { "style": { "height": "36px" } }).form; //创建窗体
  7082. _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); } }
  7083. break;
  7084. case "teacher":
  7085. _formdiv = new U.UF.UI.form(
  7086. "教师管理",
  7087. $$("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 }), {
  7088. "id": "teacher",
  7089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, { "style": { "height": "36px" } }).form; //创建窗体
  7094. _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); } }
  7095. break;
  7096. case "tcData": //腾讯我的资料
  7097. _formdiv = new U.UF.UI.form(
  7098. "我的资料",
  7099. $$("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 }), {
  7100. "id": "tcData",
  7101. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7102. "onresize": function () { }
  7103. }, {
  7104. closecallback: function () { }
  7105. }, { "style": { "height": "36px" } }).form; //创建窗体
  7106. _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); } }
  7107. break;
  7108. case "tcNotice": //腾讯消息通知
  7109. _formdiv = new U.UF.UI.form(
  7110. "消息通知",
  7111. $$("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 }), {
  7112. "id": "tcNotice",
  7113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //创建窗体
  7118. _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); } }
  7119. break;
  7120. case "myReport": //好友打开
  7121. _formdiv = new U.UF.UI.form(
  7122. "我的评价",
  7123. $$("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 }), {
  7124. "id": "myReport",
  7125. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7126. "onresize": function () { }
  7127. }, {
  7128. closecallback: function () { }
  7129. }, { "style": { "height": "36px" } }).form; //创建窗体
  7130. _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); } }
  7131. break;
  7132. case "learnAna": //好友打开
  7133. _formdiv = new U.UF.UI.form(
  7134. "学习分析",
  7135. $$("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 }), {
  7136. "id": "learnAna",
  7137. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7138. "onresize": function () { }
  7139. }, {
  7140. closecallback: function () { }
  7141. }, { "style": { "height": "36px" } }).form; //创建窗体
  7142. _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); } }
  7143. break;
  7144. case "AIChat": //AI共创
  7145. _formdiv = new U.UF.UI.form(
  7146. "AI共创",
  7147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7148. "id": "AIChat",
  7149. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7150. "onresize": function () { }
  7151. }, {
  7152. istop: true,
  7153. closecallback: function () { $("#aichat_icon").remove(); },
  7154. narrowcallback: function () {
  7155. if (!$("#aichat_icon")[0]) {
  7156. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7157. }
  7158. },
  7159. }, { "style": { "height": "36px" } }).form; //创建窗体
  7160. _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); } }
  7161. break;
  7162. case "ainew": //AI共创
  7163. _formdiv = new U.UF.UI.form(
  7164. "AI协同",
  7165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7166. "id": "ainew",
  7167. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7168. "onresize": function () { }
  7169. }, {
  7170. closecallback: function () { }
  7171. }, { "style": { "height": "36px" } }).form; //创建窗体
  7172. _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); } }
  7173. break;
  7174. case "gpt4": //gpt4
  7175. _formdiv = new U.UF.UI.form(
  7176. "AI助手",
  7177. $$("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 }), {
  7178. "id": "gpt4",
  7179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7180. "onresize": function () { }
  7181. }, {
  7182. closecallback: function () { }
  7183. }, { "style": { "height": "36px" } }).form; //创建窗体
  7184. _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); } }
  7185. break;
  7186. case "aigpt": //gpt4
  7187. _formdiv = new U.UF.UI.form(
  7188. "AI助手+",
  7189. $$("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 }), {
  7190. "id": "aigpt",
  7191. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () {
  7195. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7196. }
  7197. }, { "style": { "height": "36px" } }).form; //创建窗体
  7198. _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); } }
  7199. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7200. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7201. })
  7202. break;
  7203. case "aiKnowledge": //aiKnowledge
  7204. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7205. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7206. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7207. }
  7208. _formdiv = new U.UF.UI.form(
  7209. "知识建构",
  7210. $$("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 }), {
  7211. "id": "aiKnowledge",
  7212. "style": { "width": "100%", "height": "100%", "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/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7218. break;
  7219. case "futureClass": //AI共创
  7220. _formdiv = new U.UF.UI.form(
  7221. "协同建构",
  7222. $$("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
  7223. "id": "synergyCourse",
  7224. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7225. "onresize": function () { }
  7226. }, {
  7227. closecallback: function () {
  7228. $("iframe", _formdiv)[0].contentWindow.loginout();
  7229. }
  7230. }, { "style": { "height": "36px" } }).form; //创建窗体
  7231. _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); } }
  7232. break;
  7233. case "aiagent": //ai agent
  7234. _formdiv = new U.UF.UI.form(
  7235. "AI Agent",
  7236. $$("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" }), {
  7237. "id": "AIAgent",
  7238. "style": { "width": "100%", "height": "100%", "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/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7244. break;
  7245. case "dataBoard": //数据看板
  7246. _formdiv = new U.UF.UI.form(
  7247. "数据看板",
  7248. $$("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 }), {
  7249. "id": "dataBoard",
  7250. "style": { "width": "100%", "height": "100%", "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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7256. break;
  7257. case "dataBoardSies": //数据融合
  7258. _formdiv = new U.UF.UI.form(
  7259. "数据融合",
  7260. $$("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 }), {
  7261. "id": "dataBoardSies",
  7262. "style": { "width": "100%", "height": "100%", "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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7268. break;
  7269. case "dataBoardNew": //数据看板
  7270. _formdiv = new U.UF.UI.form(
  7271. "综合看板",
  7272. $$("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 }), {
  7273. "id": "dataBoardNew",
  7274. "style": { "width": "100%", "height": "100%", "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/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7280. break;
  7281. case "dataBoardTest": //数据看板
  7282. _formdiv = new U.UF.UI.form(
  7283. "评测看板",
  7284. $$("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 }), {
  7285. "id": "dataBoardTest",
  7286. "style": { "width": "100%", "height": "100%", "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/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7292. break;
  7293. case "AIAnalyse": //AI共创
  7294. _formdiv = new U.UF.UI.form(
  7295. "AI分析",
  7296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7297. "id": "AIAnalyse",
  7298. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7304. break;
  7305. case "studioCourse": //AI共创
  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/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7309. "id": "studioCourse",
  7310. "style": { "width": "100%", "height": "100%", "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/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7316. break;
  7317. case "studioIndex": //AI共创
  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-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7321. "id": "studioIndex",
  7322. "style": { "width": "100%", "height": "100%", "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/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7328. break;
  7329. case "source":
  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/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7333. "id": "source",
  7334. "style": { "width": "80%", "height": "80%", "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/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7340. break;
  7341. case "testTeacher":
  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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7345. "id": "testTeacher",
  7346. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7352. break;
  7353. case "testStudent":
  7354. _formdiv = new U.UF.UI.form(
  7355. "教师中心",
  7356. $$("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 }), {
  7357. "id": "testStudent",
  7358. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7364. break;
  7365. case "testTeacherSies":
  7366. _formdiv = new U.UF.UI.form(
  7367. "教师管理",
  7368. $$("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 }), {
  7369. "id": "testTeacherSies",
  7370. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7376. break;
  7377. case "testStudentSies":
  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/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  7381. "id": "testStudentSies",
  7382. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7388. break;
  7389. case "ytpbl": //消息通知
  7390. _formdiv = new U.UF.UI.form(
  7391. "案例征集",
  7392. $$("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 }), {
  7393. "id": "ytpbl",
  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/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7400. // 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");
  7401. break;
  7402. case "aiCourseResource": //人工智能窗体
  7403. _formdiv = new U.UF.UI.form(
  7404. false,
  7405. $$("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 }), {
  7406. "id": "aiCourseResource",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { },
  7409. "isdrag": false,
  7410. }, {
  7411. closecallback: function () { }
  7412. }, { "style": { "height": "36px" } }).form; //创建窗体
  7413. _taskbar = ''
  7414. break;
  7415. case "szdjgCocooroboX": //图形化编程
  7416. _formdiv = new U.UF.UI.form(
  7417. "图形化编程",
  7418. $$("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" }), {
  7419. "id": "szdjgCocooroboX",
  7420. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7421. "onresize": function () { }
  7422. }, {
  7423. closecallback: function () { }
  7424. }, { "style": { "height": "36px" } }).form; //创建窗体
  7425. _taskbar = ''
  7426. break;
  7427. case "szdjgPython": //python编程
  7428. _formdiv = new U.UF.UI.form(
  7429. "Python编程",
  7430. $$("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" }), {
  7431. "id": "szdjgPython",
  7432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, { "style": { "height": "36px" } }).form; //创建窗体
  7437. _taskbar = ''
  7438. break;
  7439. case "Record":
  7440. _formdiv = new U.UF.UI.form(
  7441. "观察记录",
  7442. $$("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 }), {
  7443. "id": "Record",
  7444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () { }
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "aigptCourse":
  7452. _formdiv = new U.UF.UI.form(
  7453. "AI智能体",
  7454. $$("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' }), {
  7455. "id": "aigptCourse",
  7456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //创建窗体
  7461. _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); } }
  7462. break;
  7463. case "classroomObservation":
  7464. _formdiv = new U.UF.UI.form(
  7465. "课堂观察",
  7466. $$("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 }), {
  7467. "id": "classroomObservation",
  7468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //创建窗体
  7473. _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); } }
  7474. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7475. break;
  7476. case "pblCourse":
  7477. _formdiv = new U.UF.UI.form(
  7478. "学生PBL",
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7480. "id": "pblCourse",
  7481. "style": { "width": "90%", "height": "90%", "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/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7487. break;
  7488. case "appStore":
  7489. U.MD.D.addOp('','cocoflowOpen','')
  7490. _formdiv = new U.UF.UI.form(
  7491. "CocoFlow",
  7492. $$("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 }), {
  7493. "id": "appStore",
  7494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7495. "onresize": function () { }
  7496. }, {
  7497. closecallback: function () { }
  7498. }, { "style": { "height": "36px" } }).form; //创建窗体
  7499. _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); } }
  7500. break;
  7501. case "sassPlatform":
  7502. _formdiv = new U.UF.UI.form(
  7503. "Sass通用后台管理",
  7504. $$("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 }), {
  7505. "id": "sassPlatform",
  7506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7507. "onresize": function () { }
  7508. }, {
  7509. closecallback: function () { }
  7510. }, { "style": { "height": "36px" } }).form; //创建窗体
  7511. _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); } }
  7512. break;
  7513. case "EDU":
  7514. _formdiv = new U.UF.UI.form(
  7515. "EDU",
  7516. $$("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" }), {
  7517. "id": "EDU",
  7518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7519. "onresize": function () { }
  7520. }, {
  7521. closecallback: function () { }
  7522. }, { "style": { "height": "36px" } }).form; //创建窗体
  7523. _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); } }
  7524. break;
  7525. case "knowledge":
  7526. _formdiv = new U.UF.UI.form(
  7527. "知识库",
  7528. $$("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 }), {
  7529. "id": "knowledge",
  7530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7531. "onresize": function () { }
  7532. }, {
  7533. closecallback: function () { }
  7534. }, { "style": { "height": "36px" } }).form; //创建窗体
  7535. _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); } }
  7536. break;
  7537. case "userExamine":
  7538. _formdiv = new U.UF.UI.form(
  7539. "账号申请",
  7540. $$("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" }), {
  7541. "id": "userExamine",
  7542. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7543. "onresize": function () { }
  7544. }, {
  7545. closecallback: function () { }
  7546. }, { "style": { "height": "36px" } }).form; //创建窗体
  7547. break;
  7548. case "cocoflowDeskTop": //cocoflowDeskTop
  7549. _formdiv = new U.UF.UI.form(
  7550. false,
  7551. $$("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 }), {
  7552. "id": "cocoflowDeskTop",
  7553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7554. "onresize": function () { },
  7555. }, {
  7556. closecallback: function () { },
  7557. "isdrag": false,
  7558. }, { "style": { "height": "36px" } }).form; //创建窗体
  7559. _taskbar = ''
  7560. break;
  7561. case "liyuanLogin": //liyuanLogin
  7562. _formdiv = new U.UF.UI.form(
  7563. false,
  7564. $$("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 }), {
  7565. "id": "liyuanLogin",
  7566. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7567. "onresize": function () { },
  7568. }, {
  7569. closecallback: function () { },
  7570. isdrag: false,
  7571. isstretching: false,
  7572. isenlarge: false,
  7573. isnarrow: false
  7574. }, { "style": { "height": "36px" } }).form; //创建窗体
  7575. _taskbar = ''
  7576. break;
  7577. case "updatePaDialog":
  7578. _formdiv = new U.UF.UI.form(
  7579. "密码修改",
  7580. $$("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 }), {
  7581. "id": "updatePaDialog",
  7582. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7583. "onresize": function () { },
  7584. }, {
  7585. closecallback: function () { },
  7586. isclose: false,
  7587. isdrag: false,
  7588. isstretching: false,
  7589. isenlarge: false,
  7590. isnarrow: false
  7591. }, { "style": { "height": "36px" } }).form; //创建窗体
  7592. break;
  7593. }
  7594. //U.MD.D.I.openClick(str);
  7595. //如果有任务栏信息
  7596. if (_taskbar) {
  7597. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7598. }
  7599. if(iframeBool){
  7600. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7601. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7602. // console.log("iframe进入");
  7603. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7604. // };
  7605. setTimeout(() => {
  7606. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7607. }, 2000);
  7608. }
  7609. }
  7610. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7611. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7612. _userinfo = US.userInfo, //登录用户信息
  7613. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7614. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7615. let iframeBool = true;
  7616. let queryString = ''
  7617. if(array && array.length){
  7618. const paramsMap = {
  7619. userid: _userid,
  7620. org: _org,
  7621. oid: _oid,
  7622. type: _type,
  7623. role: _role,
  7624. classId: _classId,
  7625. TscreenType: _TscreenType,
  7626. SscreenType: _SscreenType
  7627. };
  7628. const canshu = array
  7629. .filter(param => paramsMap[param] !== undefined)
  7630. .map(param => `${param}=${paramsMap[param]}`);
  7631. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7632. }
  7633. let _url = url + queryString
  7634. if(U.UF.UI.form.allForm[id]){
  7635. iframeBool = false
  7636. }
  7637. _formdiv = new U.UF.UI.form(
  7638. false,
  7639. $$("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 }),
  7640. {
  7641. "id": id,
  7642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7643. "onresize": function () { },
  7644. },
  7645. {
  7646. closecallback: function () { },
  7647. isdrag: false,
  7648. isstretching: false,
  7649. isenlarge: false,
  7650. isnarrow: false
  7651. },
  7652. { "style": { "height": "36px" } },
  7653. undefined,
  7654. undefined,
  7655. dom
  7656. ).form
  7657. }
  7658. // U.MD.D.I.openClick = function(str){
  7659. // var click = '';
  7660. // switch(str){
  7661. // case 'friend':
  7662. // click = '我的好友';
  7663. // break;
  7664. // case 'domain':
  7665. // click = '域名管理';
  7666. // break;
  7667. // case 'disk':
  7668. // click = '我的云盘';
  7669. // break;
  7670. // case 'word':
  7671. // click = 'Word';
  7672. // break;
  7673. // case 'excel':
  7674. // click = 'Execl';
  7675. // break;
  7676. // case 'txt':
  7677. // click = '文本文件';
  7678. // break;
  7679. // case 'lookupFriend':
  7680. // click = '查找好友';
  7681. // break;
  7682. // case 'ftp':
  7683. // click = 'FTP';
  7684. // break;
  7685. // case 'group':
  7686. // click = '群组';
  7687. // break;
  7688. // case 'set':
  7689. // click = '我的设置';
  7690. // break;
  7691. // case 'systemSet':
  7692. // click = '系统设置';
  7693. // break;
  7694. // case 'boomYun':
  7695. // click = '互联办公';
  7696. // break;
  7697. // case 'xz':
  7698. // click = '云端下载';
  7699. // break;
  7700. // case 'client':
  7701. // click = '有思浏览器';
  7702. // break;
  7703. // case 'backEndProgramming':
  7704. // click = '在线后台编程';
  7705. // break;
  7706. // case 'frontEndProgramming':
  7707. // click = '在线前端编程';
  7708. // break;
  7709. // default: break;
  7710. // }
  7711. // if(U.MD.D.I.Ip && click){
  7712. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7713. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7714. // })
  7715. // }
  7716. // }
  7717. /**
  7718. *函数作用:ajax简易函数,使用post格式
  7719. *@param url {data} 后台地址
  7720. *@param data {data} 参数json
  7721. *@param fn {data} 回调函数
  7722. *
  7723. */
  7724. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7725. // var xhr = new XMLHttpRequest();
  7726. // xhr.open("GET",url,true);
  7727. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7728. // xhr.onreadystatechange = function(){
  7729. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7730. // fn.call(this,xhr.responseText);
  7731. // }
  7732. // };
  7733. // xhr.send();
  7734. // }
  7735. /*判断是否是内网IP*/
  7736. // U.MD.D.I.isInnerIPFn = function(str){
  7737. // var curPageUrl = str;
  7738. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7739. // curPageUrl =curPageUrl.replace(reg1,'');
  7740. // // console.log('curPageUrl-1 '+curPageUrl);
  7741. // var reg2 = /\:+/g;//替换冒号为一点
  7742. // curPageUrl =curPageUrl.replace(reg2,'.');
  7743. // // console.log('curPageUrl-2 '+curPageUrl);
  7744. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7745. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7746. // if(curPageUrl[2] != '16'){
  7747. // return ipAddress;
  7748. // }else{
  7749. // return false;
  7750. // }
  7751. // }
  7752. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7753. // //compatibility for firefox and chrome
  7754. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7755. // var pc = new myPeerConnection({
  7756. // iceServers: []
  7757. // }),
  7758. // noop = function() {},
  7759. // localIPs = {},
  7760. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7761. // key;
  7762. // function iterateIP(ip) {
  7763. // if (!localIPs[ip]) onNewIP(ip);
  7764. // localIPs[ip] = true;
  7765. // }
  7766. // //create a bogus data channel
  7767. // pc.createDataChannel("");
  7768. // // create offer and set local description
  7769. // pc.createOffer().then(function(sdp) {
  7770. // sdp.sdp.split('\n').forEach(function(line) {
  7771. // if (line.indexOf('candidate') < 0) return;
  7772. // line.match(ipRegex).forEach(iterateIP);
  7773. // });
  7774. // pc.setLocalDescription(sdp, noop, noop);
  7775. // }).catch(function(reason) {
  7776. // // An error occurred, so handle the failure to connect
  7777. // });
  7778. // //sten for candidate events
  7779. // pc.onicecandidate = function(ice) {
  7780. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7781. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7782. // };
  7783. // }
  7784. // U.MD.D.I.getUserIpBool = function(callback){
  7785. // U.MD.D.I.getUserIP(function(ip){
  7786. // alert("Got IP! :" + ip);
  7787. // });
  7788. //}
  7789. //#endregion
  7790. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7791. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7792. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7793. _userinfo = US.userInfo, //登录用户信息
  7794. _userid = US.userInfo.userid //登录用户id
  7795. let _iframe;
  7796. let _cid = cid,
  7797. _stage = stage,
  7798. _task = task,
  7799. _tool = tool;
  7800. var _jie = $$("div", {
  7801. "style": {
  7802. "position": "absolute",
  7803. "bottom": "50px",
  7804. "right": "50px",
  7805. "zIndex": "9999",
  7806. "backgroundColor": "#2268bc",
  7807. "color": "#fff",
  7808. "padding": "12px 20px",
  7809. "cursor": "pointer",
  7810. "borderRadius": "4px",
  7811. },
  7812. "innerHTML": "提交作业"
  7813. })
  7814. let aTool = ''
  7815. let _loading = document.createElement('div')
  7816. _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;"
  7817. // _loading.id = "";
  7818. let _lchild = document.createElement('div')
  7819. let _limg = document.createElement('img')
  7820. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7821. _limg.style = "width: 26px;margin-right: 10px;"
  7822. _lchild.appendChild(_limg)
  7823. let _lspan = document.createElement('span')
  7824. _lspan.innerHTML = "上传中..."
  7825. _lchild.appendChild(_lspan)
  7826. _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%);"
  7827. _loading.appendChild(_lchild)
  7828. var _box = $$('div', {
  7829. "style": {
  7830. "position": "relative",
  7831. "width": "100%",
  7832. "height": "100%",
  7833. },
  7834. })
  7835. _box.appendChild(_loading)
  7836. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7837. switch (str) {
  7838. case "whiteboard":
  7839. aTool = 1;
  7840. _iframe = $$("iframe", {
  7841. "frameborder": "no",
  7842. "border": "0",
  7843. "scrolling ": "no",
  7844. "style": {
  7845. "cssText": "border:0;width:100%;height:100%"
  7846. },
  7847. "src": "https://beta.iwb.cocorobo.cn/"
  7848. })
  7849. _box.appendChild(_iframe);
  7850. _box.appendChild(_jie);
  7851. _formdiv = new U.UF.UI.form(
  7852. "电子白板",
  7853. _box, {
  7854. "id": "whiteboard" + cid + stage + task + tool,
  7855. "style": {
  7856. "width": "90%",
  7857. "height": "90%",
  7858. "overflow": 'hidden'
  7859. },
  7860. "onresize": function () { }
  7861. }, {
  7862. closecallback: function () { }
  7863. }, {
  7864. "style": {
  7865. "height": "36px"
  7866. }
  7867. }).form; //创建窗体
  7868. _taskbar = {
  7869. "id": str + _formdiv.id,
  7870. "style": {
  7871. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7872. },
  7873. "name": "电子白板",
  7874. "forms": _formdiv,
  7875. "click": function () {
  7876. U.MD.D.I.openApplication(str, obj, info);
  7877. }
  7878. }
  7879. break;
  7880. case "mind":
  7881. aTool = 3;
  7882. _iframe = $$("iframe", {
  7883. "frameborder": "no",
  7884. "border": "0",
  7885. "scrolling ": "no",
  7886. "style": {
  7887. "cssText": "border:0;width:100%;height:100%"
  7888. },
  7889. "src": "/kityminder-editor/dist/index.html"
  7890. })
  7891. _box.appendChild(_iframe);
  7892. _box.appendChild(_jie);
  7893. _formdiv = new U.UF.UI.form(
  7894. "思维导图",
  7895. _box, { //"/jsmind/example/demo.html"
  7896. "id": "mind" + cid + stage + task + tool,
  7897. "style": {
  7898. "width": "90%",
  7899. "height": "90%",
  7900. "overflow": 'hidden'
  7901. },
  7902. "onresize": function () { }
  7903. }, {
  7904. closecallback: function () { }
  7905. }, {
  7906. "style": {
  7907. "height": "36px"
  7908. }
  7909. }).form; //创建窗体
  7910. _taskbar = {
  7911. "id": str + _formdiv.id,
  7912. "style": {
  7913. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7914. },
  7915. "name": "思维导图",
  7916. "forms": _formdiv,
  7917. "click": function () {
  7918. U.MD.D.I.openApplication(str, obj, info);
  7919. }
  7920. }
  7921. break;
  7922. case "MindMap":
  7923. aTool = 3;
  7924. _iframe = $$("iframe", {
  7925. "frameborder": "no",
  7926. "border": "0",
  7927. "scrolling ": "no",
  7928. "style": {
  7929. "cssText": "border:0;width:100%;height:100%"
  7930. },
  7931. "src": "//cloud.cocorobo.cn/mind/"
  7932. })
  7933. _box.appendChild(_iframe);
  7934. _box.appendChild(_jie);
  7935. _formdiv = new U.UF.UI.form(
  7936. "思维导图",
  7937. _box, { //"/jsmind/example/demo.html"
  7938. "id": "mind" + cid + stage + task + tool,
  7939. "style": {
  7940. "width": "90%",
  7941. "height": "90%",
  7942. "overflow": 'hidden'
  7943. },
  7944. "onresize": function () { }
  7945. }, {
  7946. closecallback: function () { }
  7947. }, {
  7948. "style": {
  7949. "height": "36px"
  7950. }
  7951. }).form; //创建窗体
  7952. _taskbar = {
  7953. "id": str + _formdiv.id,
  7954. "style": {
  7955. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7956. },
  7957. "name": "思维导图",
  7958. "forms": _formdiv,
  7959. "click": function () {
  7960. U.MD.D.I.openApplication(str, obj, info);
  7961. }
  7962. }
  7963. break;
  7964. case "doc":
  7965. aTool = 6;
  7966. _iframe = $$("iframe", {
  7967. "frameborder": "no",
  7968. "border": "0",
  7969. "scrolling ": "no",
  7970. "style": {
  7971. "cssText": "border:0;width:100%;height:100%"
  7972. },
  7973. "src": "/Office/Word/WordEditArea.htm"
  7974. })
  7975. _box.appendChild(_iframe);
  7976. _box.appendChild(_jie);
  7977. _formdiv = new U.UF.UI.form(
  7978. "协同文档",
  7979. _box, {
  7980. "id": "doc" + cid + stage + task + tool,
  7981. "style": {
  7982. "width": "90%",
  7983. "height": "90%",
  7984. "overflow": 'hidden'
  7985. },
  7986. "onresize": function () { }
  7987. }, {
  7988. closecallback: function () { }
  7989. }, {
  7990. "style": {
  7991. "height": "36px"
  7992. }
  7993. }).form; //创建窗体
  7994. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7995. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7996. })
  7997. _taskbar = {
  7998. "id": str + _formdiv.id,
  7999. "style": {
  8000. "backgroundImage": "url(/img/icon/doc.png)"
  8001. },
  8002. "name": "协同文档",
  8003. "forms": _formdiv,
  8004. "click": function () {
  8005. U.MD.D.I.openApplication(str, obj, info);
  8006. }
  8007. }
  8008. break;
  8009. case "mindNetwork": //好友打开
  8010. aTool = 7;
  8011. _iframe = $$("iframe", {
  8012. "webkitallowfullscreen": "",
  8013. "mozallowfullscreen": "",
  8014. "allowfullscreen": "",
  8015. "frameborder": "no",
  8016. "border": "0",
  8017. "scrolling ": "no",
  8018. "style": {
  8019. "cssText": "border:0; width:100%; height:100%;"
  8020. },
  8021. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8022. })
  8023. _box.appendChild(_iframe);
  8024. _box.appendChild(_jie);
  8025. _formdiv = new U.UF.UI.form(
  8026. "思维网格",
  8027. _box, {
  8028. "id": "mindNetwork" + cid + stage + task + tool,
  8029. "style": {
  8030. "width": "90%",
  8031. "height": "90%",
  8032. "overflow": 'hidden'
  8033. },
  8034. "onresize": function () { }
  8035. }, {
  8036. closecallback: function () { }
  8037. }, {
  8038. "style": {
  8039. "height": "36px"
  8040. }
  8041. }).form; //创建窗体
  8042. _taskbar = {
  8043. "id": str + _formdiv.id,
  8044. "style": {
  8045. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8046. },
  8047. "name": "思维网格",
  8048. "forms": _formdiv,
  8049. "click": function () {
  8050. U.MD.D.I.openApplication(str, obj, info);
  8051. }
  8052. }
  8053. break;
  8054. case "courseDesign":
  8055. _iframe = $$("iframe", {
  8056. "webkitallowfullscreen": "",
  8057. "mozallowfullscreen": "",
  8058. "allowfullscreen": "",
  8059. "frameborder": "no",
  8060. "border": "0",
  8061. "scrolling ": "no",
  8062. "style": {
  8063. "cssText": "border:0; width:100%; height:100%;"
  8064. },
  8065. "src": "/course-design-vue"
  8066. })
  8067. _box.appendChild(_iframe);
  8068. _box.appendChild(_jie);
  8069. _formdiv = new U.UF.UI.form(
  8070. "项目设计",
  8071. _box, {
  8072. "id": "courseDesign" + cid + stage + task + tool,
  8073. "style": {
  8074. "width": "90%",
  8075. "height": "90%",
  8076. "overflow": 'hidden'
  8077. },
  8078. "onresize": function () { }
  8079. }, {
  8080. closecallback: function () { }
  8081. }, {
  8082. "style": {
  8083. "height": "36px"
  8084. }
  8085. }).form; //创建窗体
  8086. _taskbar = {
  8087. "id": str + _formdiv.id,
  8088. "style": {
  8089. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8090. },
  8091. "name": "项目设计",
  8092. "forms": _formdiv,
  8093. "click": function () {
  8094. U.MD.D.I.openApplication(str, obj, info);
  8095. }
  8096. }
  8097. break;
  8098. }
  8099. const script1 = document.createElement("script");
  8100. script1.type = "text/javascript";
  8101. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8102. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8103. const script2 = document.createElement("script");
  8104. script2.type = "text/javascript";
  8105. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8106. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8107. const script3 = document.createElement("script");
  8108. script3.type = "text/javascript";
  8109. script3.charset = "UTF-8";
  8110. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8111. const script4 = document.createElement("script");
  8112. script4.type = "text/javascript";
  8113. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8114. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8115. if (_iframe) {
  8116. if (str == 'doc') {
  8117. _iframe = _formdiv.querySelector('iframe')
  8118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8119. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8120. _iframe.contentWindow.document.body.appendChild(script1);
  8121. _iframe.contentWindow.document.body.appendChild(script2);
  8122. // _iframe.contentWindow.document.body.appendChild(script3);
  8123. _iframe.contentWindow.document.body.appendChild(script4);
  8124. })
  8125. if (onloadListener) {
  8126. _iframe.contentDocument.location.reload()
  8127. } else {
  8128. _iframe.contentDocument.location.reload()
  8129. }
  8130. } else if (str == 'courseDesign') {
  8131. U.UF.DL.iframeLoad(_iframe, function () {
  8132. // _iframe.contentWindow.U.MD.O.W.load();
  8133. // _iframe.contentWindow.document.body.appendChild(script1);
  8134. _iframe.contentWindow.document.body.appendChild(script2);
  8135. _iframe.contentWindow.document.body.appendChild(script4);
  8136. })
  8137. } else if (str == 'mind') {
  8138. _iframe = _formdiv.querySelector('iframe')
  8139. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8140. //
  8141. _iframe.contentWindow.document.body.appendChild(script1);
  8142. _iframe.contentWindow.document.body.appendChild(script2);
  8143. _iframe.contentWindow.document.body.appendChild(script4);
  8144. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8145. })
  8146. if (onloadListener) {
  8147. _iframe.contentDocument.location.reload()
  8148. } else {
  8149. _iframe.contentDocument.location.reload()
  8150. }
  8151. } else if (str == 'whiteboard') {
  8152. _iframe = _formdiv.querySelector('iframe')
  8153. let onloadListener = _iframe.onload = () => {
  8154. _iframe.contentWindow.document.body.appendChild(script1);
  8155. _iframe.contentWindow.document.body.appendChild(script2);
  8156. _iframe.contentWindow.document.body.appendChild(script4);
  8157. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8158. };
  8159. // if (onloadListener) {
  8160. // try {
  8161. // _iframe.src += "?cocorobo="+new Date().getTime()
  8162. // _iframe.contentWindow.document.location.reload()
  8163. // } catch (error) {
  8164. // }
  8165. // } else {
  8166. // _iframe.contentDocument.location.reload()
  8167. // }
  8168. } else {
  8169. _iframe.onload = () => {
  8170. _iframe.contentWindow.document.body.appendChild(script1);
  8171. _iframe.contentWindow.document.body.appendChild(script2);
  8172. // _iframe.contentWindow.document.body.appendChild(script3);
  8173. _iframe.contentWindow.document.body.appendChild(script4);
  8174. };
  8175. }
  8176. _jie.onclick = async () => {
  8177. let text = ''
  8178. if (aTool == 1) {
  8179. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8180. } else if (aTool == 6) {
  8181. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8182. } else if (aTool == 3) {
  8183. text = await U.MD.D.I.getEditorContent(_iframe);
  8184. }
  8185. _loading.style.display = 'flex'
  8186. console.log(_loading);
  8187. var _ajs = _iframe.contentWindow.document.createElement("script");
  8188. _ajs.type = "text/javascript";
  8189. _ajs.innerHTML =
  8190. // 'console.log(' + _loading + ');\n' +
  8191. 'var _js = document.createElement("script");\n' +
  8192. '_js.type="text/javascript";\n' +
  8193. '_js.charset="UTF-8";\n' +
  8194. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8195. "_js.onload = function(){\n" +
  8196. ' var a = document.getElementsByTagName("img")\n' +
  8197. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8198. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8199. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8200. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8201. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8202. "beforeUpload_shishi(file," +
  8203. "'" +
  8204. _userid +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _cid +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. _stage +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. _task +
  8217. "'" +
  8218. ", " +
  8219. "'" +
  8220. _tool +
  8221. "'" +
  8222. ", " +
  8223. "'" +
  8224. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8225. "'" +
  8226. ", " +
  8227. "'" +
  8228. aTool +
  8229. "'" +
  8230. ", " +
  8231. "`" +
  8232. text +
  8233. "`" +
  8234. ")\n" +
  8235. " });\n" +
  8236. "}\n" +
  8237. "document.head.appendChild(_js);\n";
  8238. _iframe.contentWindow.document.head.appendChild(_ajs);
  8239. }
  8240. }
  8241. //U.MD.D.I.openClick(str);
  8242. //如果有任务栏信息
  8243. // if (_taskbar) {
  8244. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8245. // }
  8246. }
  8247. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8248. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8249. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8250. _userinfo = US.userInfo, //登录用户信息
  8251. _userid = US.userInfo.userid //登录用户id
  8252. let _iframe;
  8253. let _cid = cid,
  8254. _stage = stage,
  8255. _task = task,
  8256. _tool = tool;
  8257. var _jie = $$("div", {
  8258. "style": {
  8259. "position": "absolute",
  8260. "bottom": "50px",
  8261. "right": "50px",
  8262. "zIndex": "9999",
  8263. "backgroundColor": "#2268bc",
  8264. "color": "#fff",
  8265. "padding": "12px 20px",
  8266. "cursor": "pointer",
  8267. "borderRadius": "4px",
  8268. },
  8269. "innerHTML": "提交作业"
  8270. })
  8271. let aTool = ''
  8272. let _loading = document.createElement('div')
  8273. _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;"
  8274. // _loading.id = "";
  8275. let _lchild = document.createElement('div')
  8276. let _limg = document.createElement('img')
  8277. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8278. _limg.style = "width: 26px;margin-right: 10px;"
  8279. _lchild.appendChild(_limg)
  8280. let _lspan = document.createElement('span')
  8281. _lspan.innerHTML = "上传中..."
  8282. _lchild.appendChild(_lspan)
  8283. _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%);"
  8284. _loading.appendChild(_lchild)
  8285. let _box = $$('div', {
  8286. "style": {
  8287. "position": "relative",
  8288. "width": "100%",
  8289. "height": "100%",
  8290. },
  8291. })
  8292. _box.appendChild(_loading)
  8293. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8294. switch (str) {
  8295. case "whiteboard":
  8296. aTool = 1;
  8297. _iframe = $$("iframe", {
  8298. "frameborder": "no",
  8299. "border": "0",
  8300. "scrolling ": "no",
  8301. "style": {
  8302. "cssText": "border:0;width:100%;height:100%"
  8303. },
  8304. "src": "https://beta.iwb.cocorobo.cn/"
  8305. })
  8306. _box.appendChild(_iframe);
  8307. _box.appendChild(_jie);
  8308. _formdiv = new U.UF.UI.form(
  8309. "电子白板",
  8310. _box, {
  8311. "id": "whiteboard" + cid + stage + task + tool,
  8312. "style": {
  8313. "width": "90%",
  8314. "height": "90%",
  8315. "overflow": 'hidden'
  8316. },
  8317. "onresize": function () { }
  8318. }, {
  8319. closecallback: function () { }
  8320. }, {
  8321. "style": {
  8322. "height": "36px"
  8323. }
  8324. }).form; //创建窗体
  8325. _taskbar = {
  8326. "id": str + _formdiv.id,
  8327. "style": {
  8328. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8329. },
  8330. "name": "电子白板",
  8331. "forms": _formdiv,
  8332. "click": function () {
  8333. U.MD.D.I.openApplication(str, obj, info);
  8334. }
  8335. }
  8336. break;
  8337. case "mind":
  8338. aTool = 3;
  8339. _iframe = $$("iframe", {
  8340. "frameborder": "no",
  8341. "border": "0",
  8342. "scrolling ": "no",
  8343. "style": {
  8344. "cssText": "border:0;width:100%;height:100%"
  8345. },
  8346. "src": "/kityminder-editor/dist/index.html"
  8347. })
  8348. _box.appendChild(_iframe);
  8349. _box.appendChild(_jie);
  8350. _formdiv = new U.UF.UI.form(
  8351. "思维导图",
  8352. _box, { //"/jsmind/example/demo.html"
  8353. "id": "mind" + cid + stage + task + tool,
  8354. "style": {
  8355. "width": "90%",
  8356. "height": "90%",
  8357. "overflow": 'hidden'
  8358. },
  8359. "onresize": function () { }
  8360. }, {
  8361. closecallback: function () { }
  8362. }, {
  8363. "style": {
  8364. "height": "36px"
  8365. }
  8366. }).form; //创建窗体
  8367. _taskbar = {
  8368. "id": str + _formdiv.id,
  8369. "style": {
  8370. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8371. },
  8372. "name": "思维导图",
  8373. "forms": _formdiv,
  8374. "click": function () {
  8375. U.MD.D.I.openApplication(str, obj, info);
  8376. }
  8377. }
  8378. break;
  8379. case "MindMap":
  8380. aTool = 3;
  8381. _iframe = $$("iframe", {
  8382. "frameborder": "no",
  8383. "border": "0",
  8384. "scrolling ": "no",
  8385. "style": {
  8386. "cssText": "border:0;width:100%;height:100%"
  8387. },
  8388. "src": "//cloud.cocorobo.cn/mind/"
  8389. })
  8390. _box.appendChild(_iframe);
  8391. _box.appendChild(_jie);
  8392. _formdiv = new U.UF.UI.form(
  8393. "思维导图",
  8394. _box, { //"/jsmind/example/demo.html"
  8395. "id": "mind" + cid + stage + task + tool,
  8396. "style": {
  8397. "width": "90%",
  8398. "height": "90%",
  8399. "overflow": 'hidden'
  8400. },
  8401. "onresize": function () { }
  8402. }, {
  8403. closecallback: function () { }
  8404. }, {
  8405. "style": {
  8406. "height": "36px"
  8407. }
  8408. }).form; //创建窗体
  8409. _taskbar = {
  8410. "id": str + _formdiv.id,
  8411. "style": {
  8412. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8413. },
  8414. "name": "思维导图",
  8415. "forms": _formdiv,
  8416. "click": function () {
  8417. U.MD.D.I.openApplication(str, obj, info);
  8418. }
  8419. }
  8420. break;
  8421. case "doc":
  8422. aTool = 6;
  8423. _iframe = $$("iframe", {
  8424. "frameborder": "no",
  8425. "border": "0",
  8426. "scrolling ": "no",
  8427. "style": {
  8428. "cssText": "border:0;width:100%;height:100%"
  8429. },
  8430. "src": "/Office/Word/WordEditArea.htm"
  8431. })
  8432. _box.appendChild(_iframe);
  8433. _box.appendChild(_jie);
  8434. _formdiv = new U.UF.UI.form(
  8435. "协同文档",
  8436. _box, {
  8437. "id": "doc" + cid + stage + task + tool,
  8438. "style": {
  8439. "width": "90%",
  8440. "height": "90%",
  8441. "overflow": 'hidden'
  8442. },
  8443. "onresize": function () { }
  8444. }, {
  8445. closecallback: function () { }
  8446. }, {
  8447. "style": {
  8448. "height": "36px"
  8449. }
  8450. }).form; //创建窗体
  8451. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8452. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8453. })
  8454. _taskbar = {
  8455. "id": str + _formdiv.id,
  8456. "style": {
  8457. "backgroundImage": "url(/img/icon/doc.png)"
  8458. },
  8459. "name": "协同文档",
  8460. "forms": _formdiv,
  8461. "click": function () {
  8462. U.MD.D.I.openApplication(str, obj, info);
  8463. }
  8464. }
  8465. break;
  8466. case "mindNetwork": //好友打开
  8467. aTool = 7;
  8468. _iframe = $$("iframe", {
  8469. "webkitallowfullscreen": "",
  8470. "mozallowfullscreen": "",
  8471. "allowfullscreen": "",
  8472. "frameborder": "no",
  8473. "border": "0",
  8474. "scrolling ": "no",
  8475. "style": {
  8476. "cssText": "border:0; width:100%; height:100%;"
  8477. },
  8478. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8479. })
  8480. _box.appendChild(_iframe);
  8481. _box.appendChild(_jie);
  8482. _formdiv = new U.UF.UI.form(
  8483. "思维网格",
  8484. _box, {
  8485. "id": "mindNetwork" + cid + stage + task + tool,
  8486. "style": {
  8487. "width": "90%",
  8488. "height": "90%",
  8489. "overflow": 'hidden'
  8490. },
  8491. "onresize": function () { }
  8492. }, {
  8493. closecallback: function () { }
  8494. }, {
  8495. "style": {
  8496. "height": "36px"
  8497. }
  8498. }).form; //创建窗体
  8499. _taskbar = {
  8500. "id": str + _formdiv.id,
  8501. "style": {
  8502. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8503. },
  8504. "name": "思维网格",
  8505. "forms": _formdiv,
  8506. "click": function () {
  8507. U.MD.D.I.openApplication(str, obj, info);
  8508. }
  8509. }
  8510. break;
  8511. case "courseDesign":
  8512. _iframe = $$("iframe", {
  8513. "webkitallowfullscreen": "",
  8514. "mozallowfullscreen": "",
  8515. "allowfullscreen": "",
  8516. "frameborder": "no",
  8517. "border": "0",
  8518. "scrolling ": "no",
  8519. "style": {
  8520. "cssText": "border:0; width:100%; height:100%;"
  8521. },
  8522. "src": "/course-design-vue"
  8523. })
  8524. _box.appendChild(_iframe);
  8525. _box.appendChild(_jie);
  8526. _formdiv = new U.UF.UI.form(
  8527. "项目设计",
  8528. _box, {
  8529. "id": "courseDesign" + cid + stage + task + tool,
  8530. "style": {
  8531. "width": "90%",
  8532. "height": "90%",
  8533. "overflow": 'hidden'
  8534. },
  8535. "onresize": function () { }
  8536. }, {
  8537. closecallback: function () { }
  8538. }, {
  8539. "style": {
  8540. "height": "36px"
  8541. }
  8542. }).form; //创建窗体
  8543. _taskbar = {
  8544. "id": str + _formdiv.id,
  8545. "style": {
  8546. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8547. },
  8548. "name": "项目设计",
  8549. "forms": _formdiv,
  8550. "click": function () {
  8551. U.MD.D.I.openApplication(str, obj, info);
  8552. }
  8553. }
  8554. break;
  8555. }
  8556. const script1 = document.createElement("script");
  8557. script1.type = "text/javascript";
  8558. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8559. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8560. const script2 = document.createElement("script");
  8561. script2.type = "text/javascript";
  8562. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8563. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8564. const script3 = document.createElement("script");
  8565. script3.type = "text/javascript";
  8566. script3.charset = "UTF-8";
  8567. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8568. const script4 = document.createElement("script");
  8569. script4.type = "text/javascript";
  8570. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8571. script4.src = window.origin + "/js/Common/jietu2E.js";
  8572. if (_iframe) {
  8573. if (str == 'doc') {
  8574. _iframe = _formdiv.querySelector('iframe')
  8575. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8576. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8577. _iframe.contentWindow.document.body.appendChild(script1);
  8578. _iframe.contentWindow.document.body.appendChild(script2);
  8579. // _iframe.contentWindow.document.body.appendChild(script3);
  8580. _iframe.contentWindow.document.body.appendChild(script4);
  8581. })
  8582. if (onloadListener) {
  8583. _iframe.contentDocument.location.reload()
  8584. } else {
  8585. _iframe.contentDocument.location.reload()
  8586. }
  8587. } else if (str == 'courseDesign') {
  8588. U.UF.DL.iframeLoad(_iframe, function () {
  8589. // _iframe.contentWindow.U.MD.O.W.load();
  8590. // _iframe.contentWindow.document.body.appendChild(script1);
  8591. _iframe.contentWindow.document.body.appendChild(script2);
  8592. _iframe.contentWindow.document.body.appendChild(script4);
  8593. })
  8594. } else if (str == 'mind') {
  8595. _iframe = _formdiv.querySelector('iframe')
  8596. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8597. //
  8598. _iframe.contentWindow.document.body.appendChild(script1);
  8599. _iframe.contentWindow.document.body.appendChild(script2);
  8600. _iframe.contentWindow.document.body.appendChild(script4);
  8601. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8602. })
  8603. if (onloadListener) {
  8604. _iframe.contentDocument.location.reload()
  8605. } else {
  8606. _iframe.contentDocument.location.reload()
  8607. }
  8608. } else if (str == 'whiteboard') {
  8609. _iframe = _formdiv.querySelector('iframe')
  8610. let onloadListener = _iframe.onload = () => {
  8611. _iframe.contentWindow.document.body.appendChild(script1);
  8612. _iframe.contentWindow.document.body.appendChild(script2);
  8613. _iframe.contentWindow.document.body.appendChild(script4);
  8614. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8615. };
  8616. // if (onloadListener) {
  8617. // try {
  8618. // _iframe.src += "?cocorobo="+new Date().getTime()
  8619. // _iframe.contentWindow.document.location.reload()
  8620. // } catch (error) {
  8621. // }
  8622. // } else {
  8623. // _iframe.contentDocument.location.reload()
  8624. // }
  8625. } else {
  8626. _iframe.onload = () => {
  8627. _iframe.contentWindow.document.body.appendChild(script1);
  8628. _iframe.contentWindow.document.body.appendChild(script2);
  8629. // _iframe.contentWindow.document.body.appendChild(script3);
  8630. _iframe.contentWindow.document.body.appendChild(script4);
  8631. };
  8632. }
  8633. _jie.onclick = async () => {
  8634. let text = ''
  8635. if (aTool == 1) {
  8636. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8637. } else if (aTool == 6) {
  8638. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8639. } else if (aTool == 3) {
  8640. text = await U.MD.D.I.getEditorContent(_iframe);
  8641. }
  8642. _loading.style.display = 'flex'
  8643. console.log(_loading);
  8644. var _ajs = _iframe.contentWindow.document.createElement("script");
  8645. _ajs.type = "text/javascript";
  8646. _ajs.innerHTML =
  8647. // 'console.log(' + _loading + ');\n' +
  8648. 'var _js = document.createElement("script");\n' +
  8649. '_js.type="text/javascript";\n' +
  8650. '_js.charset="UTF-8";\n' +
  8651. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8652. "_js.onload = function(){\n" +
  8653. ' var a = document.getElementsByTagName("img")\n' +
  8654. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8655. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8656. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8657. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8658. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8659. "beforeUpload_shishi(file," +
  8660. "'" +
  8661. _userid +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. _cid +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. _stage +
  8670. "'" +
  8671. ", " +
  8672. "'" +
  8673. _task +
  8674. "'" +
  8675. ", " +
  8676. "'" +
  8677. _tool +
  8678. "'" +
  8679. ", " +
  8680. "'" +
  8681. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8682. "'" +
  8683. ", " +
  8684. "'" +
  8685. aTool +
  8686. "'" +
  8687. ", " +
  8688. "`" +
  8689. text +
  8690. "`" +
  8691. ")\n" +
  8692. " });\n" +
  8693. "}\n" +
  8694. "document.head.appendChild(_js);\n";
  8695. _iframe.contentWindow.document.head.appendChild(_ajs);
  8696. }
  8697. }
  8698. //U.MD.D.I.openClick(str);
  8699. //如果有任务栏信息
  8700. // if (_taskbar) {
  8701. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8702. // }
  8703. }
  8704. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8705. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8706. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8707. _userid = student.userid, //登录用户id
  8708. _username = student.student //用户名字
  8709. let _iframe;
  8710. let _cid = cid,
  8711. _stage = stage,
  8712. _task = task,
  8713. _tool = tool;
  8714. var _jie = $$("div", {
  8715. "style": {
  8716. "position": "absolute",
  8717. "bottom": "50px",
  8718. "right": "50px",
  8719. "zIndex": "9999",
  8720. "backgroundColor": "#2268bc",
  8721. "color": "#fff",
  8722. "padding": "12px 20px",
  8723. "cursor": "pointer",
  8724. "borderRadius": "4px",
  8725. },
  8726. "innerHTML": "提交作业"
  8727. })
  8728. let aTool = ''
  8729. let _loading = document.createElement('div')
  8730. _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;"
  8731. // _loading.id = "";
  8732. let _lchild = document.createElement('div')
  8733. let _limg = document.createElement('img')
  8734. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8735. _limg.style = "width: 26px;margin-right: 10px;"
  8736. _lchild.appendChild(_limg)
  8737. let _lspan = document.createElement('span')
  8738. _lspan.innerHTML = "上传中..."
  8739. _lchild.appendChild(_lspan)
  8740. _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%);"
  8741. _loading.appendChild(_lchild)
  8742. var _box = $$('div', {
  8743. "style": {
  8744. "position": "relative",
  8745. "width": "100%",
  8746. "height": "100%",
  8747. },
  8748. })
  8749. _box.appendChild(_loading)
  8750. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8751. switch (str) {
  8752. case "whiteboard":
  8753. aTool = 1;
  8754. _iframe = $$("iframe", {
  8755. "frameborder": "no",
  8756. "border": "0",
  8757. "scrolling ": "no",
  8758. "style": {
  8759. "cssText": "border:0;width:100%;height:100%"
  8760. },
  8761. "src": "https://beta.iwb.cocorobo.cn/"
  8762. })
  8763. _box.appendChild(_iframe);
  8764. _box.appendChild(_jie);
  8765. _formdiv = new U.UF.UI.form(
  8766. "电子白板-" + _username,
  8767. _box, {
  8768. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8769. "style": {
  8770. "width": "90%",
  8771. "height": "90%",
  8772. "overflow": 'hidden'
  8773. },
  8774. "onresize": function () { }
  8775. }, {
  8776. closecallback: function () { }
  8777. }, {
  8778. "style": {
  8779. "height": "36px"
  8780. }
  8781. }).form; //创建窗体
  8782. _taskbar = {
  8783. "id": str + _formdiv.id,
  8784. "style": {
  8785. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8786. },
  8787. "name": "电子白板",
  8788. "forms": _formdiv,
  8789. "click": function () {
  8790. U.MD.D.I.openApplication(str, obj, info);
  8791. }
  8792. }
  8793. break;
  8794. case "mind":
  8795. aTool = 3;
  8796. _iframe = $$("iframe", {
  8797. "frameborder": "no",
  8798. "border": "0",
  8799. "scrolling ": "no",
  8800. "style": {
  8801. "cssText": "border:0;width:100%;height:100%"
  8802. },
  8803. "src": "/kityminder-editor/dist/index.html"
  8804. })
  8805. _box.appendChild(_iframe);
  8806. _box.appendChild(_jie);
  8807. _formdiv = new U.UF.UI.form(
  8808. "思维导图-" + _username,
  8809. _box, { //"/jsmind/example/demo.html"
  8810. "id": "mind" + cid + stage + task + tool + _userid,
  8811. "style": {
  8812. "width": "90%",
  8813. "height": "90%",
  8814. "overflow": 'hidden'
  8815. },
  8816. "onresize": function () { }
  8817. }, {
  8818. closecallback: function () { }
  8819. }, {
  8820. "style": {
  8821. "height": "36px"
  8822. }
  8823. }).form; //创建窗体
  8824. _taskbar = {
  8825. "id": str + _formdiv.id,
  8826. "style": {
  8827. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8828. },
  8829. "name": "思维导图",
  8830. "forms": _formdiv,
  8831. "click": function () {
  8832. U.MD.D.I.openApplication(str, obj, info);
  8833. }
  8834. }
  8835. break;
  8836. case "MindMap":
  8837. aTool = 3;
  8838. _iframe = $$("iframe", {
  8839. "frameborder": "no",
  8840. "border": "0",
  8841. "scrolling ": "no",
  8842. "style": {
  8843. "cssText": "border:0;width:100%;height:100%"
  8844. },
  8845. "src": "//cloud.cocorobo.cn/mind/"
  8846. })
  8847. _box.appendChild(_iframe);
  8848. _box.appendChild(_jie);
  8849. _formdiv = new U.UF.UI.form(
  8850. "思维导图-" + _username,
  8851. _box, { //"/jsmind/example/demo.html"
  8852. "id": "mind" + cid + stage + task + tool + _userid,
  8853. "style": {
  8854. "width": "90%",
  8855. "height": "90%",
  8856. "overflow": 'hidden'
  8857. },
  8858. "onresize": function () { }
  8859. }, {
  8860. closecallback: function () { }
  8861. }, {
  8862. "style": {
  8863. "height": "36px"
  8864. }
  8865. }).form; //创建窗体
  8866. _taskbar = {
  8867. "id": str + _formdiv.id,
  8868. "style": {
  8869. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8870. },
  8871. "name": "思维导图",
  8872. "forms": _formdiv,
  8873. "click": function () {
  8874. U.MD.D.I.openApplication(str, obj, info);
  8875. }
  8876. }
  8877. break;
  8878. case "doc":
  8879. aTool = 6;
  8880. _iframe = $$("iframe", {
  8881. "frameborder": "no",
  8882. "border": "0",
  8883. "scrolling ": "no",
  8884. "style": {
  8885. "cssText": "border:0;width:100%;height:100%"
  8886. },
  8887. "src": "/Office/Word/WordEditArea.htm"
  8888. })
  8889. _box.appendChild(_iframe);
  8890. _box.appendChild(_jie);
  8891. _formdiv = new U.UF.UI.form(
  8892. "协同文档-" + _username,
  8893. _box, {
  8894. "id": "doc" + cid + stage + task + tool + _userid,
  8895. "style": {
  8896. "width": "90%",
  8897. "height": "90%",
  8898. "overflow": 'hidden'
  8899. },
  8900. "onresize": function () { }
  8901. }, {
  8902. closecallback: function () { }
  8903. }, {
  8904. "style": {
  8905. "height": "36px"
  8906. }
  8907. }).form; //创建窗体
  8908. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8909. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8910. })
  8911. _taskbar = {
  8912. "id": str + _formdiv.id,
  8913. "style": {
  8914. "backgroundImage": "url(/img/icon/doc.png)"
  8915. },
  8916. "name": "协同文档",
  8917. "forms": _formdiv,
  8918. "click": function () {
  8919. U.MD.D.I.openApplication(str, obj, info);
  8920. }
  8921. }
  8922. break;
  8923. case "mindNetwork": //好友打开
  8924. aTool = 7;
  8925. _iframe = $$("iframe", {
  8926. "webkitallowfullscreen": "",
  8927. "mozallowfullscreen": "",
  8928. "allowfullscreen": "",
  8929. "frameborder": "no",
  8930. "border": "0",
  8931. "scrolling ": "no",
  8932. "style": {
  8933. "cssText": "border:0; width:100%; height:100%;"
  8934. },
  8935. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8936. })
  8937. _box.appendChild(_iframe);
  8938. _box.appendChild(_jie);
  8939. _formdiv = new U.UF.UI.form(
  8940. "思维网格-" + _username,
  8941. _box, {
  8942. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8943. "style": {
  8944. "width": "90%",
  8945. "height": "90%",
  8946. "overflow": 'hidden'
  8947. },
  8948. "onresize": function () { }
  8949. }, {
  8950. closecallback: function () { }
  8951. }, {
  8952. "style": {
  8953. "height": "36px"
  8954. }
  8955. }).form; //创建窗体
  8956. _taskbar = {
  8957. "id": str + _formdiv.id,
  8958. "style": {
  8959. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8960. },
  8961. "name": "思维网格",
  8962. "forms": _formdiv,
  8963. "click": function () {
  8964. U.MD.D.I.openApplication(str, obj, info);
  8965. }
  8966. }
  8967. break;
  8968. case "courseDesign":
  8969. _iframe = $$("iframe", {
  8970. "webkitallowfullscreen": "",
  8971. "mozallowfullscreen": "",
  8972. "allowfullscreen": "",
  8973. "frameborder": "no",
  8974. "border": "0",
  8975. "scrolling ": "no",
  8976. "style": {
  8977. "cssText": "border:0; width:100%; height:100%;"
  8978. },
  8979. "src": "/course-design-vue"
  8980. })
  8981. _box.appendChild(_iframe);
  8982. _box.appendChild(_jie);
  8983. _formdiv = new U.UF.UI.form(
  8984. "项目设计-" + _username,
  8985. _box, {
  8986. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8987. "style": {
  8988. "width": "90%",
  8989. "height": "90%",
  8990. "overflow": 'hidden'
  8991. },
  8992. "onresize": function () { }
  8993. }, {
  8994. closecallback: function () { }
  8995. }, {
  8996. "style": {
  8997. "height": "36px"
  8998. }
  8999. }).form; //创建窗体
  9000. _taskbar = {
  9001. "id": str + _formdiv.id,
  9002. "style": {
  9003. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9004. },
  9005. "name": "项目设计",
  9006. "forms": _formdiv,
  9007. "click": function () {
  9008. U.MD.D.I.openApplication(str, obj, info);
  9009. }
  9010. }
  9011. break;
  9012. }
  9013. const script1 = document.createElement("script");
  9014. script1.type = "text/javascript";
  9015. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9016. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9017. const script2 = document.createElement("script");
  9018. script2.type = "text/javascript";
  9019. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9020. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9021. const script3 = document.createElement("script");
  9022. script3.type = "text/javascript";
  9023. script3.charset = "UTF-8";
  9024. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9025. const script4 = document.createElement("script");
  9026. script4.type = "text/javascript";
  9027. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9028. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9029. if (_iframe) {
  9030. if (str == 'doc') {
  9031. _iframe = _formdiv.querySelector('iframe')
  9032. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9033. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9034. _iframe.contentWindow.document.body.appendChild(script1);
  9035. _iframe.contentWindow.document.body.appendChild(script2);
  9036. // _iframe.contentWindow.document.body.appendChild(script3);
  9037. _iframe.contentWindow.document.body.appendChild(script4);
  9038. })
  9039. if (onloadListener) {
  9040. _iframe.contentDocument.location.reload()
  9041. } else {
  9042. _iframe.contentDocument.location.reload()
  9043. }
  9044. } else if (str == 'courseDesign') {
  9045. U.UF.DL.iframeLoad(_iframe, function () {
  9046. // _iframe.contentWindow.U.MD.O.W.load();
  9047. // _iframe.contentWindow.document.body.appendChild(script1);
  9048. _iframe.contentWindow.document.body.appendChild(script2);
  9049. _iframe.contentWindow.document.body.appendChild(script4);
  9050. })
  9051. } else if (str == 'mind') {
  9052. _iframe = _formdiv.querySelector('iframe')
  9053. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9054. //
  9055. _iframe.contentWindow.document.body.appendChild(script1);
  9056. _iframe.contentWindow.document.body.appendChild(script2);
  9057. _iframe.contentWindow.document.body.appendChild(script4);
  9058. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9059. })
  9060. if (onloadListener) {
  9061. _iframe.contentDocument.location.reload()
  9062. } else {
  9063. _iframe.contentDocument.location.reload()
  9064. }
  9065. } else if (str == 'whiteboard') {
  9066. _iframe = _formdiv.querySelector('iframe')
  9067. let onloadListener = _iframe.onload = () => {
  9068. _iframe.contentWindow.document.body.appendChild(script1);
  9069. _iframe.contentWindow.document.body.appendChild(script2);
  9070. _iframe.contentWindow.document.body.appendChild(script4);
  9071. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9072. };
  9073. // if (onloadListener) {
  9074. // try {
  9075. // _iframe.src += "?cocorobo="+new Date().getTime()
  9076. // _iframe.contentWindow.document.location.reload()
  9077. // } catch (error) {
  9078. // }
  9079. // } else {
  9080. // _iframe.contentDocument.location.reload()
  9081. // }
  9082. } else {
  9083. _iframe.onload = () => {
  9084. _iframe.contentWindow.document.body.appendChild(script1);
  9085. _iframe.contentWindow.document.body.appendChild(script2);
  9086. // _iframe.contentWindow.document.body.appendChild(script3);
  9087. _iframe.contentWindow.document.body.appendChild(script4);
  9088. };
  9089. }
  9090. _jie.onclick = async () => {
  9091. let text = ''
  9092. if (aTool == 1) {
  9093. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9094. } else if (aTool == 6) {
  9095. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9096. } else if (aTool == 3) {
  9097. text = await U.MD.D.I.getEditorContent(_iframe);
  9098. }
  9099. _loading.style.display = 'flex'
  9100. console.log(_loading);
  9101. var _ajs = _iframe.contentWindow.document.createElement("script");
  9102. _ajs.type = "text/javascript";
  9103. _ajs.innerHTML =
  9104. // 'console.log(' + _loading + ');\n' +
  9105. 'var _js = document.createElement("script");\n' +
  9106. '_js.type="text/javascript";\n' +
  9107. '_js.charset="UTF-8";\n' +
  9108. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9109. "_js.onload = function(){\n" +
  9110. ' var a = document.getElementsByTagName("img")\n' +
  9111. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9112. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9113. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9114. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9115. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9116. "beforeUpload_shishi(file," +
  9117. "'" +
  9118. _userid +
  9119. "'" +
  9120. ", " +
  9121. "'" +
  9122. _cid +
  9123. "'" +
  9124. ", " +
  9125. "'" +
  9126. _stage +
  9127. "'" +
  9128. ", " +
  9129. "'" +
  9130. _task +
  9131. "'" +
  9132. ", " +
  9133. "'" +
  9134. _tool +
  9135. "'" +
  9136. ", " +
  9137. "'" +
  9138. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9139. "'" +
  9140. ", " +
  9141. "'" +
  9142. aTool +
  9143. "'" +
  9144. ", " +
  9145. "`" +
  9146. text +
  9147. "`" +
  9148. ")\n" +
  9149. " });\n" +
  9150. "}\n" +
  9151. "document.head.appendChild(_js);\n";
  9152. _iframe.contentWindow.document.head.appendChild(_ajs);
  9153. }
  9154. }
  9155. }
  9156. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9157. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9158. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9159. _userid = student.userid, //登录用户id
  9160. _username = student.student //用户名字
  9161. let _iframe;
  9162. let _cid = cid,
  9163. _stage = stage,
  9164. _task = task,
  9165. _tool = tool;
  9166. var _jie = $$("div", {
  9167. "style": {
  9168. "position": "absolute",
  9169. "bottom": "50px",
  9170. "right": "50px",
  9171. "zIndex": "9999",
  9172. "backgroundColor": "#2268bc",
  9173. "color": "#fff",
  9174. "padding": "12px 20px",
  9175. "cursor": "pointer",
  9176. "borderRadius": "4px",
  9177. },
  9178. "innerHTML": "提交作业"
  9179. })
  9180. let aTool = ''
  9181. let _loading = document.createElement('div')
  9182. _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;"
  9183. // _loading.id = "";
  9184. let _lchild = document.createElement('div')
  9185. let _limg = document.createElement('img')
  9186. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9187. _limg.style = "width: 26px;margin-right: 10px;"
  9188. _lchild.appendChild(_limg)
  9189. let _lspan = document.createElement('span')
  9190. _lspan.innerHTML = "上传中..."
  9191. _lchild.appendChild(_lspan)
  9192. _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%);"
  9193. _loading.appendChild(_lchild)
  9194. var _box = $$('div', {
  9195. "style": {
  9196. "position": "relative",
  9197. "width": "100%",
  9198. "height": "100%",
  9199. },
  9200. })
  9201. _box.appendChild(_loading)
  9202. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9203. switch (str) {
  9204. case "whiteboard":
  9205. aTool = 1;
  9206. _iframe = $$("iframe", {
  9207. "frameborder": "no",
  9208. "border": "0",
  9209. "scrolling ": "no",
  9210. "style": {
  9211. "cssText": "border:0;width:100%;height:100%"
  9212. },
  9213. "src": "https://beta.iwb.cocorobo.cn/"
  9214. })
  9215. _box.appendChild(_iframe);
  9216. _box.appendChild(_jie);
  9217. _formdiv = new U.UF.UI.form(
  9218. "电子白板-" + _username,
  9219. _box, {
  9220. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9221. "style": {
  9222. "width": "90%",
  9223. "height": "90%",
  9224. "overflow": 'hidden'
  9225. },
  9226. "onresize": function () { }
  9227. }, {
  9228. closecallback: function () { }
  9229. }, {
  9230. "style": {
  9231. "height": "36px"
  9232. }
  9233. }).form; //创建窗体
  9234. _taskbar = {
  9235. "id": str + _formdiv.id,
  9236. "style": {
  9237. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9238. },
  9239. "name": "电子白板",
  9240. "forms": _formdiv,
  9241. "click": function () {
  9242. U.MD.D.I.openApplication(str, obj, info);
  9243. }
  9244. }
  9245. break;
  9246. case "mind":
  9247. aTool = 3;
  9248. _iframe = $$("iframe", {
  9249. "frameborder": "no",
  9250. "border": "0",
  9251. "scrolling ": "no",
  9252. "style": {
  9253. "cssText": "border:0;width:100%;height:100%"
  9254. },
  9255. "src": "/kityminder-editor/dist/index.html"
  9256. })
  9257. _box.appendChild(_iframe);
  9258. _box.appendChild(_jie);
  9259. _formdiv = new U.UF.UI.form(
  9260. "思维导图-" + _username,
  9261. _box, { //"/jsmind/example/demo.html"
  9262. "id": "mind" + cid + stage + task + tool + _userid,
  9263. "style": {
  9264. "width": "90%",
  9265. "height": "90%",
  9266. "overflow": 'hidden'
  9267. },
  9268. "onresize": function () { }
  9269. }, {
  9270. closecallback: function () { }
  9271. }, {
  9272. "style": {
  9273. "height": "36px"
  9274. }
  9275. }).form; //创建窗体
  9276. _taskbar = {
  9277. "id": str + _formdiv.id,
  9278. "style": {
  9279. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9280. },
  9281. "name": "思维导图",
  9282. "forms": _formdiv,
  9283. "click": function () {
  9284. U.MD.D.I.openApplication(str, obj, info);
  9285. }
  9286. }
  9287. break;
  9288. case "MindMap":
  9289. aTool = 3;
  9290. _iframe = $$("iframe", {
  9291. "frameborder": "no",
  9292. "border": "0",
  9293. "scrolling ": "no",
  9294. "style": {
  9295. "cssText": "border:0;width:100%;height:100%"
  9296. },
  9297. "src": "//cloud.cocorobo.cn/mind/"
  9298. })
  9299. _box.appendChild(_iframe);
  9300. _box.appendChild(_jie);
  9301. _formdiv = new U.UF.UI.form(
  9302. "思维导图-" + _username,
  9303. _box, { //"/jsmind/example/demo.html"
  9304. "id": "mind" + cid + stage + task + tool + _userid,
  9305. "style": {
  9306. "width": "90%",
  9307. "height": "90%",
  9308. "overflow": 'hidden'
  9309. },
  9310. "onresize": function () { }
  9311. }, {
  9312. closecallback: function () { }
  9313. }, {
  9314. "style": {
  9315. "height": "36px"
  9316. }
  9317. }).form; //创建窗体
  9318. _taskbar = {
  9319. "id": str + _formdiv.id,
  9320. "style": {
  9321. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9322. },
  9323. "name": "思维导图",
  9324. "forms": _formdiv,
  9325. "click": function () {
  9326. U.MD.D.I.openApplication(str, obj, info);
  9327. }
  9328. }
  9329. break;
  9330. case "doc":
  9331. aTool = 6;
  9332. _iframe = $$("iframe", {
  9333. "frameborder": "no",
  9334. "border": "0",
  9335. "scrolling ": "no",
  9336. "style": {
  9337. "cssText": "border:0;width:100%;height:100%"
  9338. },
  9339. "src": "/Office/Word/WordEditArea.htm"
  9340. })
  9341. _box.appendChild(_iframe);
  9342. _box.appendChild(_jie);
  9343. _formdiv = new U.UF.UI.form(
  9344. "协同文档-" + _username,
  9345. _box, {
  9346. "id": "doc" + cid + stage + task + tool + _userid,
  9347. "style": {
  9348. "width": "90%",
  9349. "height": "90%",
  9350. "overflow": 'hidden'
  9351. },
  9352. "onresize": function () { }
  9353. }, {
  9354. closecallback: function () { }
  9355. }, {
  9356. "style": {
  9357. "height": "36px"
  9358. }
  9359. }).form; //创建窗体
  9360. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9361. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9362. })
  9363. _taskbar = {
  9364. "id": str + _formdiv.id,
  9365. "style": {
  9366. "backgroundImage": "url(/img/icon/doc.png)"
  9367. },
  9368. "name": "协同文档",
  9369. "forms": _formdiv,
  9370. "click": function () {
  9371. U.MD.D.I.openApplication(str, obj, info);
  9372. }
  9373. }
  9374. break;
  9375. case "mindNetwork": //好友打开
  9376. aTool = 7;
  9377. _iframe = $$("iframe", {
  9378. "webkitallowfullscreen": "",
  9379. "mozallowfullscreen": "",
  9380. "allowfullscreen": "",
  9381. "frameborder": "no",
  9382. "border": "0",
  9383. "scrolling ": "no",
  9384. "style": {
  9385. "cssText": "border:0; width:100%; height:100%;"
  9386. },
  9387. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9388. })
  9389. _box.appendChild(_iframe);
  9390. _box.appendChild(_jie);
  9391. _formdiv = new U.UF.UI.form(
  9392. "思维网格-" + _username,
  9393. _box, {
  9394. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9395. "style": {
  9396. "width": "90%",
  9397. "height": "90%",
  9398. "overflow": 'hidden'
  9399. },
  9400. "onresize": function () { }
  9401. }, {
  9402. closecallback: function () { }
  9403. }, {
  9404. "style": {
  9405. "height": "36px"
  9406. }
  9407. }).form; //创建窗体
  9408. _taskbar = {
  9409. "id": str + _formdiv.id,
  9410. "style": {
  9411. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9412. },
  9413. "name": "思维网格",
  9414. "forms": _formdiv,
  9415. "click": function () {
  9416. U.MD.D.I.openApplication(str, obj, info);
  9417. }
  9418. }
  9419. break;
  9420. case "courseDesign":
  9421. _iframe = $$("iframe", {
  9422. "webkitallowfullscreen": "",
  9423. "mozallowfullscreen": "",
  9424. "allowfullscreen": "",
  9425. "frameborder": "no",
  9426. "border": "0",
  9427. "scrolling ": "no",
  9428. "style": {
  9429. "cssText": "border:0; width:100%; height:100%;"
  9430. },
  9431. "src": "/course-design-vue"
  9432. })
  9433. _box.appendChild(_iframe);
  9434. _box.appendChild(_jie);
  9435. _formdiv = new U.UF.UI.form(
  9436. "项目设计-" + _username,
  9437. _box, {
  9438. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9439. "style": {
  9440. "width": "90%",
  9441. "height": "90%",
  9442. "overflow": 'hidden'
  9443. },
  9444. "onresize": function () { }
  9445. }, {
  9446. closecallback: function () { }
  9447. }, {
  9448. "style": {
  9449. "height": "36px"
  9450. }
  9451. }).form; //创建窗体
  9452. _taskbar = {
  9453. "id": str + _formdiv.id,
  9454. "style": {
  9455. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9456. },
  9457. "name": "项目设计",
  9458. "forms": _formdiv,
  9459. "click": function () {
  9460. U.MD.D.I.openApplication(str, obj, info);
  9461. }
  9462. }
  9463. break;
  9464. }
  9465. const script1 = document.createElement("script");
  9466. script1.type = "text/javascript";
  9467. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9468. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9469. const script2 = document.createElement("script");
  9470. script2.type = "text/javascript";
  9471. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9472. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9473. const script3 = document.createElement("script");
  9474. script3.type = "text/javascript";
  9475. script3.charset = "UTF-8";
  9476. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9477. const script4 = document.createElement("script");
  9478. script4.type = "text/javascript";
  9479. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9480. script4.src = window.origin + "/js/Common/jietu2E.js";
  9481. if (_iframe) {
  9482. if (str == 'doc') {
  9483. _iframe = _formdiv.querySelector('iframe')
  9484. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9485. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9486. _iframe.contentWindow.document.body.appendChild(script1);
  9487. _iframe.contentWindow.document.body.appendChild(script2);
  9488. // _iframe.contentWindow.document.body.appendChild(script3);
  9489. _iframe.contentWindow.document.body.appendChild(script4);
  9490. })
  9491. if (onloadListener) {
  9492. _iframe.contentDocument.location.reload()
  9493. } else {
  9494. _iframe.contentDocument.location.reload()
  9495. }
  9496. } else if (str == 'courseDesign') {
  9497. U.UF.DL.iframeLoad(_iframe, function () {
  9498. // _iframe.contentWindow.U.MD.O.W.load();
  9499. // _iframe.contentWindow.document.body.appendChild(script1);
  9500. _iframe.contentWindow.document.body.appendChild(script2);
  9501. _iframe.contentWindow.document.body.appendChild(script4);
  9502. })
  9503. } else if (str == 'mind') {
  9504. _iframe = _formdiv.querySelector('iframe')
  9505. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9506. //
  9507. _iframe.contentWindow.document.body.appendChild(script1);
  9508. _iframe.contentWindow.document.body.appendChild(script2);
  9509. _iframe.contentWindow.document.body.appendChild(script4);
  9510. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9511. })
  9512. if (onloadListener) {
  9513. _iframe.contentDocument.location.reload()
  9514. } else {
  9515. _iframe.contentDocument.location.reload()
  9516. }
  9517. } else if (str == 'whiteboard') {
  9518. _iframe = _formdiv.querySelector('iframe')
  9519. let onloadListener = _iframe.onload = () => {
  9520. _iframe.contentWindow.document.body.appendChild(script1);
  9521. _iframe.contentWindow.document.body.appendChild(script2);
  9522. _iframe.contentWindow.document.body.appendChild(script4);
  9523. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9524. };
  9525. // if (onloadListener) {
  9526. // try {
  9527. // _iframe.src += "?cocorobo="+new Date().getTime()
  9528. // _iframe.contentWindow.document.location.reload()
  9529. // } catch (error) {
  9530. // }
  9531. // } else {
  9532. // _iframe.contentDocument.location.reload()
  9533. // }
  9534. } else {
  9535. _iframe.onload = () => {
  9536. _iframe.contentWindow.document.body.appendChild(script1);
  9537. _iframe.contentWindow.document.body.appendChild(script2);
  9538. // _iframe.contentWindow.document.body.appendChild(script3);
  9539. _iframe.contentWindow.document.body.appendChild(script4);
  9540. };
  9541. }
  9542. _jie.onclick = async () => {
  9543. let text = ''
  9544. if (aTool == 1) {
  9545. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9546. } else if (aTool == 6) {
  9547. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9548. } else if (aTool == 3) {
  9549. text = await U.MD.D.I.getEditorContent(_iframe);
  9550. }
  9551. _loading.style.display = 'flex'
  9552. console.log(_loading);
  9553. var _ajs = _iframe.contentWindow.document.createElement("script");
  9554. _ajs.type = "text/javascript";
  9555. _ajs.innerHTML =
  9556. // 'console.log(' + _loading + ');\n' +
  9557. 'var _js = document.createElement("script");\n' +
  9558. '_js.type="text/javascript";\n' +
  9559. '_js.charset="UTF-8";\n' +
  9560. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9561. "_js.onload = function(){\n" +
  9562. ' var a = document.getElementsByTagName("img")\n' +
  9563. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9564. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9565. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9566. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9567. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9568. "beforeUpload_shishi(file," +
  9569. "'" +
  9570. _userid +
  9571. "'" +
  9572. ", " +
  9573. "'" +
  9574. _cid +
  9575. "'" +
  9576. ", " +
  9577. "'" +
  9578. _stage +
  9579. "'" +
  9580. ", " +
  9581. "'" +
  9582. _task +
  9583. "'" +
  9584. ", " +
  9585. "'" +
  9586. _tool +
  9587. "'" +
  9588. ", " +
  9589. "'" +
  9590. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9591. "'" +
  9592. ", " +
  9593. "'" +
  9594. aTool +
  9595. "'" +
  9596. ", " +
  9597. "`" +
  9598. text +
  9599. "`" +
  9600. ")\n" +
  9601. " });\n" +
  9602. "}\n" +
  9603. "document.head.appendChild(_js);\n";
  9604. _iframe.contentWindow.document.head.appendChild(_ajs);
  9605. }
  9606. }
  9607. }
  9608. U.MD.D.I.getEditorContent = function (iframe) {
  9609. return new Promise((resolve, reject) => {
  9610. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9611. console.log(content);
  9612. resolve(content)
  9613. });
  9614. });
  9615. }
  9616. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9617. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9618. // if (res.value[0].length > 0) {
  9619. // // resolve(res.value[0][0].text);
  9620. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9621. // $(fileInput).val('');
  9622. // });
  9623. // }
  9624. // }, [], { "type": "GET", "withCredentials": true });
  9625. var xmlhttp;
  9626. var Mac, Sn, DeviceId
  9627. if (window.XMLHttpRequest) {
  9628. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9629. xmlhttp = new XMLHttpRequest();
  9630. } else {
  9631. // IE6, IE5 浏览器执行代码
  9632. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9633. }
  9634. xmlhttp.onreadystatechange = function () {
  9635. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9636. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9637. // resolve(res.value[0][0].text);
  9638. if (type == '2') {
  9639. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9640. } else if (type == '3') {
  9641. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9642. }
  9643. } else {
  9644. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9645. }
  9646. }
  9647. }
  9648. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9649. xmlhttp.send();
  9650. }
  9651. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9652. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9653. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9654. _userinfo = US.userInfo, //登录用户信息
  9655. _userid = US.userInfo.userid //登录用户id
  9656. let _iframe;
  9657. let _cid = cid,
  9658. _stage = stage,
  9659. _task = task,
  9660. _tool = tool;
  9661. var _jie = $$("div", {
  9662. "style": {
  9663. "position": "absolute",
  9664. "bottom": "50px",
  9665. "right": "50px",
  9666. "zIndex": "9999",
  9667. "backgroundColor": "#2268bc",
  9668. "color": "#fff",
  9669. "padding": "12px 20px",
  9670. "cursor": "pointer",
  9671. "borderRadius": "4px",
  9672. },
  9673. "innerHTML": "确认并提交"
  9674. })
  9675. let aTool = ''
  9676. let _loading = document.createElement('div')
  9677. _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;"
  9678. // _loading.id = "";
  9679. let _lchild = document.createElement('div')
  9680. let _limg = document.createElement('img')
  9681. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9682. _limg.style = "width: 26px;margin-right: 10px;"
  9683. _lchild.appendChild(_limg)
  9684. let _lspan = document.createElement('span')
  9685. _lspan.innerHTML = "上传中..."
  9686. _lchild.appendChild(_lspan)
  9687. _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%);"
  9688. _loading.appendChild(_lchild)
  9689. var _box = $$('div', {
  9690. "style": {
  9691. "position": "relative",
  9692. "width": "100%",
  9693. "height": "100%",
  9694. },
  9695. })
  9696. _box.appendChild(_loading)
  9697. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9698. switch (str) {
  9699. case "whiteboard":
  9700. aTool = 1;
  9701. _iframe = $$("iframe", {
  9702. "frameborder": "no",
  9703. "border": "0",
  9704. "scrolling ": "no",
  9705. "style": {
  9706. "cssText": "border:0;width:100%;height:100%"
  9707. },
  9708. "src": "https://beta.iwb.cocorobo.cn/"
  9709. })
  9710. _box.appendChild(_iframe);
  9711. _box.appendChild(_jie);
  9712. _formdiv = new U.UF.UI.form(
  9713. "电子白板",
  9714. _box, {
  9715. "id": "whiteboards" + cid + stage + task + tool,
  9716. "style": {
  9717. "width": "90%",
  9718. "height": "90%",
  9719. "overflow": 'hidden'
  9720. },
  9721. "onresize": function () { }
  9722. }, {
  9723. closecallback: function () { }
  9724. }, {
  9725. "style": {
  9726. "height": "36px"
  9727. }
  9728. }).form; //创建窗体
  9729. _taskbar = {
  9730. "id": str + _formdiv.id,
  9731. "style": {
  9732. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9733. },
  9734. "name": "电子白板",
  9735. "forms": _formdiv,
  9736. "click": function () {
  9737. U.MD.D.I.openApplication(str, obj, info);
  9738. }
  9739. }
  9740. break;
  9741. case "mind":
  9742. aTool = 3;
  9743. _iframe = $$("iframe", {
  9744. "frameborder": "no",
  9745. "border": "0",
  9746. "scrolling ": "no",
  9747. "style": {
  9748. "cssText": "border:0;width:100%;height:100%"
  9749. },
  9750. "src": "/kityminder-editor/dist/index.html"
  9751. });
  9752. _box.appendChild(_iframe);
  9753. _box.appendChild(_jie);
  9754. _formdiv = new U.UF.UI.form(
  9755. "思维导图",
  9756. _box, { //"/jsmind/example/demo.html"
  9757. "id": "minds" + cid + stage + task + tool,
  9758. "style": {
  9759. "width": "90%",
  9760. "height": "90%",
  9761. "overflow": 'hidden'
  9762. },
  9763. "onresize": function () { }
  9764. }, {
  9765. closecallback: function () { }
  9766. }, {
  9767. "style": {
  9768. "height": "36px"
  9769. }
  9770. }).form; //创建窗体
  9771. _taskbar = {
  9772. "id": str + _formdiv.id,
  9773. "style": {
  9774. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9775. },
  9776. "name": "思维导图",
  9777. "forms": _formdiv,
  9778. "click": function () {
  9779. U.MD.D.I.openApplication(str, obj, info);
  9780. }
  9781. }
  9782. break;
  9783. case "doc":
  9784. aTool = 6;
  9785. _iframe = $$("iframe", {
  9786. "frameborder": "no",
  9787. "border": "0",
  9788. "scrolling ": "no",
  9789. "style": {
  9790. "cssText": "border:0;width:100%;height:100%"
  9791. },
  9792. "src": "/Office/Word/WordEditArea.htm"
  9793. })
  9794. _box.appendChild(_iframe);
  9795. _box.appendChild(_jie);
  9796. _formdiv = new U.UF.UI.form(
  9797. "协同文档",
  9798. _box, {
  9799. "id": "docs" + cid + stage + task + tool,
  9800. "style": {
  9801. "width": "90%",
  9802. "height": "90%",
  9803. "overflow": 'hidden'
  9804. },
  9805. "onresize": function () { }
  9806. }, {
  9807. closecallback: function () { }
  9808. }, {
  9809. "style": {
  9810. "height": "36px"
  9811. }
  9812. }).form; //创建窗体
  9813. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9814. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9815. })
  9816. _taskbar = {
  9817. "id": str + _formdiv.id,
  9818. "style": {
  9819. "backgroundImage": "url(/img/icon/doc.png)"
  9820. },
  9821. "name": "协同文档",
  9822. "forms": _formdiv,
  9823. "click": function () {
  9824. U.MD.D.I.openApplication(str, obj, info);
  9825. }
  9826. }
  9827. break;
  9828. }
  9829. const script1 = document.createElement("script");
  9830. script1.type = "text/javascript";
  9831. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9832. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9833. const script2 = document.createElement("script");
  9834. script2.type = "text/javascript";
  9835. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9836. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9837. const script3 = document.createElement("script");
  9838. script3.type = "text/javascript";
  9839. script3.charset = "UTF-8";
  9840. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9841. const script4 = document.createElement("script");
  9842. script4.type = "text/javascript";
  9843. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9844. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9845. if (_iframe) {
  9846. if (str == 'doc') {
  9847. _iframe = _formdiv.querySelector('iframe')
  9848. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9849. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9850. _iframe.contentWindow.document.body.appendChild(script1);
  9851. _iframe.contentWindow.document.body.appendChild(script2);
  9852. // _iframe.contentWindow.document.body.appendChild(script3);
  9853. _iframe.contentWindow.document.body.appendChild(script4);
  9854. })
  9855. if (onloadListener) {
  9856. _iframe.contentDocument.location.reload()
  9857. } else {
  9858. _iframe.contentDocument.location.reload()
  9859. }
  9860. } else if (str == 'mind') {
  9861. _iframe = _formdiv.querySelector('iframe')
  9862. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9863. _iframe.contentWindow.document.body.appendChild(script1);
  9864. _iframe.contentWindow.document.body.appendChild(script2);
  9865. _iframe.contentWindow.document.body.appendChild(script4);
  9866. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9867. })
  9868. if (onloadListener) {
  9869. _iframe.contentDocument.location.reload()
  9870. } else {
  9871. _iframe.contentDocument.location.reload()
  9872. }
  9873. } else {
  9874. _iframe.onload = () => {
  9875. _iframe.contentWindow.document.body.appendChild(script1);
  9876. _iframe.contentWindow.document.body.appendChild(script2);
  9877. // _iframe.contentWindow.document.body.appendChild(script3);
  9878. _iframe.contentWindow.document.body.appendChild(script4);
  9879. };
  9880. }
  9881. _jie.onclick = async () => {
  9882. let text = ''
  9883. if (aTool == 6) {
  9884. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9885. } else if (aTool == 3) {
  9886. text = await U.MD.D.I.getEditorContent(_iframe);
  9887. }
  9888. _loading.style.display = 'flex'
  9889. console.log(_loading);
  9890. var _ajs = _iframe.contentWindow.document.createElement("script");
  9891. _ajs.type = "text/javascript";
  9892. _ajs.innerHTML =
  9893. // 'console.log(' + _loading + ');\n' +
  9894. 'var _js = document.createElement("script");\n' +
  9895. '_js.type="text/javascript";\n' +
  9896. '_js.charset="UTF-8";\n' +
  9897. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9898. "_js.onload = function(){\n" +
  9899. ' var a = document.getElementsByTagName("img")\n' +
  9900. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9901. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9902. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9903. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9904. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9905. "beforeUpload_shishi(file," +
  9906. "'" +
  9907. _userid +
  9908. "'" +
  9909. ", " +
  9910. "'" +
  9911. _cid +
  9912. "'" +
  9913. ", " +
  9914. "'" +
  9915. _stage +
  9916. "'" +
  9917. ", " +
  9918. "'" +
  9919. _task +
  9920. "'" +
  9921. ", " +
  9922. "'" +
  9923. _tool +
  9924. "'" +
  9925. ", " +
  9926. "'" +
  9927. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9928. "'" +
  9929. ", " +
  9930. "'" +
  9931. aTool +
  9932. "'" +
  9933. ", " +
  9934. "`" +
  9935. text +
  9936. "`" +
  9937. ")\n" +
  9938. " });\n" +
  9939. "}\n" +
  9940. "document.head.appendChild(_js);\n";
  9941. _iframe.contentWindow.document.head.appendChild(_ajs);
  9942. }
  9943. }
  9944. //U.MD.D.I.openClick(str);
  9945. //如果有任务栏信息
  9946. // if (_taskbar) {
  9947. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9948. // }
  9949. }
  9950. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9951. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9952. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9953. _userinfo = US.userInfo, //登录用户信息
  9954. _userid = US.userInfo.userid //登录用户id
  9955. let _iframe;
  9956. let _cid = cid,
  9957. _stage = stage,
  9958. _task = task,
  9959. _tool = tool;
  9960. var _jie = $$("div", {
  9961. "style": {
  9962. "position": "absolute",
  9963. "bottom": "50px",
  9964. "right": "50px",
  9965. "zIndex": "9999",
  9966. "backgroundColor": "#2268bc",
  9967. "color": "#fff",
  9968. "padding": "12px 20px",
  9969. "cursor": "pointer",
  9970. "borderRadius": "4px",
  9971. },
  9972. "innerHTML": "确认并提交"
  9973. })
  9974. let aTool = ''
  9975. let _loading = document.createElement('div')
  9976. _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;"
  9977. // _loading.id = "";
  9978. let _lchild = document.createElement('div')
  9979. let _limg = document.createElement('img')
  9980. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9981. _limg.style = "width: 26px;margin-right: 10px;"
  9982. _lchild.appendChild(_limg)
  9983. let _lspan = document.createElement('span')
  9984. _lspan.innerHTML = "上传中..."
  9985. _lchild.appendChild(_lspan)
  9986. _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%);"
  9987. _loading.appendChild(_lchild)
  9988. var _box = $$('div', {
  9989. "style": {
  9990. "position": "relative",
  9991. "width": "100%",
  9992. "height": "100%",
  9993. },
  9994. })
  9995. _box.appendChild(_loading)
  9996. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9997. switch (str) {
  9998. case "whiteboard":
  9999. aTool = 1;
  10000. _iframe = $$("iframe", {
  10001. "frameborder": "no",
  10002. "border": "0",
  10003. "scrolling ": "no",
  10004. "style": {
  10005. "cssText": "border:0;width:100%;height:100%"
  10006. },
  10007. "src": "https://beta.iwb.cocorobo.cn/"
  10008. })
  10009. _box.appendChild(_iframe);
  10010. _box.appendChild(_jie);
  10011. _formdiv = new U.UF.UI.form(
  10012. "电子白板",
  10013. _box, {
  10014. "id": "whiteboards" + cid + stage + task + tool,
  10015. "style": {
  10016. "width": "90%",
  10017. "height": "90%",
  10018. "overflow": 'hidden'
  10019. },
  10020. "onresize": function () { }
  10021. }, {
  10022. closecallback: function () { }
  10023. }, {
  10024. "style": {
  10025. "height": "36px"
  10026. }
  10027. }).form; //创建窗体
  10028. _taskbar = {
  10029. "id": str + _formdiv.id,
  10030. "style": {
  10031. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10032. },
  10033. "name": "电子白板",
  10034. "forms": _formdiv,
  10035. "click": function () {
  10036. U.MD.D.I.openApplication(str, obj, info);
  10037. }
  10038. }
  10039. break;
  10040. case "mind":
  10041. aTool = 3;
  10042. _iframe = $$("iframe", {
  10043. "frameborder": "no",
  10044. "border": "0",
  10045. "scrolling ": "no",
  10046. "style": {
  10047. "cssText": "border:0;width:100%;height:100%"
  10048. },
  10049. "src": "/kityminder-editor/dist/index.html"
  10050. });
  10051. _box.appendChild(_iframe);
  10052. _box.appendChild(_jie);
  10053. _formdiv = new U.UF.UI.form(
  10054. "思维导图",
  10055. _box, { //"/jsmind/example/demo.html"
  10056. "id": "minds" + cid + stage + task + tool,
  10057. "style": {
  10058. "width": "90%",
  10059. "height": "90%",
  10060. "overflow": 'hidden'
  10061. },
  10062. "onresize": function () { }
  10063. }, {
  10064. closecallback: function () { }
  10065. }, {
  10066. "style": {
  10067. "height": "36px"
  10068. }
  10069. }).form; //创建窗体
  10070. _taskbar = {
  10071. "id": str + _formdiv.id,
  10072. "style": {
  10073. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10074. },
  10075. "name": "思维导图",
  10076. "forms": _formdiv,
  10077. "click": function () {
  10078. U.MD.D.I.openApplication(str, obj, info);
  10079. }
  10080. }
  10081. break;
  10082. case "doc":
  10083. aTool = 6;
  10084. _iframe = $$("iframe", {
  10085. "frameborder": "no",
  10086. "border": "0",
  10087. "scrolling ": "no",
  10088. "style": {
  10089. "cssText": "border:0;width:100%;height:100%"
  10090. },
  10091. "src": "/Office/Word/WordEditArea.htm"
  10092. })
  10093. _box.appendChild(_iframe);
  10094. _box.appendChild(_jie);
  10095. _formdiv = new U.UF.UI.form(
  10096. "协同文档",
  10097. _box, {
  10098. "id": "docs" + cid + stage + task + tool,
  10099. "style": {
  10100. "width": "90%",
  10101. "height": "90%",
  10102. "overflow": 'hidden'
  10103. },
  10104. "onresize": function () { }
  10105. }, {
  10106. closecallback: function () { }
  10107. }, {
  10108. "style": {
  10109. "height": "36px"
  10110. }
  10111. }).form; //创建窗体
  10112. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10113. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10114. })
  10115. _taskbar = {
  10116. "id": str + _formdiv.id,
  10117. "style": {
  10118. "backgroundImage": "url(/img/icon/doc.png)"
  10119. },
  10120. "name": "协同文档",
  10121. "forms": _formdiv,
  10122. "click": function () {
  10123. U.MD.D.I.openApplication(str, obj, info);
  10124. }
  10125. }
  10126. break;
  10127. }
  10128. const script1 = document.createElement("script");
  10129. script1.type = "text/javascript";
  10130. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10131. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10132. const script2 = document.createElement("script");
  10133. script2.type = "text/javascript";
  10134. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10135. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10136. const script3 = document.createElement("script");
  10137. script3.type = "text/javascript";
  10138. script3.charset = "UTF-8";
  10139. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10140. const script4 = document.createElement("script");
  10141. script4.type = "text/javascript";
  10142. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10143. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10144. if (_iframe) {
  10145. if (str == 'doc') {
  10146. _iframe = _formdiv.querySelector('iframe')
  10147. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10148. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10149. _iframe.contentWindow.document.body.appendChild(script1);
  10150. _iframe.contentWindow.document.body.appendChild(script2);
  10151. // _iframe.contentWindow.document.body.appendChild(script3);
  10152. _iframe.contentWindow.document.body.appendChild(script4);
  10153. })
  10154. if (onloadListener) {
  10155. _iframe.contentDocument.location.reload()
  10156. } else {
  10157. _iframe.contentDocument.location.reload()
  10158. }
  10159. } else if (str == 'mind') {
  10160. _iframe = _formdiv.querySelector('iframe')
  10161. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10162. _iframe.contentWindow.document.body.appendChild(script1);
  10163. _iframe.contentWindow.document.body.appendChild(script2);
  10164. _iframe.contentWindow.document.body.appendChild(script4);
  10165. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10166. })
  10167. if (onloadListener) {
  10168. _iframe.contentDocument.location.reload()
  10169. } else {
  10170. _iframe.contentDocument.location.reload()
  10171. }
  10172. } else {
  10173. _iframe.onload = () => {
  10174. _iframe.contentWindow.document.body.appendChild(script1);
  10175. _iframe.contentWindow.document.body.appendChild(script2);
  10176. // _iframe.contentWindow.document.body.appendChild(script3);
  10177. _iframe.contentWindow.document.body.appendChild(script4);
  10178. };
  10179. }
  10180. _jie.onclick = async () => {
  10181. let text = ''
  10182. if (aTool == 6) {
  10183. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10184. } else if (aTool == 3) {
  10185. text = await U.MD.D.I.getEditorContent(_iframe);
  10186. }
  10187. _loading.style.display = 'flex'
  10188. console.log(_loading);
  10189. var _ajs = _iframe.contentWindow.document.createElement("script");
  10190. _ajs.type = "text/javascript";
  10191. _ajs.innerHTML =
  10192. // 'console.log(' + _loading + ');\n' +
  10193. 'var _js = document.createElement("script");\n' +
  10194. '_js.type="text/javascript";\n' +
  10195. '_js.charset="UTF-8";\n' +
  10196. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10197. "_js.onload = function(){\n" +
  10198. ' var a = document.getElementsByTagName("img")\n' +
  10199. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10200. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10201. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10202. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10203. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10204. "beforeUpload_shishi(file," +
  10205. "'" +
  10206. _userid +
  10207. "'" +
  10208. ", " +
  10209. "'" +
  10210. _cid +
  10211. "'" +
  10212. ", " +
  10213. "'" +
  10214. _stage +
  10215. "'" +
  10216. ", " +
  10217. "'" +
  10218. _task +
  10219. "'" +
  10220. ", " +
  10221. "'" +
  10222. _tool +
  10223. "'" +
  10224. ", " +
  10225. "'" +
  10226. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10227. "'" +
  10228. ", " +
  10229. "'" +
  10230. aTool +
  10231. "'" +
  10232. ", " +
  10233. "`" +
  10234. text +
  10235. "`" +
  10236. ")\n" +
  10237. " });\n" +
  10238. "}\n" +
  10239. "document.head.appendChild(_js);\n";
  10240. _iframe.contentWindow.document.head.appendChild(_ajs);
  10241. }
  10242. }
  10243. //U.MD.D.I.openClick(str);
  10244. //如果有任务栏信息
  10245. // if (_taskbar) {
  10246. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10247. // }
  10248. }
  10249. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10250. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10251. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10252. _userinfo = US.userInfo, //登录用户信息
  10253. _userid = US.userInfo.userid //登录用户id
  10254. let _iframe;
  10255. let _cid = cid,
  10256. _stage = stage,
  10257. _task = task,
  10258. _tool = tool;
  10259. var _jie = $$("div", {
  10260. "style": {
  10261. "position": "absolute",
  10262. "bottom": "50px",
  10263. "right": "50px",
  10264. "zIndex": "9999",
  10265. "backgroundColor": "#2268bc",
  10266. "color": "#fff",
  10267. "padding": "12px 20px",
  10268. "cursor": "pointer",
  10269. "borderRadius": "4px",
  10270. },
  10271. "innerHTML": "上传模板"
  10272. })
  10273. let aTool = ''
  10274. let _loading = document.createElement('div')
  10275. _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;"
  10276. // _loading.id = "";
  10277. let _lchild = document.createElement('div')
  10278. let _limg = document.createElement('img')
  10279. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10280. _limg.style = "width: 26px;margin-right: 10px;"
  10281. _lchild.appendChild(_limg)
  10282. let _lspan = document.createElement('span')
  10283. _lspan.innerHTML = "上传中..."
  10284. _lchild.appendChild(_lspan)
  10285. _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%);"
  10286. _loading.appendChild(_lchild)
  10287. var _box = $$('div', {
  10288. "style": {
  10289. "position": "relative",
  10290. "width": "100%",
  10291. "height": "100%",
  10292. },
  10293. })
  10294. _box.appendChild(_loading)
  10295. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10296. switch (str) {
  10297. case "whiteboard":
  10298. aTool = 1;
  10299. _iframe = $$("iframe", {
  10300. "frameborder": "no",
  10301. "border": "0",
  10302. "scrolling ": "no",
  10303. "style": {
  10304. "cssText": "border:0;width:100%;height:100%"
  10305. },
  10306. "src": "https://beta.iwb.cocorobo.cn/"
  10307. })
  10308. _box.appendChild(_iframe);
  10309. _box.appendChild(_jie);
  10310. _formdiv = new U.UF.UI.form(
  10311. "电子白板",
  10312. _box, {
  10313. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10314. "style": {
  10315. "width": "90%",
  10316. "height": "90%",
  10317. "overflow": 'hidden'
  10318. },
  10319. "onresize": function () { }
  10320. }, {
  10321. closecallback: function () { }
  10322. }, {
  10323. "style": {
  10324. "height": "36px"
  10325. }
  10326. }).form; //创建窗体
  10327. _taskbar = {
  10328. "id": str + _formdiv.id,
  10329. "style": {
  10330. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10331. },
  10332. "name": "电子白板",
  10333. "forms": _formdiv,
  10334. "click": function () {
  10335. U.MD.D.I.openApplication(str, obj, info);
  10336. }
  10337. }
  10338. break;
  10339. case "mind":
  10340. aTool = 3;
  10341. _iframe = $$("iframe", {
  10342. "frameborder": "no",
  10343. "border": "0",
  10344. "scrolling ": "no",
  10345. "style": {
  10346. "cssText": "border:0;width:100%;height:100%"
  10347. },
  10348. "src": "/kityminder-editor/dist/index.html"
  10349. });
  10350. _box.appendChild(_iframe);
  10351. _box.appendChild(_jie);
  10352. _formdiv = new U.UF.UI.form(
  10353. "思维导图",
  10354. _box, { //"/jsmind/example/demo.html"
  10355. "id": "minds_Yu" + cid + stage + task + tool,
  10356. "style": {
  10357. "width": "90%",
  10358. "height": "90%",
  10359. "overflow": 'hidden'
  10360. },
  10361. "onresize": function () { }
  10362. }, {
  10363. closecallback: function () { }
  10364. }, {
  10365. "style": {
  10366. "height": "36px"
  10367. }
  10368. }).form; //创建窗体
  10369. _taskbar = {
  10370. "id": str + _formdiv.id,
  10371. "style": {
  10372. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10373. },
  10374. "name": "思维导图",
  10375. "forms": _formdiv,
  10376. "click": function () {
  10377. U.MD.D.I.openApplication(str, obj, info);
  10378. }
  10379. }
  10380. break;
  10381. case "doc":
  10382. aTool = 6;
  10383. _iframe = $$("iframe", {
  10384. "frameborder": "no",
  10385. "border": "0",
  10386. "scrolling ": "no",
  10387. "style": {
  10388. "cssText": "border:0;width:100%;height:100%"
  10389. },
  10390. "src": "/Office/Word/WordEditArea.htm"
  10391. })
  10392. _box.appendChild(_iframe);
  10393. _box.appendChild(_jie);
  10394. _formdiv = new U.UF.UI.form(
  10395. "协同文档",
  10396. _box, {
  10397. "id": "docs_Yu" + cid + stage + task + tool,
  10398. "style": {
  10399. "width": "90%",
  10400. "height": "90%",
  10401. "overflow": 'hidden'
  10402. },
  10403. "onresize": function () { }
  10404. }, {
  10405. closecallback: function () { }
  10406. }, {
  10407. "style": {
  10408. "height": "36px"
  10409. }
  10410. }).form; //创建窗体
  10411. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10412. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10413. })
  10414. _taskbar = {
  10415. "id": str + _formdiv.id,
  10416. "style": {
  10417. "backgroundImage": "url(/img/icon/doc.png)"
  10418. },
  10419. "name": "协同文档",
  10420. "forms": _formdiv,
  10421. "click": function () {
  10422. U.MD.D.I.openApplication(str, obj, info);
  10423. }
  10424. }
  10425. break;
  10426. case "CocoPi":
  10427. aTool = 57;
  10428. _iframe = $$("iframe", {
  10429. "allowpaymentrequest": "allowpaymentrequest",
  10430. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10431. "webkitallowfullscreen": "",
  10432. "mozallowfullscreen": "",
  10433. "frameborder": "no",
  10434. "border": "0",
  10435. "scrolling ": "no",
  10436. "style": {
  10437. "cssText": "border:0;width:100%;height:100%"
  10438. },
  10439. "src": "https://pi.cocorobo.cn/"
  10440. })
  10441. _box.appendChild(_iframe);
  10442. _box.appendChild(_jie);
  10443. _formdiv = new U.UF.UI.form(
  10444. "CocoPi",
  10445. _box, {
  10446. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10447. "style": {
  10448. "width": "90%",
  10449. "height": "90%",
  10450. "overflow": 'hidden'
  10451. },
  10452. "onresize": function () { }
  10453. }, {
  10454. closecallback: function () { }
  10455. }, {
  10456. "style": {
  10457. "height": "36px"
  10458. }
  10459. }).form; //创建窗体
  10460. _taskbar = {
  10461. "id": str + _formdiv.id,
  10462. "style": {
  10463. "backgroundImage": "url(/img/icon/cocopi.png)"
  10464. },
  10465. "name": "CocoPi",
  10466. "forms": _formdiv,
  10467. "click": function () {
  10468. U.MD.D.I.openApplication(str, obj, info);
  10469. }
  10470. }
  10471. break;
  10472. }
  10473. if (_iframe) {
  10474. if (str == 'doc') {
  10475. _iframe = _formdiv.querySelector('iframe')
  10476. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10477. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10478. })
  10479. if (onloadListener) {
  10480. _iframe.contentDocument.location.reload()
  10481. } else {
  10482. _iframe.contentDocument.location.reload()
  10483. }
  10484. } else if (str == 'mind') {
  10485. _iframe = _formdiv.querySelector('iframe')
  10486. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10487. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10488. })
  10489. if (onloadListener) {
  10490. _iframe.contentDocument.location.reload()
  10491. } else {
  10492. _iframe.contentDocument.location.reload()
  10493. }
  10494. } else if (str == 'whiteboard') {
  10495. _iframe = _formdiv.querySelector('iframe')
  10496. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10497. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10498. })
  10499. // if (onloadListener) {
  10500. // try {
  10501. // _iframe.src += "?cocorobo="+new Date().getTime()
  10502. // _iframe.contentWindow.document.location.reload()
  10503. // } catch (error) {
  10504. // }
  10505. // } else {
  10506. // _iframe.contentDocument.location.reload()
  10507. // }
  10508. } else if (str == 'CocoPi') {
  10509. _iframe = _formdiv.querySelector('iframe')
  10510. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10511. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10512. })
  10513. if (onloadListener) {
  10514. _iframe.contentDocument.location.reload()
  10515. } else {
  10516. _iframe.contentDocument.location.reload()
  10517. }
  10518. } else {
  10519. _iframe.onload = () => { };
  10520. }
  10521. _jie.onclick = async () => {
  10522. let text = ''
  10523. let type = '2'
  10524. if (aTool == 1) {
  10525. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10526. type = '3'
  10527. } else if (aTool == 6) {
  10528. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10529. type = '1'
  10530. } else if (aTool == 3) {
  10531. text = await U.MD.D.I.getEditorContent(_iframe);
  10532. type = '2'
  10533. } else if (aTool == 57) {
  10534. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10535. type = '4'
  10536. }
  10537. _loading.style.display = 'flex'
  10538. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10539. }
  10540. }
  10541. //U.MD.D.I.openClick(str);
  10542. //如果有任务栏信息
  10543. // if (_taskbar) {
  10544. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10545. // }
  10546. }
  10547. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10548. var xmlhttp;
  10549. var Mac, Sn, DeviceId
  10550. if (window.XMLHttpRequest) {
  10551. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10552. xmlhttp = new XMLHttpRequest();
  10553. } else {
  10554. // IE6, IE5 浏览器执行代码
  10555. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10556. }
  10557. xmlhttp.onreadystatechange = function () {
  10558. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10559. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10560. // resolve(res.value[0][0].text);
  10561. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10562. }
  10563. }
  10564. }
  10565. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10566. xmlhttp.send();
  10567. }
  10568. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10569. var xmlhttp;
  10570. var Mac, Sn, DeviceId
  10571. if (window.XMLHttpRequest) {
  10572. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10573. xmlhttp = new XMLHttpRequest();
  10574. } else {
  10575. // IE6, IE5 浏览器执行代码
  10576. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10577. }
  10578. xmlhttp.onreadystatechange = function () {
  10579. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10580. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10581. // resolve(res.value[0][0].text);
  10582. if (type == '2') {
  10583. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10584. } else if (type == '3') {
  10585. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10586. } else if (type == '4') {
  10587. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10588. }
  10589. } else {
  10590. if (type == '2') {
  10591. iframe.contentWindow.editor.minder.importData('json', '')
  10592. } else if (type == '3') {
  10593. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10594. } else if (type == '4') {
  10595. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10596. }
  10597. }
  10598. }
  10599. }
  10600. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10601. xmlhttp.send();
  10602. }
  10603. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10604. var xmlhttp;
  10605. var Mac, Sn, DeviceId
  10606. if (window.XMLHttpRequest) {
  10607. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10608. xmlhttp = new XMLHttpRequest();
  10609. } else {
  10610. // IE6, IE5 浏览器执行代码
  10611. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10612. }
  10613. xmlhttp.onreadystatechange = function () {
  10614. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10615. if (xmlhttp.response) {
  10616. // resolve(res.value[0][0].text);
  10617. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10618. // $(fileInput).val('');
  10619. // });
  10620. span.innerHTML = '上传成功'
  10621. setTimeout(() => {
  10622. loading.style.display = 'none'
  10623. }, 1000);
  10624. }
  10625. }
  10626. }
  10627. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10628. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10629. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10630. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10631. // 设置请求头,表示请求体的编码格式
  10632. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10633. // 设置请求体,使用url-encoded格式的数据
  10634. }
  10635. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10636. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10637. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10638. _userinfo = US.userInfo, //登录用户信息
  10639. _userid = US.userInfo.userid //登录用户id
  10640. let _iframe;
  10641. let _cid = cid,
  10642. _stage = stage,
  10643. _task = task,
  10644. _tool = tool;
  10645. var _jie = $$("div", {
  10646. "style": {
  10647. "position": "absolute",
  10648. "bottom": "50px",
  10649. "right": "50px",
  10650. "zIndex": "9999",
  10651. "backgroundColor": "#2268bc",
  10652. "color": "#fff",
  10653. "padding": "12px 20px",
  10654. "cursor": "pointer",
  10655. "borderRadius": "4px",
  10656. },
  10657. "innerHTML": "提交作业"
  10658. })
  10659. let aTool = ''
  10660. let _loading = document.createElement('div')
  10661. _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;"
  10662. // _loading.id = "";
  10663. let _lchild = document.createElement('div')
  10664. let _limg = document.createElement('img')
  10665. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10666. _limg.style = "width: 26px;margin-right: 10px;"
  10667. _lchild.appendChild(_limg)
  10668. let _lspan = document.createElement('span')
  10669. _lspan.innerHTML = "上传中..."
  10670. _lchild.appendChild(_lspan)
  10671. _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%);"
  10672. _loading.appendChild(_lchild)
  10673. var _box = $$('div', {
  10674. "style": {
  10675. "position": "relative",
  10676. "width": "100%",
  10677. "height": "100%",
  10678. },
  10679. })
  10680. _box.appendChild(_loading)
  10681. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10682. switch (str) {
  10683. case "CocoPi":
  10684. aTool = 57;
  10685. _iframe = $$("iframe", {
  10686. "allowpaymentrequest": "allowpaymentrequest",
  10687. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10688. "webkitallowfullscreen": "",
  10689. "mozallowfullscreen": "",
  10690. "frameborder": "no",
  10691. "border": "0",
  10692. "scrolling ": "no",
  10693. "style": {
  10694. "cssText": "border:0;width:100%;height:100%"
  10695. },
  10696. "src": "https://pi.cocorobo.cn/"
  10697. })
  10698. _box.appendChild(_iframe);
  10699. _box.appendChild(_jie);
  10700. _formdiv = new U.UF.UI.form(
  10701. "CocoPi",
  10702. _box, {
  10703. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10704. "style": {
  10705. "width": "90%",
  10706. "height": "90%",
  10707. "overflow": 'hidden'
  10708. },
  10709. "onresize": function () { }
  10710. }, {
  10711. closecallback: function () { }
  10712. }, {
  10713. "style": {
  10714. "height": "36px"
  10715. }
  10716. }).form; //创建窗体
  10717. _taskbar = {
  10718. "id": str + _formdiv.id,
  10719. "style": {
  10720. "backgroundImage": "url(/img/icon/cocopi.png)"
  10721. },
  10722. "name": "CocoPi",
  10723. "forms": _formdiv,
  10724. "click": function () {
  10725. U.MD.D.I.openApplication(str, obj, info);
  10726. }
  10727. }
  10728. break;
  10729. }
  10730. if (_iframe) {
  10731. if (str == 'CocoPi') {
  10732. _iframe = _formdiv.querySelector('iframe')
  10733. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10734. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10735. })
  10736. if (onloadListener) {
  10737. _iframe.contentDocument.location.reload()
  10738. } else {
  10739. _iframe.contentDocument.location.reload()
  10740. }
  10741. }
  10742. _jie.onclick = async () => {
  10743. let text = ''
  10744. if (aTool == 57) {
  10745. text = _iframe.contentWindow.getLoadXmlStr()
  10746. }
  10747. _loading.style.display = 'flex'
  10748. console.log(_loading);
  10749. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10750. _loading.style.display = 'none'
  10751. let _div = document.createElement('div')
  10752. _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;"
  10753. let _inner = document.createElement('div')
  10754. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10755. _inner.innerHTML = "上传成功"
  10756. _div.appendChild(_inner)
  10757. _iframe.contentWindow.window.document.body.appendChild(_div)
  10758. _div.onclick = () => {
  10759. _iframe.contentWindow.window.document.body.removeChild(_div)
  10760. }
  10761. setTimeout(() => {
  10762. _iframe.contentWindow.window.document.body.removeChild(_div)
  10763. }, 1000);
  10764. }, [], { "type": "POST", "withCredentials": true });
  10765. }
  10766. }
  10767. }
  10768. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10769. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10770. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10771. _userid = student.userid, //登录用户id
  10772. _username = student.student //用户名字
  10773. let _iframe;
  10774. let _cid = cid,
  10775. _stage = stage,
  10776. _task = task,
  10777. _tool = tool;
  10778. var _jie = $$("div", {
  10779. "style": {
  10780. "position": "absolute",
  10781. "bottom": "50px",
  10782. "right": "50px",
  10783. "zIndex": "9999",
  10784. "backgroundColor": "#2268bc",
  10785. "color": "#fff",
  10786. "padding": "12px 20px",
  10787. "cursor": "pointer",
  10788. "borderRadius": "4px",
  10789. },
  10790. "innerHTML": "提交作业"
  10791. })
  10792. let aTool = ''
  10793. let _loading = document.createElement('div')
  10794. _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;"
  10795. // _loading.id = "";
  10796. let _lchild = document.createElement('div')
  10797. let _limg = document.createElement('img')
  10798. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10799. _limg.style = "width: 26px;margin-right: 10px;"
  10800. _lchild.appendChild(_limg)
  10801. let _lspan = document.createElement('span')
  10802. _lspan.innerHTML = "上传中..."
  10803. _lchild.appendChild(_lspan)
  10804. _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%);"
  10805. _loading.appendChild(_lchild)
  10806. var _box = $$('div', {
  10807. "style": {
  10808. "position": "relative",
  10809. "width": "100%",
  10810. "height": "100%",
  10811. },
  10812. })
  10813. _box.appendChild(_loading)
  10814. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10815. switch (str) {
  10816. case "CocoPi":
  10817. aTool = 57;
  10818. _iframe = $$("iframe", {
  10819. "allowpaymentrequest": "allowpaymentrequest",
  10820. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10821. "webkitallowfullscreen": "",
  10822. "mozallowfullscreen": "",
  10823. "frameborder": "no",
  10824. "border": "0",
  10825. "scrolling ": "no",
  10826. "style": {
  10827. "cssText": "border:0;width:100%;height:100%"
  10828. },
  10829. "src": "https://pi.cocorobo.cn/"
  10830. })
  10831. _box.appendChild(_iframe);
  10832. _box.appendChild(_jie);
  10833. _formdiv = new U.UF.UI.form(
  10834. "CocoPi-" + _username,
  10835. _box, {
  10836. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10837. "style": {
  10838. "width": "90%",
  10839. "height": "90%",
  10840. "overflow": 'hidden'
  10841. },
  10842. "onresize": function () { }
  10843. }, {
  10844. closecallback: function () { }
  10845. }, {
  10846. "style": {
  10847. "height": "36px"
  10848. }
  10849. }).form; //创建窗体
  10850. _taskbar = {
  10851. "id": str + _formdiv.id,
  10852. "style": {
  10853. "backgroundImage": "url(/img/icon/cocopi.png)"
  10854. },
  10855. "name": "CocoPi",
  10856. "forms": _formdiv,
  10857. "click": function () {
  10858. U.MD.D.I.openApplication(str, obj, info);
  10859. }
  10860. }
  10861. break;
  10862. }
  10863. if (_iframe) {
  10864. if (str == 'CocoPi') {
  10865. _iframe = _formdiv.querySelector('iframe')
  10866. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10867. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10868. })
  10869. if (onloadListener) {
  10870. _iframe.contentDocument.location.reload()
  10871. } else {
  10872. _iframe.contentDocument.location.reload()
  10873. }
  10874. }
  10875. _jie.onclick = async () => {
  10876. let text = ''
  10877. if (aTool == 57) {
  10878. text = _iframe.contentWindow.getLoadXmlStr()
  10879. }
  10880. _loading.style.display = 'flex'
  10881. console.log(_loading);
  10882. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10883. _loading.style.display = 'none'
  10884. let _div = document.createElement('div')
  10885. _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;"
  10886. let _inner = document.createElement('div')
  10887. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10888. _inner.innerHTML = "上传成功"
  10889. _div.appendChild(_inner)
  10890. _iframe.contentWindow.window.document.body.appendChild(_div)
  10891. _div.onclick = () => {
  10892. _iframe.contentWindow.window.document.body.removeChild(_div)
  10893. }
  10894. setTimeout(() => {
  10895. _iframe.contentWindow.window.document.body.removeChild(_div)
  10896. }, 1000);
  10897. }, [], { "type": "POST", "withCredentials": true });
  10898. }
  10899. }
  10900. }
  10901. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10902. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10903. if (res.value[0].length > 0) {
  10904. if (atool == 57) {
  10905. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10906. }
  10907. } else {
  10908. if (atool == 57) {
  10909. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10910. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10911. }
  10912. }
  10913. }, [], { "type": "POST", "withCredentials": true });
  10914. }
  10915. U.MD.D.addOp = function(text,type,time){
  10916. var userInfo = US.userInfo;
  10917. if(Object.keys(userInfo).length !== 0){
  10918. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10919. }, [], { "type": "POST", "withCredentials": true });
  10920. }
  10921. }