DeskTop.js 618 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //SPROUT Lab
  1525. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. ];
  1542. //010204
  1543. U.MD.D.I.x010204TeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. ];
  1547. //010204
  1548. U.MD.D.I.x010204StudentDeskIcon = [
  1549. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. ];
  1554. //#region 桌面初始化a
  1555. /**
  1556. * 初始化桌面的起始函数
  1557. *
  1558. */
  1559. U.MD.D.I.init = function () {
  1560. if ($("#U_MD_D_K")[0]) {
  1561. //初始化桌面图标
  1562. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1563. // var clickUrl = ':12588/requestIp.php';
  1564. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1565. // U.MD.D.I.Ip = data;
  1566. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1567. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1568. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1569. // })
  1570. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1571. // })
  1572. }
  1573. }
  1574. /**
  1575. * 模式切换
  1576. *
  1577. */
  1578. U.MD.D.I.ModeCheck = function (type) {
  1579. if (US.Config.type == type) {
  1580. return
  1581. }
  1582. US.Config.type = type
  1583. $('.U_PBL_Check .active')[0].className = ''
  1584. if (type == 1) {
  1585. $('.U_PBL_Check div')[0].className = 'active'
  1586. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1587. } else {
  1588. $('.U_PBL_Check div')[1].className = 'active'
  1589. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1590. }
  1591. //初始化桌面图标
  1592. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1593. if (type == 2) {
  1594. U.MD.D.I.openApplication("project")
  1595. }
  1596. }
  1597. /**
  1598. * 隐藏任务栏
  1599. *
  1600. * @param {element} 桌面元素
  1601. */
  1602. U.MD.D.I.hiddenTaskbar = function (el) {
  1603. //任务栏位置变小
  1604. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1605. //桌面的位置变大
  1606. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1607. }
  1608. /**
  1609. * 隐藏任务栏
  1610. *
  1611. * @param {element} 桌面元素
  1612. */
  1613. U.MD.D.I.hiddenTaskbarout = function (el) {
  1614. //任务栏位置变小
  1615. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1616. //任务栏位置变化
  1617. U.selectEl(el).css({ "bottom": "-60px" });
  1618. //桌面的位置变大
  1619. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1620. }
  1621. }
  1622. /**
  1623. * 初始化打印桌面图标
  1624. *
  1625. * @param {element} 桌面元素
  1626. */
  1627. U.MD.D.I.initDesktopIcons = function (el, type) {
  1628. var i, //用于循环
  1629. _content, //桌面图标元素
  1630. _iconcontent, //桌面图标元素
  1631. _frag = $$("frag"), //定义一个碎片元素
  1632. _type = US.userInfo.type,
  1633. _org = US.userInfo.org,
  1634. _oid = US.userInfo.organizeid,
  1635. _role = US.userInfo.role,
  1636. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1637. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1638. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1639. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1640. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1641. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1642. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1643. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1644. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1645. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1646. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1647. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1648. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1649. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1650. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1651. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1652. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1653. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1654. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1655. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1656. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1657. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1658. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1659. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1660. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1661. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1662. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1663. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1664. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1665. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1666. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1667. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1668. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1669. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1670. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1671. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1672. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1673. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1674. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1675. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1676. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1677. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1678. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1679. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1680. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1681. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1682. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1683. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1684. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1685. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1686. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1687. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1688. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1689. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1690. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1691. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1692. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1693. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1694. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1695. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1696. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1697. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1698. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1699. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1700. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1701. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1702. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1703. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1704. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1705. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1706. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1707. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1708. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1709. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1710. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1711. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1712. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1713. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1714. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1715. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1716. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1717. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1718. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1719. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1720. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1721. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1722. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1723. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1724. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1725. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1726. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1727. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1728. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1729. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1730. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1731. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1732. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1733. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5'];
  1734. 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'];
  1735. //清楚桌面图标
  1736. el.innerHTML = "";
  1737. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1738. _teacherDesktopIconInfo.push(
  1739. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1740. { "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)" } },
  1741. )
  1742. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1743. }
  1744. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1745. _teacherDesktopIconInfo.push(
  1746. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1749. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1750. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1751. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1752. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1753. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1754. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1755. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1756. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1757. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1758. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1761. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1762. )
  1763. }
  1764. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1765. _teacherDesktopIconInfo.push(
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. )
  1768. }
  1769. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1770. // _teacherDesktopIconInfo.push(
  1771. // )
  1772. // }
  1773. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1774. _teacherDesktopIconInfo.push(
  1775. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1776. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1777. )
  1778. }
  1779. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1780. _teacherDesktopIconInfo.push(
  1781. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1785. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1786. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1787. )
  1788. _studentDesktopIconInfo.push(
  1789. )
  1790. }
  1791. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1792. _teacherDesktopIconInfo.push(
  1793. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1794. )
  1795. _studentDesktopIconInfo.push(
  1796. )
  1797. }
  1798. //010606 组织
  1799. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1800. _teacherDesktopIconInfo.push(
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. )
  1803. _studentDesktopIconInfo.push(
  1804. )
  1805. }
  1806. //麒麟二中 和 民新小学
  1807. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1808. _teacherDesktopIconInfo.push(
  1809. )
  1810. }
  1811. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1812. _teacherDesktopIconInfo.push(
  1813. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1814. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1815. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1816. )
  1817. }
  1818. //北师大附中(010601)
  1819. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1820. // _teacherDesktopIconInfo.push(
  1821. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1822. // )
  1823. // _studentDesktopIconInfo.push(
  1824. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1825. // )
  1826. // }
  1827. //樂善堂余近卿中學
  1828. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1829. _teacherDesktopIconInfo.push(
  1830. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1831. )
  1832. }
  1833. // Education Artificial Intelligence
  1834. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1835. _teacherDesktopIconInfo.push(
  1836. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1837. )
  1838. }
  1839. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1840. _teacherDesktopIconInfo.push(
  1841. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1842. )
  1843. }
  1844. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1845. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1846. _teacherDesktopIconInfo.push(
  1847. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1848. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1849. )
  1850. }
  1851. //麒麟二中
  1852. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1853. _studentDesktopIconInfo.push(
  1854. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1855. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1856. )
  1857. }
  1858. //万科双语
  1859. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1860. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1861. if (el.Name == '项目管理') {
  1862. el.Name = 'PBL项目'
  1863. }
  1864. return el
  1865. })
  1866. _studentDesktopIconInfo3.push(
  1867. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1868. )
  1869. }
  1870. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1871. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1872. return el.Name != '魔盒识字' && el.Name != '24点'
  1873. })
  1874. }
  1875. 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) {
  1876. _studentDesktopIconInfo.push(
  1877. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1878. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. )
  1880. }
  1881. //循环创建桌面图标
  1882. if (type == 1) {
  1883. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1884. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1885. _content = $$("div", {
  1886. className: "U_MD_D_KO",
  1887. "onmousedown": U.UF.C.closure(function (obj) {
  1888. //防止拖动图标即打开了桌面应用
  1889. U.MD.D.click(this, obj);
  1890. }, [_studentDesktopIconInfo[i]]),
  1891. "onclick": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_studentDesktopIconInfo[i]])
  1895. }, _frag); //
  1896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1899. }
  1900. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1901. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1902. _content = $$("div", {
  1903. className: "U_MD_D_KO",
  1904. "onmousedown": U.UF.C.closure(function (obj) {
  1905. //防止拖动图标即打开了桌面应用
  1906. U.MD.D.click(this, obj);
  1907. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1908. "onclick": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_hkZJLSStudentDeskIconInfo[i]])
  1912. }, _frag); //
  1913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1916. } //
  1917. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1918. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1919. _content = $$("div", {
  1920. className: "U_MD_D_KO",
  1921. "onmousedown": U.UF.C.closure(function (obj) {
  1922. //防止拖动图标即打开了桌面应用
  1923. U.MD.D.click(this, obj);
  1924. }, [_ytyStudentDeskIconInfo[i]]),
  1925. "onclick": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_ytyStudentDeskIconInfo[i]])
  1929. }, _frag); //
  1930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1933. } //
  1934. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1935. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1936. _content = $$("div", {
  1937. className: "U_MD_D_KO",
  1938. "onmousedown": U.UF.C.closure(function (obj) {
  1939. //防止拖动图标即打开了桌面应用
  1940. U.MD.D.click(this, obj);
  1941. }, [_jccssylStudentDeskIconInfo[i]]),
  1942. "onclick": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_jccssylStudentDeskIconInfo[i]])
  1946. }, _frag); //
  1947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1950. }
  1951. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1952. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1953. _content = $$("div", {
  1954. className: "U_MD_D_KO",
  1955. "onmousedown": U.UF.C.closure(function (obj) {
  1956. //防止拖动图标即打开了桌面应用
  1957. U.MD.D.click(this, obj);
  1958. }, [_scnuaiStudentDeskIconInfo[i]]),
  1959. "onclick": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_scnuaiStudentDeskIconInfo[i]])
  1963. }, _frag); //
  1964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1967. }
  1968. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1969. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1970. _content = $$("div", {
  1971. className: "U_MD_D_KO",
  1972. "onmousedown": U.UF.C.closure(function (obj) {
  1973. //防止拖动图标即打开了桌面应用
  1974. U.MD.D.click(this, obj);
  1975. }, [_caleStudentDeskIconInfo[i]]),
  1976. "onclick": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_caleStudentDeskIconInfo[i]])
  1980. }, _frag); //
  1981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1984. }
  1985. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1986. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1987. _content = $$("div", {
  1988. className: "U_MD_D_KO",
  1989. "onmousedown": U.UF.C.closure(function (obj) {
  1990. //防止拖动图标即打开了桌面应用
  1991. U.MD.D.click(this, obj);
  1992. }, [_thuioeStudentDeskIconInfo[i]]),
  1993. "onclick": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_thuioeStudentDeskIconInfo[i]])
  1997. }, _frag); //
  1998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2001. }
  2002. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2003. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2004. _content = $$("div", {
  2005. className: "U_MD_D_KO",
  2006. "onmousedown": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_tpcStudentDeskIconInfo[i]]),
  2010. "onclick": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_tpcStudentDeskIconInfo[i]])
  2014. }, _frag); //
  2015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2018. } //
  2019. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2020. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2021. _content = $$("div", {
  2022. className: "U_MD_D_KO",
  2023. "onmousedown": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_chjyjStudentDeskIconInfo[i]]),
  2027. "onclick": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_chjyjStudentDeskIconInfo[i]])
  2031. }, _frag); //
  2032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2035. }
  2036. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2037. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2038. _content = $$("div", {
  2039. className: "U_MD_D_KO",
  2040. "onmousedown": U.UF.C.closure(function (obj) {
  2041. //防止拖动图标即打开了桌面应用
  2042. U.MD.D.click(this, obj);
  2043. }, [_szjkyStudentDeskIconInfo[i]]),
  2044. "onclick": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_szjkyStudentDeskIconInfo[i]])
  2048. }, _frag); //
  2049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2052. }
  2053. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2054. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_dseiStudentDeskIconInfo[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_dseiStudentDeskIconInfo[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2069. }
  2070. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2071. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2072. _content = $$("div", {
  2073. className: "U_MD_D_KO",
  2074. "onmousedown": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2078. "onclick": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2082. }, _frag); //
  2083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2086. }
  2087. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2088. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2089. _content = $$("div", {
  2090. className: "U_MD_D_KO",
  2091. "onmousedown": U.UF.C.closure(function (obj) {
  2092. //防止拖动图标即打开了桌面应用
  2093. U.MD.D.click(this, obj);
  2094. }, [_nsfxStudentDeskIconInfo[i]]),
  2095. "onclick": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_nsfxStudentDeskIconInfo[i]])
  2099. }, _frag); //
  2100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2103. }
  2104. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2105. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2106. _content = $$("div", {
  2107. className: "U_MD_D_KO",
  2108. "onmousedown": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_stiaStudentDeskIconInfo[i]]),
  2112. "onclick": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_stiaStudentDeskIconInfo[i]])
  2116. }, _frag); //
  2117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2120. }
  2121. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2122. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2123. _content = $$("div", {
  2124. className: "U_MD_D_KO",
  2125. "onmousedown": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_szdjgStudentDeskIconInfo[i]]),
  2129. "onclick": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_szdjgStudentDeskIconInfo[i]])
  2133. }, _frag); //
  2134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2137. }
  2138. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2139. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2140. _content = $$("div", {
  2141. className: "U_MD_D_KO",
  2142. "onmousedown": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_x010607StudentDeskIconInfo[i]]),
  2146. "onclick": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_x010607StudentDeskIconInfo[i]])
  2150. }, _frag); //
  2151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2154. }
  2155. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2156. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_xhlyStudentDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_xhlyStudentDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2173. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2174. _content = $$("div", {
  2175. className: "U_MD_D_KO",
  2176. "onmousedown": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2180. "onclick": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2184. }, _frag); //
  2185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2188. }
  2189. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2190. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2191. _content = $$("div", {
  2192. className: "U_MD_D_KO",
  2193. "onmousedown": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_x010503StudentDeskIconInfo[i]]),
  2197. "onclick": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_x010503StudentDeskIconInfo[i]])
  2201. }, _frag); //
  2202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2205. }
  2206. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2207. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_x010204StudentDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_x010204StudentDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2222. }
  2223. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2224. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2225. _content = $$("div", {
  2226. className: "U_MD_D_KO",
  2227. "onmousedown": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2239. }
  2240. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2241. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2242. _content = $$("div", {
  2243. className: "U_MD_D_KO",
  2244. "onmousedown": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_x010608StudentDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_x010608StudentDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2258. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_siesStudentDeskIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_siesStudentDeskIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2275. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_guzmsStudentDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_guzmsStudentDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2292. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_hkStudentDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_hkStudentDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2309. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_hkaceStudentDeskIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_hkaceStudentDeskIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2326. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_BSDNSstudentDesktopIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2343. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_cocobizStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_cocobizStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2360. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_xxzjkyStudentDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2377. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_studentDesktopIconInfo[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_studentDesktopIconInfo[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2392. }
  2393. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2394. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_tcStudentDeskIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_tcStudentDeskIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2411. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_szscStudentDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_szscStudentDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2428. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_studentDesktopIconInfo3[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_studentDesktopIconInfo3[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2443. }
  2444. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2445. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_studentDesktopIconInfo2[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_studentDesktopIconInfo2[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2460. }
  2461. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2462. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2463. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2464. continue
  2465. }
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_wanketeacherDesktopIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_wanketeacherDesktopIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2482. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_wankeAdminDesktopIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_wankeAdminDesktopIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2499. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2500. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2501. continue
  2502. }
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_scnuaiTeacherDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2519. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2520. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2521. continue
  2522. }
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_BSDNSteacherDesktopIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2539. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2540. _content = $$("div", {
  2541. className: "U_MD_D_KO",
  2542. "onmousedown": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_scnuaiAdminDeskIconInfo[i]]),
  2546. "onclick": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_scnuaiAdminDeskIconInfo[i]])
  2550. }, _frag); //
  2551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2554. }
  2555. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2556. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2557. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2558. continue
  2559. }
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_jccssylTeacherDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_jccssylTeacherDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2576. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2577. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2578. continue
  2579. }
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_caleTeacherDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_caleTeacherDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2594. }
  2595. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2596. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_tpcOrganizerDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_tpcOrganizerDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2613. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2614. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2615. continue
  2616. }
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_tpcTeacherDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_tpcTeacherDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2633. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2634. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2635. continue
  2636. }
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_teacherDesktopIconInfo2[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_teacherDesktopIconInfo2[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2651. }
  2652. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2653. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2654. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2655. continue
  2656. }
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_thuioeTeacherDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_thuioeTeacherDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2673. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2674. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2675. continue
  2676. }
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_lotechTeacherDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_lotechTeacherDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2691. }//
  2692. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2693. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2694. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2695. continue
  2696. }
  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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2713. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2714. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2715. continue
  2716. }
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_siesTeacherDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_siesTeacherDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2733. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2734. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2735. continue
  2736. }
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_guzmsTeacherDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_guzmsTeacherDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2753. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2754. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2755. continue
  2756. }
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_longhuaTeacherDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_longhuaTeacherDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2773. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2774. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2775. continue
  2776. }
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_ytyTeacherDeskIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_ytyTeacherDeskIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2793. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2794. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2795. continue
  2796. }
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_yunhaiTeacherDeskIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2811. } //_hkStudentDeskIconInfo
  2812. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2813. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2814. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2815. continue
  2816. }
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2833. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2834. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2835. continue
  2836. }
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_hkTeacherDeskIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_hkTeacherDeskIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2853. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2854. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2855. continue
  2856. }
  2857. _content = $$("div", {
  2858. className: "U_MD_D_KO",
  2859. "onmousedown": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_hkaceTeacherDeskIconInfo[i]]),
  2863. "onclick": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_hkaceTeacherDeskIconInfo[i]])
  2867. }, _frag); //
  2868. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2869. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2870. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2871. }
  2872. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2873. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2874. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2875. continue
  2876. }
  2877. _content = $$("div", {
  2878. className: "U_MD_D_KO",
  2879. "onmousedown": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_cocobizTeacherDeskIconInfo[i]]),
  2883. "onclick": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_cocobizTeacherDeskIconInfo[i]])
  2887. }, _frag); //
  2888. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2889. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2890. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2891. }
  2892. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2893. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2894. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2895. continue
  2896. }
  2897. _content = $$("div", {
  2898. className: "U_MD_D_KO",
  2899. "onmousedown": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2903. "onclick": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2907. }, _frag); //
  2908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2911. }
  2912. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2913. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2914. _content = $$("div", {
  2915. className: "U_MD_D_KO",
  2916. "onmousedown": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_gdjgAdminDeskIconInfo[i]]),
  2920. "onclick": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_gdjgAdminDeskIconInfo[i]])
  2924. }, _frag); //
  2925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2928. }
  2929. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2930. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2931. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2932. continue
  2933. }
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_gdjgTeacherDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_gdjgTeacherDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2950. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2951. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2952. continue
  2953. }
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_szherTeacherDeskIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_szherTeacherDeskIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2970. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_heyuannAdminDeskIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_heyuannAdminDeskIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2987. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2988. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2989. continue
  2990. }
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_heyuanTeacherDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_heyuanTeacherDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3005. } //
  3006. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3007. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3008. _content = $$("div", {
  3009. className: "U_MD_D_KO",
  3010. "onmousedown": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_dseiAdminDeskIconInfo[i]]),
  3014. "onclick": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_dseiAdminDeskIconInfo[i]])
  3018. }, _frag); //
  3019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3022. }
  3023. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3024. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3025. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3026. continue
  3027. }
  3028. _content = $$("div", {
  3029. className: "U_MD_D_KO",
  3030. "onmousedown": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_dseiTeacherDeskIconInfo[i]]),
  3034. "onclick": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_dseiTeacherDeskIconInfo[i]])
  3038. }, _frag); //
  3039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3042. } //
  3043. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3044. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3045. _content = $$("div", {
  3046. className: "U_MD_D_KO",
  3047. "onmousedown": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_chjyjAdminDeskIconInfo[i]]),
  3051. "onclick": U.UF.C.closure(function (obj) {
  3052. //防止拖动图标即打开了桌面应用
  3053. U.MD.D.click(this, obj);
  3054. }, [_chjyjAdminDeskIconInfo[i]])
  3055. }, _frag); //
  3056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3059. }//
  3060. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3061. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3062. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3063. continue
  3064. }
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_chjyjTeacherDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_chjyjTeacherDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3081. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_szjkyAdminDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_szjkyAdminDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3096. }//
  3097. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3098. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3099. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3100. continue
  3101. }
  3102. _content = $$("div", {
  3103. className: "U_MD_D_KO",
  3104. "onmousedown": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_szjkyTeacherDeskIconInfo[i]]),
  3108. "onclick": U.UF.C.closure(function (obj) {
  3109. //防止拖动图标即打开了桌面应用
  3110. U.MD.D.click(this, obj);
  3111. }, [_szjkyTeacherDeskIconInfo[i]])
  3112. }, _frag); //
  3113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3116. }
  3117. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3118. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3119. _content = $$("div", {
  3120. className: "U_MD_D_KO",
  3121. "onmousedown": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_futianAdminDeskIconInfo[i]]),
  3125. "onclick": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_futianAdminDeskIconInfo[i]])
  3129. }, _frag); //
  3130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3133. }
  3134. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3135. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3136. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3137. continue
  3138. }
  3139. _content = $$("div", {
  3140. className: "U_MD_D_KO",
  3141. "onmousedown": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_futianTeacherDeskIconInfo[i]]),
  3145. "onclick": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_futianTeacherDeskIconInfo[i]])
  3149. }, _frag); //
  3150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3153. }
  3154. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3155. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3156. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3157. continue
  3158. }
  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. }, [_MingdeTeacherDeskIcon[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_MingdeTeacherDeskIcon[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3175. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_lhsAdminDesktopIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_lhsAdminDesktopIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3192. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3193. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3194. continue
  3195. }
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_lhsteacherDesktopIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_lhsteacherDesktopIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3212. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3213. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3214. continue
  3215. }
  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. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_zhoujiateacherDesktopIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3232. for (i = 0; i < _hanDeskIcon.length; i++) {
  3233. if(_role === 0 && _hanDeskIcon[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. }, [_hanDeskIcon[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_hanDeskIcon[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3252. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3253. if(_role === 0 && _orgStemDeskIcon[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. }, [_orgStemDeskIcon[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_orgStemDeskIcon[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3272. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3273. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3274. continue
  3275. }
  3276. _content = $$("div", {
  3277. className: "U_MD_D_KO",
  3278. "onmousedown": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_szulsDeskIcon[i]]),
  3282. "onclick": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_szulsDeskIcon[i]])
  3286. }, _frag); //
  3287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3290. }
  3291. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3292. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3293. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3294. continue
  3295. }
  3296. _content = $$("div", {
  3297. className: "U_MD_D_KO",
  3298. "onmousedown": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_orgDesktopIconInfo[i]]),
  3302. "onclick": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_orgDesktopIconInfo[i]])
  3306. }, _frag); //
  3307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3310. }
  3311. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3312. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3313. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3314. continue
  3315. }
  3316. _content = $$("div", {
  3317. className: "U_MD_D_KO",
  3318. "onmousedown": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_schoolDesktopIconInfo[i]]),
  3322. "onclick": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_schoolDesktopIconInfo[i]])
  3326. }, _frag); //
  3327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3330. }
  3331. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3332. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3333. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3334. continue
  3335. }
  3336. _content = $$("div", {
  3337. className: "U_MD_D_KO",
  3338. "onmousedown": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_GMteacherDesktopIconInfo[i]]),
  3342. "onclick": U.UF.C.closure(function (obj) {
  3343. //防止拖动图标即打开了桌面应用
  3344. U.MD.D.click(this, obj);
  3345. }, [_GMteacherDesktopIconInfo[i]])
  3346. }, _frag); //
  3347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3350. }
  3351. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3352. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3353. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3354. continue
  3355. }
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_SONGteacherDesktopIconInfo[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_SONGteacherDesktopIconInfo[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3370. }
  3371. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3372. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  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. }, [_GMstudentDesktopIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_GMstudentDesktopIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3389. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3390. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  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. }, [_tcTeacherDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_tcTeacherDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3407. }
  3408. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3409. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _tcOrganizerDeskIconInfo[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. }, [_tcOrganizerDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_tcOrganizerDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3429. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3430. if(_role === 0 && _szscTeacherDeskIconInfo[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. }, [_szscTeacherDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_szscTeacherDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3447. }
  3448. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3449. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _szscOrganizerDeskIconInfo[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. }, [_szscOrganizerDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_szscOrganizerDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3469. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3470. if(_role === 0 && _nsfxTeacherDeskIconInfo[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. }, [_nsfxTeacherDeskIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_nsfxTeacherDeskIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3487. }
  3488. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3489. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3490. if(_role === 0 && _stiaTeacherDeskIconInfo[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. }, [_stiaTeacherDeskIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_stiaTeacherDeskIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3509. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3510. if(_role === 0 && _szdjgTeacherDeskIconInfo[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. }, [_szdjgTeacherDeskIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_szdjgTeacherDeskIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3529. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3530. if(_role === 0 && _x010607TeacherDeskIconInfo[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. }, [_x010607TeacherDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_x010607TeacherDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3549. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _xhlyTeacherDeskIconInfo[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. }, [_xhlyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_xhlyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3569. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[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. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3589. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _x010503TeacherDeskIconInfo[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. }, [_x010503TeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_x010503TeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3609. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _x010204TeacherDeskIconInfo[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. }, [_x010204TeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_x010204TeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3629. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3630. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3631. continue
  3632. }
  3633. _content = $$("div", {
  3634. className: "U_MD_D_KO",
  3635. "onmousedown": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3639. "onclick": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3643. }, _frag); //
  3644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3647. }
  3648. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3649. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3650. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3651. continue
  3652. }
  3653. _content = $$("div", {
  3654. className: "U_MD_D_KO",
  3655. "onmousedown": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_x010608TeacherDeskIconInfo[i]]),
  3659. "onclick": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_x010608TeacherDeskIconInfo[i]])
  3663. }, _frag); //
  3664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3667. }
  3668. } else {
  3669. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3670. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3671. continue
  3672. }
  3673. _content = $$("div", {
  3674. className: "U_MD_D_KO",
  3675. "onmousedown": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_teacherDesktopIconInfo[i]]),
  3679. "onclick": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_teacherDesktopIconInfo[i]])
  3683. }, _frag); //
  3684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3687. }
  3688. }
  3689. } else {
  3690. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. style: { 'width': '124px', 'height': '145px' },
  3694. "onmousedown": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_easyDesktopIconInfo[i]]),
  3698. "onclick": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_easyDesktopIconInfo[i]])
  3702. }, _frag); //
  3703. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3706. }
  3707. }
  3708. if (type == 1) {
  3709. //加载好后给图标定位
  3710. U.MD.D.iconPostion($(_frag).Child());
  3711. } else {
  3712. //加载好后给图标定位
  3713. U.MD.D.iconPostion2($(_frag).Child());
  3714. }
  3715. //把图标加载到页面
  3716. el.appendChild(_frag);
  3717. }
  3718. /**
  3719. * 显示任务栏
  3720. *
  3721. * @param {element} 桌面元素
  3722. */
  3723. U.MD.D.I.displayTaskbar = function (el) {
  3724. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3725. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3726. //任务栏位置变化
  3727. U.selectEl(el).css({ "bottom": "0px" });
  3728. //桌面位置变话
  3729. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3730. }
  3731. }
  3732. //#region 桌面图标拖动逻辑
  3733. /**
  3734. * 桌面排列图标
  3735. *
  3736. * @param {element} 桌面元素
  3737. * @param {object} 上下相距的距离
  3738. * @param {object} 左右相距的距离
  3739. * @return {object} 命名空间
  3740. */
  3741. U.MD.D.iconPostion = function (childs, top, left) {
  3742. var i; //用于循环处理
  3743. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3744. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3745. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3746. for (i = 0; i < childs.length; i++) {
  3747. //如果竖排top超过了范围处理
  3748. if (top + 95 > US.height - 10) {
  3749. //left超过了页面范围处理,则向上重叠打印处理
  3750. if ((left + 180) > US.width) {
  3751. top -= 110;
  3752. left -= 90;
  3753. }
  3754. //没有超过范围,那么left+90添加到下一个竖排打印
  3755. else {
  3756. left += 90;
  3757. top = 15;
  3758. };
  3759. }
  3760. //给图标的位置赋值
  3761. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3762. if (i < childs.length - 1) {
  3763. //页面图标每次向下加95
  3764. top += 95;
  3765. }
  3766. }
  3767. //返回最后调用的图标的位置
  3768. return [top, left];
  3769. }
  3770. /**
  3771. * 桌面排列图标
  3772. *
  3773. * @param {element} 桌面元素
  3774. * @param {object} 上下相距的距离
  3775. * @param {object} 左右相距的距离
  3776. * @return {object} 命名空间
  3777. */
  3778. U.MD.D.iconPostion2 = function (childs, top, left) {
  3779. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3780. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3781. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3782. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3783. for (i = 0; i < childs.length; i++) {
  3784. //如果竖排top超过了范围处理
  3785. if (left + 150 > US.width - 10) {
  3786. //left超过了页面范围处理,则向上重叠打印处理
  3787. if ((top + 180) > US.Height) {
  3788. top -= 150;
  3789. left -= 150;
  3790. }
  3791. //没有超过范围,那么left+90添加到下一个竖排打印
  3792. else {
  3793. top += 150;
  3794. left = ol;
  3795. };
  3796. }
  3797. //给图标的位置赋值
  3798. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3799. if (i < childs.length - 1) {
  3800. //页面图标每次向下加95
  3801. left += 150;
  3802. }
  3803. }
  3804. //返回最后调用的图标的位置
  3805. return [top, left];
  3806. }
  3807. /**
  3808. * 桌面点击事件逻辑
  3809. *
  3810. * @param {element} 桌面元素
  3811. * @param {object} 上下相距的距离
  3812. * @param {object} 左右相距的距离
  3813. * @return {object} 命名空间
  3814. */
  3815. U.MD.D.click = function (el, obj) {
  3816. var _buttonnumber = event.button; //点击的按钮的事件值
  3817. var _userinfo = US.userInfo;
  3818. U.UF.EV.stopBubble(); //阻止向上冒泡
  3819. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3820. if (_buttonnumber < 2) {
  3821. //如果是click事件的处理
  3822. if (event.type == "click") {
  3823. //如果元素在mousemove事件中没有移动则出发click事件
  3824. if (!U.MD.D.I.IsDrag) {
  3825. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3826. U.alert("请先登录您的账号!");
  3827. setTimeout(() => {
  3828. U.MD.U.L.login();
  3829. }, 2000);
  3830. } else {
  3831. //打开应用处理
  3832. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3833. }
  3834. }
  3835. }
  3836. //如果是mouse事件的处理
  3837. else {
  3838. if (US.Config.type == '1') {
  3839. //拖动处理,添加拖动和拖动结束事件
  3840. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3841. }
  3842. }
  3843. U.MD.D.I.IsDrag = false;
  3844. }
  3845. }
  3846. /**
  3847. * 拖动的处理
  3848. *
  3849. */
  3850. U.MD.D.iconMove = function () {
  3851. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3852. U.MD.D.I.IsDrag = true;
  3853. }
  3854. /**
  3855. * 拖动结束后,这里是定位处理,以网状的形式定位
  3856. *
  3857. * @param {element} 拖动的元素
  3858. * @return {object} 命名空间
  3859. */
  3860. U.MD.D.iconUp = function (el) {
  3861. var _top = 15,
  3862. _left = 20,
  3863. _margin,
  3864. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3865. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3866. if (_positioninfo["OT"] > 15) {
  3867. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3868. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3869. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3870. }
  3871. if (_positioninfo["OL"] > 20) {
  3872. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3873. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3874. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3875. }
  3876. //while循环判断么一个重叠的元素
  3877. do {
  3878. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3879. _top = _positioninfo[0] + 95; //得到定位后的top
  3880. _left = _positioninfo[1]; //得到定位后的left
  3881. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3882. }
  3883. /**
  3884. * 判断拖动后图标是否重叠
  3885. *
  3886. * @param {element} 拖动的元素
  3887. * @param {element} 桌面所有的元素
  3888. * @param {array} 拖动元素的位置
  3889. ----------[0] 上 top
  3890. ----------[1] 左 left
  3891. * @return {object} 命名空间
  3892. */
  3893. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3894. //循环所有的图标
  3895. for (var i = 0; i < childs.length; i++) {
  3896. //判断有没有和该图标诶子重叠的元素
  3897. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3898. return childs[i]; //如果有返回
  3899. }
  3900. }
  3901. }
  3902. //#endregion
  3903. //#endregion
  3904. //#region 桌面应用
  3905. /**
  3906. * 打开应用
  3907. *
  3908. * @param {string} 类型
  3909. -----------------Disk 网盘系统
  3910. -----------------PDisk 学习系统网盘
  3911. -----------------Poto 图片
  3912. -----------------Video 视频
  3913. -----------------Music 音乐
  3914. -----------------Word word
  3915. -----------------Excel excel
  3916. -----------------Txt 记事本
  3917. -----------------PB 学习系统
  3918. -----------------Blog 朋友圈系统
  3919. -----------------FTP ftp系统
  3920. -----------------Group 好友群
  3921. -----------------SY 首页系统
  3922. -----------------Set 个人设置
  3923. -----------------XSet 系统设置
  3924. -----------------App 我们所有的app
  3925. -----------------BC c.1473.cn 平台
  3926. -----------------CWeb d.1473.cn 变成平台
  3927. -----------------其他的外联系统 我们统一用iframe打开
  3928. * @param {array} 类型
  3929. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3930. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3931. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3932. 如果第一个参数为其他,则无第二个参数
  3933. * @returns {array}
  3934. */
  3935. window.addEventListener('message', function (e) { // 监听 message 事件
  3936. // alert(e.data.type);
  3937. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3938. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3939. //3是展示全部阶段 2学生 1老师 4专家
  3940. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3941. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3942. //3是展示全部阶段 2学生 1老师 4专家
  3943. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3944. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3945. //3是展示全部阶段 2学生 1老师 4专家
  3946. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3947. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3948. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3949. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3950. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3951. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3952. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3953. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3954. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3955. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3956. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3957. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3958. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3959. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3960. //3是展示全部阶段 2学生 1老师 4专家
  3961. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3962. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3963. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3964. U.MD.D.I.selectUser();
  3965. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3966. var _formel = document.getElementById("study");
  3967. U.UF.F.windowZooming(_formel);
  3968. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3969. var _formel = document.getElementById("studyDetail");
  3970. U.UF.F.windowZooming(_formel);
  3971. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3972. var _formel = document.getElementById("studyDetail");
  3973. U.UF.F.windowZooming(_formel);
  3974. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3975. var _formel = document.getElementById("studentStudy");
  3976. U.UF.F.windowZooming(_formel);
  3977. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3978. // var _formel = document.getElementById("study");
  3979. //如果最大化了,那么就把他缩小
  3980. // if (_formel.ismaximize) {
  3981. // return;
  3982. // }
  3983. // U.UF.F.windowZooming(_formel);
  3984. // U.UF.F.topWindow(_formel);
  3985. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3986. // var _formel = document.getElementById("studyDetail");
  3987. //如果最大化了,那么就把他缩小
  3988. // if (_formel.ismaximize) {
  3989. // return;
  3990. // }
  3991. // U.UF.F.windowZooming(_formel);
  3992. // U.UF.F.topWindow(_formel);
  3993. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3994. // var _formel = document.getElementById("studentStudy");
  3995. // if (_formel.ismaximize) {
  3996. // return;
  3997. // }
  3998. // U.UF.F.windowZooming(_formel);
  3999. // U.UF.F.topWindow(_formel);
  4000. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4001. var _formel = document.getElementById("study");
  4002. // if (_formel.ismaximize) {
  4003. // return;
  4004. // }
  4005. // U.UF.F.windowZooming(_formel);
  4006. U.UF.F.topWindow(_formel);
  4007. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4008. var _formel = document.getElementById("studentIndex");
  4009. U.UF.F.windowZooming(_formel);
  4010. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4011. var _formel = document.getElementById("studyDetailS");
  4012. U.UF.F.windowZooming(_formel);
  4013. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4014. var _formel = document.getElementById("studioIndex");
  4015. U.UF.F.windowZooming(_formel);
  4016. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4017. var _formel = document.getElementById("studyDetailStudio");
  4018. U.UF.F.windowZooming(_formel);
  4019. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4020. var _formel = document.getElementById("studyDetailStudio");
  4021. U.UF.F.windowZooming(_formel);
  4022. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4023. var _formel = document.getElementById("studyDetailNT");
  4024. U.UF.F.windowZooming(_formel);
  4025. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4026. var _formel = document.getElementById("studyDetailS");
  4027. U.UF.F.windowZooming(_formel);
  4028. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4029. var _formel = document.getElementById("studyDetailS");
  4030. U.UF.F.topWindow(_formel);
  4031. } else if (e.data.tools && e.data.tools == "1") {
  4032. // U.MD.D.I.openApplication("whiteboard")
  4033. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4034. } else if (e.data.tools && e.data.tools == "2") {
  4035. U.MD.D.I.openApplication("note")
  4036. } else if (e.data.tools && e.data.tools == "3") {
  4037. // U.MD.D.I.openApplication("mind")
  4038. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4039. } else if (e.data.tools && e.data.tools == "4") {
  4040. U.MD.D.I.openApplication("investigation")
  4041. } else if (e.data.tools && e.data.tools == "6") {
  4042. // U.MD.D.I.openApplication("doc")
  4043. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4044. } else if (e.data.tools && e.data.tools == "7") {
  4045. // U.MD.D.I.openApplication("mindNetwork")
  4046. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4047. } else if (e.data.tools && e.data.tools == "8") {
  4048. U.MD.D.I.openApplication("library")
  4049. } else if (e.data.tools && e.data.tools == "17") {
  4050. U.MD.D.I.openApplication("stuLibrary")
  4051. } else if (e.data.tools && e.data.tools == "18") {
  4052. U.MD.D.I.openApplication("train")
  4053. } else if (e.data.tools && e.data.tools == "21") {
  4054. U.MD.D.I.openApplication("program")
  4055. } else if (e.data.tools && e.data.tools == "22") {
  4056. U.MD.D.I.openApplication("AIprogram2")
  4057. } else if (e.data.tools && e.data.tools == "23") {
  4058. U.MD.D.I.openApplication("Pythonprogram")
  4059. } else if (e.data.tools && e.data.tools == "24") {
  4060. U.MD.D.I.openApplication("AIprogram")
  4061. } else if (e.data.tools && e.data.tools == "25") {
  4062. U.MD.D.I.openApplication("sys")
  4063. } else if (e.data.tools && e.data.tools == "26") {
  4064. // U.MD.D.I.openApplication("courseDesign")
  4065. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4066. } else if (e.data.tools && e.data.tools == "31") {
  4067. U.MD.D.I.openApplication("netWorkPanel")
  4068. } else if (e.data.tools && e.data.tools == "32") {
  4069. U.MD.D.I.openApplication("codeEdit")
  4070. } else if (e.data.tools && e.data.tools == "57") {
  4071. U.MD.D.I.openApplication("CocoPi")
  4072. } else if (e.data.tools && e.data.tools == "63") {
  4073. U.MD.D.I.openApplication("Wood")
  4074. } else if (e.data.tools && e.data.tools == "58") {
  4075. U.MD.D.I.openApplication("car")
  4076. } else if (e.data.tools && e.data.tools == "59") {
  4077. U.MD.D.I.openApplication("lineSearch")
  4078. } else if (e.data.tools && e.data.tools == "60") {
  4079. U.MD.D.I.openApplication("deepLearning")
  4080. } else if (e.data.tools && e.data.tools == "61") {
  4081. U.MD.D.I.openApplication("allHistory")
  4082. } else if (e.data.tools && e.data.tools == "28") {
  4083. U.MD.D.I.openApplication("translation")
  4084. } else if (e.data.tools && e.data.tools == "37") {
  4085. U.MD.D.I.openApplication("mohe")
  4086. } else if (e.data.tools && e.data.tools == "38") {
  4087. U.MD.D.I.openApplication("24game")
  4088. } else if (e.data.tools && e.data.tools == "39") {
  4089. U.MD.D.I.openApplication("GeoGebra")
  4090. } else if (e.data.tools && e.data.tools == "43") {
  4091. U.MD.D.I.openApplication("studentEvaluate")
  4092. } else if (e.data.tools && e.data.tools == "44") {
  4093. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4094. } else if (e.data.tools && e.data.tools == "46") {
  4095. U.MD.D.I.openApplication("project")
  4096. } else if (e.data.tools && e.data.tools == "71") {
  4097. U.MD.D.I.openApplication("aigptCourse")
  4098. } else if (e.data.tools && e.data.tools == "1s") {
  4099. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4100. } else if (e.data.tools && e.data.tools == "3s") {
  4101. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4102. } else if (e.data.tools && e.data.tools == "6s") {
  4103. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4104. } else if (e.data.tools && e.data.tools == "1studio") {
  4105. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4106. } else if (e.data.tools && e.data.tools == "3studio") {
  4107. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4108. } else if (e.data.tools && e.data.tools == "6studio") {
  4109. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4110. } else if (e.data.tools && e.data.tools == "3y") {
  4111. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4112. } else if (e.data.tools && e.data.tools == "1y") {
  4113. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4114. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4115. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4116. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4117. U.MD.D.I.openApplication("AIAnalyse")
  4118. } else if (e.data.tools && e.data.tools == "1teacher") {
  4119. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4120. } else if (e.data.tools && e.data.tools == "3teacher") {
  4121. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4122. } else if (e.data.tools && e.data.tools == "7teacher") {
  4123. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4124. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4125. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4126. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4127. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4128. } else if (e.data.tools && e.data.tools == "1E") {
  4129. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4130. } else if (e.data.tools && e.data.tools == "3E") {
  4131. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4132. } else if (e.data.tools && e.data.tools == "57y") {
  4133. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4134. } else if (e.data.tools && e.data.tools == "57u") {
  4135. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4136. } else if (e.data.tools && e.data.tools == "57teacher") {
  4137. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4138. } else if (e.data.tools && e.data.tools == "64") {
  4139. U.MD.D.I.openApplication("AIChat")
  4140. } else if (e.data.tools && e.data.tools == "66") {
  4141. U.MD.D.I.openApplication("formulaEdi")
  4142. } else if (e.data.tools && e.data.tools == "67") {
  4143. U.MD.D.I.openApplication("molStr")
  4144. } else if (e.data.tools && e.data.tools == "68") {
  4145. U.MD.D.I.openApplication("timeAxis")
  4146. } else if (e.data.tools && e.data.tools == "openCourse") {
  4147. let _data = {
  4148. typea: e.data.typea || '',
  4149. typeb: e.data.typeb || '',
  4150. typed: e.data.typed || '',
  4151. }
  4152. U.MD.D.I.openInApplication("index", _data)
  4153. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4154. let _data = {
  4155. classid: e.data.classid || '',
  4156. }
  4157. U.MD.D.I.openInApplication("dataClass", _data)
  4158. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4159. let _data = {
  4160. cid: e.data.cid || '',
  4161. gid: e.data.gid || '',
  4162. }
  4163. U.MD.D.I.openInApplication("opencCscl", _data)
  4164. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4165. U.MD.D.I.openApplication("dataBoardTest")
  4166. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4167. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4168. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4169. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4170. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4171. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4172. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4173. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4174. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4175. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4176. }else if (e.data.tools && e.data.tools == "loginSz") {
  4177. U.MD.D.I.openInApplication("loginSz")
  4178. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4179. if($('#classroom_observation_board')[0]){
  4180. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4181. }
  4182. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4183. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4184. if($('#classroom_observation_ob_comment')[0]){
  4185. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4186. }
  4187. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4188. }
  4189. });
  4190. U.MD.D.I.selectUser = function () {
  4191. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4192. if (res.value[0].length > 0) {
  4193. US.userInfo = res.value[0][0];
  4194. $(".userName")[0].innerHTML = US.userInfo.username;
  4195. }
  4196. }, [], { "type": "GET", "withCredentials": true });
  4197. }
  4198. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4199. var _userinfo = US.userInfo, //登录用户信息
  4200. _userid = US.userInfo.userid, //登录用户id
  4201. _oid = _userinfo.organizeid,
  4202. _type = US.userInfo.type,
  4203. _org = US.userInfo.org,
  4204. _role = US.userInfo.role,
  4205. _classId = US.userInfo.classid;
  4206. if (_type == 4) {
  4207. tType = 4
  4208. }
  4209. switch (str) {
  4210. case "studyDetailNT": //无终端模式
  4211. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4212. setTimeout(() => {
  4213. U.MD.U.L.login();
  4214. }, 2000);
  4215. } else {
  4216. _formdiv = new U.UF.UI.form(
  4217. "课程详情",
  4218. $$("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 }), {
  4219. "id": "studyDetailNT",
  4220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4221. "onresize": function () { }
  4222. }, {
  4223. closecallback: function () { }
  4224. }, { "style": { "height": "36px" } }).form; //创建窗体
  4225. _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); } }
  4226. break;
  4227. }
  4228. case "studyDetail":
  4229. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4230. setTimeout(() => {
  4231. U.MD.U.L.login();
  4232. }, 2000);
  4233. } else {
  4234. _formdiv = new U.UF.UI.form(
  4235. "课程详情",
  4236. $$("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 }), {
  4237. "id": "studyDetail",
  4238. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4239. "onresize": function () { }
  4240. }, {
  4241. closecallback: function () { }
  4242. }, { "style": { "height": "36px" } }).form; //创建窗体
  4243. _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); } }
  4244. break;
  4245. }
  4246. case "studyDetailTrain":
  4247. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4248. setTimeout(() => {
  4249. U.MD.U.L.login();
  4250. }, 2000);
  4251. } else {
  4252. _formdiv = new U.UF.UI.form(
  4253. "培训详情",
  4254. $$("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 }), {
  4255. "id": "studyDetailTrain",
  4256. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4257. "onresize": function () { }
  4258. }, {
  4259. closecallback: function () { }
  4260. }, { "style": { "height": "36px" } }).form; //创建窗体
  4261. _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); } }
  4262. break;
  4263. }
  4264. case "studyDetailS":
  4265. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4266. setTimeout(() => {
  4267. U.MD.U.L.login();
  4268. }, 2000);
  4269. } else {
  4270. _formdiv = new U.UF.UI.form(
  4271. "项目详情",
  4272. $$("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 }), {
  4273. "id": "studyDetailS",
  4274. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4275. "onresize": function () { }
  4276. }, {
  4277. closecallback: function () { }
  4278. }, { "style": { "height": "36px" } }).form; //创建窗体
  4279. _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); } }
  4280. break;
  4281. }
  4282. case "studyDetailStudio":
  4283. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4284. setTimeout(() => {
  4285. U.MD.U.L.login();
  4286. }, 2000);
  4287. } else {
  4288. _formdiv = new U.UF.UI.form(
  4289. "工作详情",
  4290. $$("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 }), {
  4291. "id": "studyDetailStudio",
  4292. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4293. "onresize": function () { }
  4294. }, {
  4295. closecallback: function () { }
  4296. }, { "style": { "height": "36px" } }).form; //创建窗体
  4297. _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); } }
  4298. break;
  4299. }
  4300. case "studyDetailS5":
  4301. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4302. setTimeout(() => {
  4303. U.MD.U.L.login();
  4304. }, 2000);
  4305. } else {
  4306. _formdiv = new U.UF.UI.form(
  4307. "项目详情",
  4308. $$("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 }), {
  4309. "id": "studyDetailS",
  4310. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _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); } }
  4316. break;
  4317. }
  4318. case "studyDetailGM":
  4319. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4320. setTimeout(() => {
  4321. U.MD.U.L.login();
  4322. }, 2000);
  4323. } else {
  4324. _formdiv = new U.UF.UI.form(
  4325. "课程详情",
  4326. $$("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 }), {
  4327. "id": "studyDetail",
  4328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4329. "onresize": function () { }
  4330. }, {
  4331. closecallback: function () { }
  4332. }, { "style": { "height": "36px" } }).form; //创建窗体
  4333. _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); } }
  4334. break;
  4335. }
  4336. case "hanUrl":
  4337. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4338. setTimeout(() => {
  4339. U.MD.U.L.login();
  4340. }, 2000);
  4341. } else {
  4342. _formdiv = new U.UF.UI.form(
  4343. "汉字宫",
  4344. $$("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" }), {
  4345. "id": "hanUrl",
  4346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4347. "onresize": function () { }
  4348. }, {
  4349. closecallback: function () { }
  4350. }, { "style": { "height": "36px" } }).form; //创建窗体
  4351. _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); } }
  4352. break;
  4353. }
  4354. case "index":
  4355. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4356. setTimeout(() => {
  4357. U.MD.U.L.login();
  4358. }, 2000);
  4359. } else {
  4360. _formdiv = new U.UF.UI.form(
  4361. "课程中心",
  4362. $$("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 }), {
  4363. "id": "study",
  4364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. _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); } }
  4370. break;
  4371. }
  4372. case "dataClass":
  4373. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4374. setTimeout(() => {
  4375. U.MD.U.L.login();
  4376. }, 2000);
  4377. } else {
  4378. _formdiv = new U.UF.UI.form(
  4379. "数据报告",
  4380. $$("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 }), {
  4381. "id": "dataClass",
  4382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4383. "onresize": function () { }
  4384. }, {
  4385. closecallback: function () { }
  4386. }, { "style": { "height": "36px" } }).form; //创建窗体
  4387. _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); } }
  4388. break;
  4389. }
  4390. case "opencCscl":
  4391. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4392. setTimeout(() => {
  4393. U.MD.U.L.login();
  4394. }, 2000);
  4395. } else {
  4396. _formdiv = new U.UF.UI.form(
  4397. "协同建构",
  4398. $$("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 }), {
  4399. "id": "futureClass",
  4400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _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); } }
  4406. break;
  4407. }
  4408. case "openCourseUpdate":
  4409. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4410. setTimeout(() => {
  4411. U.MD.U.L.login();
  4412. }, 2000);
  4413. } else {
  4414. _formdiv = new U.UF.UI.form(
  4415. "课程管理",
  4416. $$("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 }), {
  4417. "id": "openCourseUpdate",
  4418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4419. "onresize": function () { }
  4420. }, {
  4421. closecallback: function () { }
  4422. }, { "style": { "height": "36px" } }).form; //创建窗体
  4423. break;
  4424. }
  4425. case "openNewCourseUpdate":
  4426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4427. setTimeout(() => {
  4428. U.MD.U.L.login();
  4429. }, 2000);
  4430. } else {
  4431. _formdiv = new U.UF.UI.form(
  4432. "课程管理",
  4433. $$("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 }), {
  4434. "id": "openCourseUpdate",
  4435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. break;
  4441. }
  4442. case "openCourseEUpdate":
  4443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4444. setTimeout(() => {
  4445. U.MD.U.L.login();
  4446. }, 2000);
  4447. } else {
  4448. _formdiv = new U.UF.UI.form(
  4449. "课程管理",
  4450. $$("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 }), {
  4451. "id": "openCourseUpdate",
  4452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4453. "onresize": function () { }
  4454. }, {
  4455. closecallback: function () { }
  4456. }, { "style": { "height": "36px" } }).form; //创建窗体
  4457. break;
  4458. }
  4459. case "openCourseAiUpdate":
  4460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4461. setTimeout(() => {
  4462. U.MD.U.L.login();
  4463. }, 2000);
  4464. } else {
  4465. _formdiv = new U.UF.UI.form(
  4466. "课程管理",
  4467. $$("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 }), {
  4468. "id": "openCourseUpdate",
  4469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. break;
  4475. }
  4476. case "openCourseNewUpdate":
  4477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4478. setTimeout(() => {
  4479. U.MD.U.L.login();
  4480. }, 2000);
  4481. } else {
  4482. _formdiv = new U.UF.UI.form(
  4483. "课程管理",
  4484. $$("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 }), {
  4485. "id": "openCourseUpdate",
  4486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4487. "onresize": function () { }
  4488. }, {
  4489. closecallback: function () { }
  4490. }, { "style": { "height": "36px" } }).form; //创建窗体
  4491. break;
  4492. }
  4493. case "inviteLoginSz":
  4494. _formdiv = new U.UF.UI.form(
  4495. "随机码登录",
  4496. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4497. "id": "loginSz",
  4498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4499. "onresize": function () { }
  4500. }, {
  4501. closecallback: function () { }
  4502. }, { "style": { "height": "36px" } }).form; //创建窗体
  4503. break;
  4504. case "loginSz":
  4505. _formdiv = new U.UF.UI.form(
  4506. "教师登录",
  4507. $$("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" }), {
  4508. "id": "loginSz",
  4509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4510. "onresize": function () { }
  4511. }, {
  4512. closecallback: function () { }
  4513. }, { "style": { "height": "36px" } }).form; //创建窗体
  4514. break;
  4515. case "teacher":
  4516. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4517. setTimeout(() => {
  4518. U.MD.U.L.login();
  4519. }, 2000);
  4520. } else {
  4521. _formdiv = new U.UF.UI.form(
  4522. "教师管理",
  4523. $$("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 }), {
  4524. "id": "teacher",
  4525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. break;
  4531. }
  4532. case "dataBoardSZArea":
  4533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4534. setTimeout(() => {
  4535. U.MD.U.L.login();
  4536. }, 2000);
  4537. } else {
  4538. _formdiv = new U.UF.UI.form(
  4539. "综合数据看板",
  4540. $$("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 }), {
  4541. "id": "dataBoardSZArea",
  4542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4543. "onresize": function () { }
  4544. }, {
  4545. closecallback: function () { }
  4546. }, { "style": { "height": "36px" } }).form; //创建窗体
  4547. break;
  4548. }
  4549. case "dataBoardSZCity":
  4550. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4551. setTimeout(() => {
  4552. U.MD.U.L.login();
  4553. }, 2000);
  4554. } else {
  4555. _formdiv = new U.UF.UI.form(
  4556. "综合数据看板",
  4557. $$("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 }), {
  4558. "id": "dataBoardSZCity",
  4559. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. break;
  4565. }
  4566. case "classroom_observation_board":
  4567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4568. setTimeout(() => {
  4569. U.MD.U.L.login();
  4570. }, 2000);
  4571. } else {
  4572. _formdiv = new U.UF.UI.form(
  4573. "课堂观察",
  4574. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4575. "id": "classroom_observation_board",
  4576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. break;
  4582. }
  4583. case "classroom_observation_ob_comment":
  4584. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4585. setTimeout(() => {
  4586. U.MD.U.L.login();
  4587. }, 2000);
  4588. } else {
  4589. _formdiv = new U.UF.UI.form(
  4590. "课堂审核",
  4591. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4592. "id": "classroom_observation_ob_comment",
  4593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4594. "onresize": function () { }
  4595. }, {
  4596. closecallback: function () { }
  4597. }, { "style": { "height": "36px" } }).form; //创建窗体
  4598. break;
  4599. }
  4600. }
  4601. }
  4602. U.MD.D.I.openApplication = function (str, obj, info) {
  4603. obj = obj || {};
  4604. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4605. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4606. _userinfo = US.userInfo, //登录用户信息
  4607. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4608. _oid = obj.organizeid || _userinfo.organizeid,
  4609. _type = US.userInfo.type,
  4610. _org = US.userInfo.org,
  4611. _role = US.userInfo.role,
  4612. _classId = US.userInfo.classid,
  4613. _TscreenType = 1
  4614. _screenType = 2,
  4615. _SscreenType = 3;
  4616. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4617. return;
  4618. }
  4619. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4620. switch (str) {
  4621. case "studnetProject": //好友打开
  4622. _formdiv = new U.UF.UI.form(
  4623. "我的项目",
  4624. $$("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 }), {
  4625. "id": "studnetProject",
  4626. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4627. "onresize": function () { }
  4628. }, {
  4629. closecallback: function () { }
  4630. }, { "style": { "height": "36px" } }).form; //创建窗体
  4631. _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); } }
  4632. break;
  4633. case "studentEvaluate": //好友打开
  4634. _formdiv = new U.UF.UI.form(
  4635. "我的评价",
  4636. $$("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 }), {
  4637. "id": "studentEvaluate",
  4638. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4639. "onresize": function () { }
  4640. }, {
  4641. closecallback: function () { }
  4642. }, { "style": { "height": "36px" } }).form; //创建窗体
  4643. _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); } }
  4644. break;
  4645. case "my":
  4646. _formdiv = new U.UF.UI.form(
  4647. "我的资料",
  4648. $$("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 }), {
  4649. "id": "my",
  4650. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4651. "onresize": function () { }
  4652. }, {
  4653. closecallback: function () { }
  4654. }, { "style": { "height": "36px" } }).form; //创建窗体
  4655. _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); } }
  4656. break;
  4657. case "program":
  4658. _formdiv = new U.UF.UI.form(
  4659. "编程平台",
  4660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4661. "id": "program",
  4662. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4663. "onresize": function () { }
  4664. }, {
  4665. closecallback: function () { }
  4666. }, { "style": { "height": "36px" } }).form; //创建窗体
  4667. _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); } }
  4668. break;
  4669. case "library":
  4670. _formdiv = new U.UF.UI.form(
  4671. "素材库",
  4672. $$("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 }), {
  4673. "id": "library",
  4674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. _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); } }
  4680. break;
  4681. case "whiteboard":
  4682. _formdiv = new U.UF.UI.form(
  4683. "电子白板",
  4684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4685. "id": "whiteboard",
  4686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4687. "onresize": function () { }
  4688. }, {
  4689. closecallback: function () { }
  4690. }, { "style": { "height": "36px" } }).form; //创建窗体
  4691. _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); } }
  4692. break;
  4693. case "investigation":
  4694. _formdiv = new U.UF.UI.form(
  4695. "问卷调查",
  4696. $$("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 }), {
  4697. "id": "investigation",
  4698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4699. "onresize": function () { }
  4700. }, {
  4701. closecallback: function () { }
  4702. }, { "style": { "height": "36px" } }).form; //创建窗体
  4703. _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); } }
  4704. break;
  4705. case "note":
  4706. _formdiv = new U.UF.UI.form(
  4707. "便签分类",
  4708. $$("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 }), {
  4709. "id": "note",
  4710. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4716. break;
  4717. // case "score":
  4718. // _formdiv = new U.UF.UI.form(
  4719. // "量规评分",
  4720. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4721. // "id": "score",
  4722. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4723. // "onresize": function() {}
  4724. // }, {
  4725. // closecallback: function() {}
  4726. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. // _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); } }
  4728. // break;
  4729. case "mind":
  4730. _formdiv = new U.UF.UI.form(
  4731. "思维导图",
  4732. $$("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"
  4733. "id": "mind",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. case "doc":
  4742. // U.MD.D.I.isRoom();
  4743. _formdiv = new U.UF.UI.form(
  4744. "协同文档",
  4745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4746. "id": "doc",
  4747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4753. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4754. // })
  4755. _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); } }
  4756. break;
  4757. case "studentStudy":
  4758. _formdiv = new U.UF.UI.form(
  4759. "课程中心",
  4760. $$("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
  4761. "id": "studentStudy",
  4762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _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); } }
  4768. break;
  4769. case "train": //好友打开
  4770. _formdiv = new U.UF.UI.form(
  4771. "训练平台",
  4772. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4773. "id": "train",
  4774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _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); } }
  4780. break;
  4781. case "mindNetwork": //好友打开
  4782. _formdiv = new U.UF.UI.form(
  4783. "思维网格",
  4784. $$("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 }), {
  4785. "id": "mindNetwork",
  4786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _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); } }
  4792. break;
  4793. case "studentClassRoom": //好友打开
  4794. _formdiv = new U.UF.UI.form(
  4795. "实时课堂",
  4796. $$("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 }), {
  4797. "id": "studentClassRoom",
  4798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _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); } }
  4804. setTimeout(() => {
  4805. U.UF.F.windowZooming(_formdiv)
  4806. }, 0);
  4807. break;
  4808. }
  4809. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4810. switch (str) {
  4811. case "studnetProject": //好友打开
  4812. _formdiv = new U.UF.UI.form(
  4813. "我的项目",
  4814. $$("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 }), {
  4815. "id": "studnetProject",
  4816. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _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); } }
  4822. break;
  4823. case "studentEvaluate": //好友打开
  4824. _formdiv = new U.UF.UI.form(
  4825. "我的评价",
  4826. $$("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 }), {
  4827. "id": "studentEvaluate",
  4828. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _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); } }
  4834. break;
  4835. case "my":
  4836. _formdiv = new U.UF.UI.form(
  4837. "我的资料",
  4838. $$("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 }), {
  4839. "id": "my",
  4840. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. case "program":
  4848. _formdiv = new U.UF.UI.form(
  4849. "编程平台",
  4850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4851. "id": "program",
  4852. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _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); } }
  4858. break;
  4859. case "library":
  4860. _formdiv = new U.UF.UI.form(
  4861. "素材库",
  4862. $$("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 }), {
  4863. "id": "library",
  4864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _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); } }
  4870. break;
  4871. case "whiteboard":
  4872. _formdiv = new U.UF.UI.form(
  4873. "电子白板",
  4874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4875. "id": "whiteboard",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. case "investigation":
  4884. _formdiv = new U.UF.UI.form(
  4885. "问卷调查",
  4886. $$("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 }), {
  4887. "id": "investigation",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _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); } }
  4894. break;
  4895. case "note":
  4896. _formdiv = new U.UF.UI.form(
  4897. "便签分类",
  4898. $$("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 }), {
  4899. "id": "note",
  4900. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _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); } }
  4906. break;
  4907. // case "score":
  4908. // _formdiv = new U.UF.UI.form(
  4909. // "量规评分",
  4910. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4911. // "id": "score",
  4912. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4913. // "onresize": function() {}
  4914. // }, {
  4915. // closecallback: function() {}
  4916. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. // _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); } }
  4918. // break;
  4919. case "mind":
  4920. _formdiv = new U.UF.UI.form(
  4921. "思维导图",
  4922. $$("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"
  4923. "id": "mind",
  4924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4925. "onresize": function () { }
  4926. }, {
  4927. closecallback: function () { }
  4928. }, { "style": { "height": "36px" } }).form; //创建窗体
  4929. _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); } }
  4930. break;
  4931. case "doc":
  4932. // U.MD.D.I.isRoom();
  4933. _formdiv = new U.UF.UI.form(
  4934. "协同文档",
  4935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4936. "id": "doc",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4943. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4944. })
  4945. _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); } }
  4946. break;
  4947. case "train": //好友打开
  4948. _formdiv = new U.UF.UI.form(
  4949. "训练平台",
  4950. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4951. "id": "train",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. case "studentStudy":
  4960. _formdiv = new U.UF.UI.form(
  4961. "课程中心",
  4962. $$("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
  4963. "id": "studentStudy",
  4964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //创建窗体
  4969. _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); } }
  4970. break;
  4971. case "mindNetwork": //好友打开
  4972. _formdiv = new U.UF.UI.form(
  4973. "思维网格",
  4974. $$("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 }), {
  4975. "id": "mindNetwork",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. _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); } }
  4982. break;
  4983. case "studentClassRoom": //好友打开
  4984. _formdiv = new U.UF.UI.form(
  4985. "实时课堂",
  4986. $$("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 }), {
  4987. "id": "studentClassRoom",
  4988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. setTimeout(() => {
  4995. U.UF.F.windowZooming(_formdiv)
  4996. }, 0);
  4997. break;
  4998. }
  4999. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5000. //选择应用处理
  5001. switch (str) {
  5002. case "project": //好友打开
  5003. _formdiv = new U.UF.UI.form(
  5004. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5005. $$("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 }), {
  5006. "id": "project",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. _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); } }
  5013. break;
  5014. case "student":
  5015. _formdiv = new U.UF.UI.form(
  5016. "学生管理",
  5017. $$("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 }), {
  5018. "id": "student",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _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); } }
  5025. break;
  5026. case "evaluate":
  5027. _formdiv = new U.UF.UI.form(
  5028. "学生评价",
  5029. $$("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 }), {
  5030. "id": "evaluate",
  5031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break;
  5038. case "sys":
  5039. _formdiv = new U.UF.UI.form(
  5040. "目标管理",
  5041. $$("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 }), {
  5042. "id": "sys",
  5043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _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); } }
  5049. break;
  5050. case "courseDesign":
  5051. _formdiv = new U.UF.UI.form(
  5052. "项目设计",
  5053. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5054. "id": "courseDesign",
  5055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "program":
  5063. _formdiv = new U.UF.UI.form(
  5064. "编程平台",
  5065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5066. "id": "program",
  5067. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. case "class":
  5075. _formdiv = new U.UF.UI.form(
  5076. "班级管理",
  5077. $$("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 }), {
  5078. "id": "class",
  5079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. _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); } }
  5085. break;
  5086. case "Grade":
  5087. _formdiv = new U.UF.UI.form(
  5088. "年级管理",
  5089. $$("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 }), {
  5090. "id": "Grade",
  5091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "teacherOffice":
  5099. _formdiv = new U.UF.UI.form(
  5100. "教研室",
  5101. $$("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 }), {
  5102. "id": "teacherOffice",
  5103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. case "my":
  5111. _formdiv = new U.UF.UI.form(
  5112. "我的资料",
  5113. $$("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 }), {
  5114. "id": "my",
  5115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "notice":
  5123. _formdiv = new U.UF.UI.form(
  5124. "通知公告",
  5125. $$("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 }), {
  5126. "id": "notice",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "library":
  5135. _formdiv = new U.UF.UI.form(
  5136. "素材库",
  5137. $$("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 }), {
  5138. "id": "library",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "whiteboard":
  5147. _formdiv = new U.UF.UI.form(
  5148. "电子白板",
  5149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5150. "id": "whiteboard",
  5151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "investigation":
  5159. _formdiv = new U.UF.UI.form(
  5160. "问卷调查",
  5161. $$("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 }), {
  5162. "id": "investigation",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "note":
  5171. _formdiv = new U.UF.UI.form(
  5172. "便签分类",
  5173. $$("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 }), {
  5174. "id": "note",
  5175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. // case "score":
  5183. // _formdiv = new U.UF.UI.form(
  5184. // "量规评分",
  5185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5186. // "id": "score",
  5187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. // "onresize": function() {}
  5189. // }, {
  5190. // closecallback: function() {}
  5191. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. // _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); } }
  5193. // break;
  5194. case "mind":
  5195. _formdiv = new U.UF.UI.form(
  5196. "思维导图",
  5197. $$("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"
  5198. "id": "mind",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "doc":
  5207. // U.MD.D.I.isRoom();
  5208. _formdiv = new U.UF.UI.form(
  5209. "协同文档",
  5210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5211. "id": "doc",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5219. })
  5220. _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); } }
  5221. break;
  5222. case "study":
  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/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5226. "id": "study",
  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. case "mindNetwork": //好友打开
  5235. _formdiv = new U.UF.UI.form(
  5236. "思维网格",
  5237. $$("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 }), {
  5238. "id": "mindNetwork",
  5239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "train": //好友打开
  5247. _formdiv = new U.UF.UI.form(
  5248. "训练平台",
  5249. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5250. "id": "mindNetwork",
  5251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _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); } }
  5257. break;
  5258. case "teacherClassRoom": //好友打开
  5259. _formdiv = new U.UF.UI.form(
  5260. "实时课堂",
  5261. $$("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 }), {
  5262. "id": "teacherClassRoom",
  5263. "style": { "width": "90%", "height": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5269. setTimeout(() => {
  5270. U.UF.F.windowZooming(_formdiv)
  5271. }, 0);
  5272. break;
  5273. }
  5274. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5275. switch (str) {
  5276. case "project": //好友打开
  5277. _formdiv = new U.UF.UI.form(
  5278. "课程管理",
  5279. $$("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 }), {
  5280. "id": "project",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5287. break;
  5288. case "evaluate":
  5289. _formdiv = new U.UF.UI.form(
  5290. "学生评价",
  5291. $$("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 }), {
  5292. "id": "evaluate",
  5293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5299. break;
  5300. case "notice":
  5301. _formdiv = new U.UF.UI.form(
  5302. "通知公告",
  5303. $$("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 }), {
  5304. "id": "notice",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5311. break;
  5312. case "stuLibrary":
  5313. _formdiv = new U.UF.UI.form(
  5314. "学习资料",
  5315. $$("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 }), {
  5316. "id": "stuLibrary",
  5317. "style": { "width": "90%", "height": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5323. break;
  5324. case "program":
  5325. _formdiv = new U.UF.UI.form(
  5326. "编程平台",
  5327. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5328. "id": "program",
  5329. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "whiteboard":
  5337. _formdiv = new U.UF.UI.form(
  5338. "电子白板",
  5339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5340. "id": "whiteboard",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "investigation":
  5349. _formdiv = new U.UF.UI.form(
  5350. "问卷调查",
  5351. $$("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 }), {
  5352. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5359. break;
  5360. case "mind":
  5361. _formdiv = new U.UF.UI.form(
  5362. "思维导图",
  5363. $$("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"
  5364. "id": "mind",
  5365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "doc":
  5373. // U.MD.D.I.isRoom();
  5374. _formdiv = new U.UF.UI.form(
  5375. "协同文档",
  5376. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5377. "id": "doc",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5384. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5385. })
  5386. _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); } }
  5387. break;
  5388. case "study":
  5389. _formdiv = new U.UF.UI.form(
  5390. "课程中心",
  5391. $$("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
  5392. "id": "study",
  5393. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _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); } }
  5399. break;
  5400. case "mindNetwork": //好友打开
  5401. _formdiv = new U.UF.UI.form(
  5402. "思维网格",
  5403. $$("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 }), {
  5404. "id": "mindNetwork",
  5405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. break;
  5412. case "train": //好友打开
  5413. _formdiv = new U.UF.UI.form(
  5414. "训练平台",
  5415. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5416. "id": "train",
  5417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _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); } }
  5423. break;
  5424. case "sys":
  5425. _formdiv = new U.UF.UI.form(
  5426. "目标管理",
  5427. $$("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 }), {
  5428. "id": "sys",
  5429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "courseDesign":
  5437. _formdiv = new U.UF.UI.form(
  5438. "项目设计",
  5439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5440. "id": "courseDesign",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. }
  5449. } else if (!_type) {
  5450. switch (str) {
  5451. case "my":
  5452. _formdiv = new U.UF.UI.form(
  5453. "我的资料",
  5454. $$("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 }), {
  5455. "id": "my",
  5456. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. break;
  5463. }
  5464. }
  5465. switch (str) {
  5466. // AIprogram2 AI体验 aihub.cocorobo.cn
  5467. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5468. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5469. case "formulaEdi": //公式编辑
  5470. _formdiv = new U.UF.UI.form(
  5471. "公式编辑",
  5472. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5473. "id": "formulaEdi",
  5474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "molStr": //分子结构
  5482. _formdiv = new U.UF.UI.form(
  5483. "分子结构",
  5484. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5485. "id": "molStr",
  5486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "timeAxis": //时间轴
  5494. _formdiv = new U.UF.UI.form(
  5495. "时间轴",
  5496. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5497. "id": "timeAxis",
  5498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "AIprogram2": //AI体验
  5506. _formdiv = new U.UF.UI.form(
  5507. "AI体验",
  5508. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5509. "id": "AIprogram2",
  5510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _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); } }
  5516. break;
  5517. case "Pythonprogram": //python编程
  5518. _formdiv = new U.UF.UI.form(
  5519. "Python编程",
  5520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5521. "id": "Pythonprogram",
  5522. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _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); } }
  5528. break;
  5529. case "AIprogram": //ai编程
  5530. _formdiv = new U.UF.UI.form(
  5531. "AI编程平台",
  5532. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5533. "id": "AIprogram",
  5534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. case "CocoPi": //CocoPi
  5542. _formdiv = new U.UF.UI.form(
  5543. "CocoPi",
  5544. $$("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" }), {
  5545. "id": "CocoPi",
  5546. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _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); } }
  5552. break;
  5553. case "Wood": //Wood
  5554. _formdiv = new U.UF.UI.form(
  5555. "海龟编程",
  5556. $$("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/" }), {
  5557. "id": "Wood",
  5558. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _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); } }
  5564. break;
  5565. case "car": //模拟驾驶
  5566. _formdiv = new U.UF.UI.form(
  5567. "模拟驾驶",
  5568. $$("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/" }), {
  5569. "id": "car",
  5570. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "lineSearch": //路径搜索
  5578. _formdiv = new U.UF.UI.form(
  5579. "路径搜索",
  5580. $$("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/" }), {
  5581. "id": "lineSearch",
  5582. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "deepLearning": //深度学习
  5590. _formdiv = new U.UF.UI.form(
  5591. "深度学习",
  5592. $$("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/#" }), {
  5593. "id": "deepLearning",
  5594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "allHistory": //深度学习
  5602. _formdiv = new U.UF.UI.form(
  5603. "全历史",
  5604. $$("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/" }), {
  5605. "id": "allHistory",
  5606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. case "chatPDF": //ai编程
  5614. _formdiv = new U.UF.UI.form(
  5615. "chatPDF",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5617. "id": "chatPDF",
  5618. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _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); } }
  5624. break;
  5625. case "resources": //国家教育
  5626. _formdiv = new U.UF.UI.form(
  5627. "国家教育",
  5628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5629. "id": "resources",
  5630. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "codeEdit": //源码编辑
  5638. _formdiv = new U.UF.UI.form(
  5639. "源码编辑",
  5640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5641. "id": "codeEdit",
  5642. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break; //
  5649. case "MindMap": //MindMap
  5650. _formdiv = new U.UF.UI.form(
  5651. "MindMap",
  5652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5653. "id": "MindMap",
  5654. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _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); } }
  5660. break;
  5661. case "netWorkPanel": //netWorkPanel
  5662. _formdiv = new U.UF.UI.form(
  5663. "netWorkPanel",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5665. "id": "netWorkPanel",
  5666. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. case "GeoGebra": //GeoGebra
  5674. _formdiv = new U.UF.UI.form(
  5675. "GeoGebra",
  5676. $$("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" }), {
  5677. "id": "GeoGebra",
  5678. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _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); } }
  5684. break;
  5685. case "translation": //翻译
  5686. _formdiv = new U.UF.UI.form(
  5687. "翻译",
  5688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5689. "id": "translation",
  5690. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "mohe": //魔盒
  5698. _formdiv = new U.UF.UI.form(
  5699. "魔盒识字",
  5700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5701. "id": "mohe",
  5702. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "24game": //24点
  5710. _formdiv = new U.UF.UI.form(
  5711. "24点",
  5712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5713. "id": "24game",
  5714. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. case "case":
  5722. _formdiv = new U.UF.UI.form(
  5723. "课程进展",
  5724. $$("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 }), {
  5725. "id": "case",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _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); } }
  5732. break;
  5733. case "snf":
  5734. _formdiv = new U.UF.UI.form(
  5735. "赛诺梵",
  5736. $$("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" }), {
  5737. "id": "snf",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _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); } }
  5744. break;
  5745. case "hanFamily":
  5746. _formdiv = new U.UF.UI.form(
  5747. "汉字家族",
  5748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5749. "id": "hanFamily",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "hanClassics":
  5758. _formdiv = new U.UF.UI.form(
  5759. "国学经典",
  5760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5761. "id": "hanClassics",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _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); } }
  5768. break;
  5769. case "hanTraining":
  5770. _formdiv = new U.UF.UI.form(
  5771. "笔画训练",
  5772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5773. "id": "hanTraining",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. break;
  5781. case "hanClass":
  5782. _formdiv = new U.UF.UI.form(
  5783. "书法课堂",
  5784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5785. "id": "hanClass",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. case "han":
  5794. _formdiv = new U.UF.UI.form(
  5795. "汉字宫",
  5796. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5797. "id": "han",
  5798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5799. "onresize": function () { }
  5800. }, {
  5801. closecallback: function () { }
  5802. }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. _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); } }
  5804. break;
  5805. case "projectGM": //课程管理
  5806. _formdiv = new U.UF.UI.form(
  5807. "课程管理",
  5808. $$("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 }), {
  5809. "id": "projectGM",
  5810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "studyGM": //课程中心
  5818. _formdiv = new U.UF.UI.form(
  5819. "课程中心",
  5820. $$("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
  5821. "id": "study",
  5822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. // studentGM
  5830. case "studentGM": //学生管理
  5831. _formdiv = new U.UF.UI.form(
  5832. "学生管理",
  5833. $$("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 }), {
  5834. "id": "studentGM",
  5835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _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); } }
  5841. break;
  5842. case "evaluateGM": //学生评价
  5843. _formdiv = new U.UF.UI.form(
  5844. "学生评价",
  5845. $$("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 }), {
  5846. "id": "evaluateGM",
  5847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _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); } }
  5853. break;
  5854. // classGM
  5855. case "classGM": //班级管理
  5856. _formdiv = new U.UF.UI.form(
  5857. "班级管理",
  5858. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5859. "id": "classGM",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5866. break;
  5867. // dataGM
  5868. case "dataGM":
  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-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  5872. "id": "dataGM",
  5873. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. // caseGM
  5881. case "caseGM": //课程进展
  5882. _formdiv = new U.UF.UI.form(
  5883. "课程进展",
  5884. $$("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 }), {
  5885. "id": "caseGM",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. _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); } }
  5892. break;
  5893. // meterialGM
  5894. case "meterialGM": //素材库
  5895. _formdiv = new U.UF.UI.form(
  5896. "素材库",
  5897. $$("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 }), {
  5898. "id": "meterialGM",
  5899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. _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); } }
  5905. break;
  5906. // evaluateSGM
  5907. case "evaluateSGM": //我的评价
  5908. _formdiv = new U.UF.UI.form(
  5909. "我的评价",
  5910. $$("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 }), {
  5911. "id": "evaluateSGM",
  5912. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5918. break;
  5919. case "jupyter": //jupyter
  5920. _formdiv = new U.UF.UI.form(
  5921. "jupyter",
  5922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5923. "id": "jupyter",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. case "number": //数字实验室
  5932. _formdiv = new U.UF.UI.form(
  5933. "数字实验室",
  5934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5935. "id": "number",
  5936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5942. break;
  5943. case "studentCourse": //项目管理 学生
  5944. _formdiv = new U.UF.UI.form(
  5945. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5946. $$("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 }), {
  5947. "id": "studentCourse",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5954. break;
  5955. case "studentCourseS": //项目管理 老师
  5956. _formdiv = new U.UF.UI.form(
  5957. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5958. $$("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 }), {
  5959. "id": "studentCourseS",
  5960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "studentIndex": //项目中心
  5968. _formdiv = new U.UF.UI.form(
  5969. "项目中心",
  5970. $$("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 }), {
  5971. "id": "studentIndex",
  5972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. closecallback: function () { }
  5976. }, { "style": { "height": "36px" } }).form; //创建窗体
  5977. _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); } }
  5978. break;
  5979. case "CaseDesignS":
  5980. _formdiv = new U.UF.UI.form(
  5981. "项目进展",
  5982. $$("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 }), {
  5983. "id": "case",
  5984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5990. break;
  5991. case "tcStudent": //腾讯学生管理
  5992. _formdiv = new U.UF.UI.form(
  5993. "学生管理",
  5994. $$("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 }), {
  5995. "id": "tcStudent",
  5996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6002. break;
  6003. case "tcSchool": //腾讯学校管理
  6004. _formdiv = new U.UF.UI.form(
  6005. "学校管理",
  6006. $$("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 }), {
  6007. "id": "tcSchool",
  6008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6014. break;
  6015. case "tcTeacher": //腾讯学校管理
  6016. _formdiv = new U.UF.UI.form(
  6017. "教师管理",
  6018. $$("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 }), {
  6019. "id": "tcTeacher",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6026. break;
  6027. case "tcData": //腾讯我的资料
  6028. _formdiv = new U.UF.UI.form(
  6029. "我的资料",
  6030. $$("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 }), {
  6031. "id": "tcData",
  6032. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6038. break;
  6039. case "tcNotice": //腾讯消息通知
  6040. _formdiv = new U.UF.UI.form(
  6041. "消息通知",
  6042. $$("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 }), {
  6043. "id": "tcNotice",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6050. break;
  6051. case "myReport": //好友打开
  6052. _formdiv = new U.UF.UI.form(
  6053. "我的评价",
  6054. $$("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 }), {
  6055. "id": "myReport",
  6056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6062. break;
  6063. case "learnAna": //好友打开
  6064. _formdiv = new U.UF.UI.form(
  6065. "学习分析",
  6066. $$("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 }), {
  6067. "id": "learnAna",
  6068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6074. break;
  6075. case "AIChat": //AI共创
  6076. _formdiv = new U.UF.UI.form(
  6077. "AI共创",
  6078. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6079. "id": "AIChat",
  6080. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. istop: true,
  6084. closecallback: function () { $("#aichat_icon").remove(); },
  6085. narrowcallback: function () {
  6086. if (!$("#aichat_icon")[0]) {
  6087. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6088. }
  6089. },
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "ainew": //AI共创
  6094. _formdiv = new U.UF.UI.form(
  6095. "AI协同",
  6096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6097. "id": "ainew",
  6098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "gpt4": //gpt4
  6106. _formdiv = new U.UF.UI.form(
  6107. "AI助手",
  6108. $$("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 }), {
  6109. "id": "gpt4",
  6110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "aigpt": //gpt4
  6118. _formdiv = new U.UF.UI.form(
  6119. "AI助手+",
  6120. $$("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 }), {
  6121. "id": "aigpt",
  6122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () {
  6126. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6127. }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _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); } }
  6130. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6131. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6132. })
  6133. break;
  6134. case "aiKnowledge": //aiKnowledge
  6135. _formdiv = new U.UF.UI.form(
  6136. "知识建构",
  6137. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6138. "id": "aiKnowledge",
  6139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _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); } }
  6145. break;
  6146. case "futureClass": //AI共创
  6147. _formdiv = new U.UF.UI.form(
  6148. "协同建构",
  6149. $$("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
  6150. "id": "synergyCourse",
  6151. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () {
  6155. $("iframe", _formdiv)[0].contentWindow.loginout();
  6156. }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break;
  6160. case "aiagent": //ai agent
  6161. _formdiv = new U.UF.UI.form(
  6162. "AI Agent",
  6163. $$("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" }), {
  6164. "id": "AIAgent",
  6165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "dataBoard": //数据看板
  6173. _formdiv = new U.UF.UI.form(
  6174. "数据看板",
  6175. $$("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 }), {
  6176. "id": "dataBoard",
  6177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. case "dataBoardSies": //数据融合
  6185. _formdiv = new U.UF.UI.form(
  6186. "数据融合",
  6187. $$("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 }), {
  6188. "id": "dataBoardSies",
  6189. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _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); } }
  6195. break;
  6196. case "dataBoardNew": //数据看板
  6197. _formdiv = new U.UF.UI.form(
  6198. "综合看板",
  6199. $$("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 }), {
  6200. "id": "dataBoardNew",
  6201. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "dataBoardTest": //数据看板
  6209. _formdiv = new U.UF.UI.form(
  6210. "评测看板",
  6211. $$("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 }), {
  6212. "id": "dataBoardTest",
  6213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "AIAnalyse": //AI共创
  6221. _formdiv = new U.UF.UI.form(
  6222. "AI分析",
  6223. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6224. "id": "AIAnalyse",
  6225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. case "studioCourse": //AI共创
  6233. _formdiv = new U.UF.UI.form(
  6234. "工作管理",
  6235. $$("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 }), {
  6236. "id": "studioCourse",
  6237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. break;
  6244. case "studioIndex": //AI共创
  6245. _formdiv = new U.UF.UI.form(
  6246. "工作中心",
  6247. $$("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 }), {
  6248. "id": "studioIndex",
  6249. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break;
  6256. case "source":
  6257. _formdiv = new U.UF.UI.form(
  6258. "教学资源",
  6259. $$("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 }), {
  6260. "id": "source",
  6261. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "testTeacher":
  6269. _formdiv = new U.UF.UI.form(
  6270. "教师管理",
  6271. $$("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 }), {
  6272. "id": "testTeacher",
  6273. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "testStudent":
  6281. _formdiv = new U.UF.UI.form(
  6282. "教师中心",
  6283. $$("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 }), {
  6284. "id": "testStudent",
  6285. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. case "testTeacherSies":
  6293. _formdiv = new U.UF.UI.form(
  6294. "教师管理",
  6295. $$("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 }), {
  6296. "id": "testTeacherSies",
  6297. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _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); } }
  6303. break;
  6304. case "testStudentSies":
  6305. _formdiv = new U.UF.UI.form(
  6306. "教师中心",
  6307. $$("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 }), {
  6308. "id": "testStudentSies",
  6309. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _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); } }
  6315. break;
  6316. case "ytpbl": //消息通知
  6317. _formdiv = new U.UF.UI.form(
  6318. "案例征集",
  6319. $$("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 }), {
  6320. "id": "ytpbl",
  6321. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. // 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");
  6328. break;
  6329. case "aiCourseResource": //人工智能窗体
  6330. _formdiv = new U.UF.UI.form(
  6331. false,
  6332. $$("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 }), {
  6333. "id": "aiCourseResource",
  6334. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6335. "onresize": function () { },
  6336. "isdrag": false,
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _taskbar = ''
  6341. break;
  6342. case "szdjgCocooroboX": //图形化编程
  6343. _formdiv = new U.UF.UI.form(
  6344. "图形化编程",
  6345. $$("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" }), {
  6346. "id": "szdjgCocooroboX",
  6347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _taskbar = ''
  6353. break;
  6354. case "szdjgPython": //python编程
  6355. _formdiv = new U.UF.UI.form(
  6356. "Python编程",
  6357. $$("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" }), {
  6358. "id": "szdjgPython",
  6359. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6360. "onresize": function () { }
  6361. }, {
  6362. closecallback: function () { }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _taskbar = ''
  6365. break;
  6366. case "Record":
  6367. _formdiv = new U.UF.UI.form(
  6368. "观察记录",
  6369. $$("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 }), {
  6370. "id": "Record",
  6371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. case "aigptCourse":
  6379. _formdiv = new U.UF.UI.form(
  6380. "AI智能体",
  6381. $$("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' }), {
  6382. "id": "aigptCourse",
  6383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6384. "onresize": function () { }
  6385. }, {
  6386. closecallback: function () { }
  6387. }, { "style": { "height": "36px" } }).form; //创建窗体
  6388. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6389. break;
  6390. case "classroomObservation":
  6391. _formdiv = new U.UF.UI.form(
  6392. "课堂观察",
  6393. $$("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 }), {
  6394. "id": "classroomObservation",
  6395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6396. "onresize": function () { }
  6397. }, {
  6398. closecallback: function () { }
  6399. }, { "style": { "height": "36px" } }).form; //创建窗体
  6400. _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); } }
  6401. break;
  6402. case "pblCourse":
  6403. _formdiv = new U.UF.UI.form(
  6404. "学生PBL",
  6405. $$("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 }), {
  6406. "id": "pblCourse",
  6407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6408. "onresize": function () { }
  6409. }, {
  6410. closecallback: function () { }
  6411. }, { "style": { "height": "36px" } }).form; //创建窗体
  6412. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6413. break;
  6414. }
  6415. //U.MD.D.I.openClick(str);
  6416. //如果有任务栏信息
  6417. if (_taskbar) {
  6418. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6419. }
  6420. }
  6421. // U.MD.D.I.openClick = function(str){
  6422. // var click = '';
  6423. // switch(str){
  6424. // case 'friend':
  6425. // click = '我的好友';
  6426. // break;
  6427. // case 'domain':
  6428. // click = '域名管理';
  6429. // break;
  6430. // case 'disk':
  6431. // click = '我的云盘';
  6432. // break;
  6433. // case 'word':
  6434. // click = 'Word';
  6435. // break;
  6436. // case 'excel':
  6437. // click = 'Execl';
  6438. // break;
  6439. // case 'txt':
  6440. // click = '文本文件';
  6441. // break;
  6442. // case 'lookupFriend':
  6443. // click = '查找好友';
  6444. // break;
  6445. // case 'ftp':
  6446. // click = 'FTP';
  6447. // break;
  6448. // case 'group':
  6449. // click = '群组';
  6450. // break;
  6451. // case 'set':
  6452. // click = '我的设置';
  6453. // break;
  6454. // case 'systemSet':
  6455. // click = '系统设置';
  6456. // break;
  6457. // case 'boomYun':
  6458. // click = '互联办公';
  6459. // break;
  6460. // case 'xz':
  6461. // click = '云端下载';
  6462. // break;
  6463. // case 'client':
  6464. // click = '有思浏览器';
  6465. // break;
  6466. // case 'backEndProgramming':
  6467. // click = '在线后台编程';
  6468. // break;
  6469. // case 'frontEndProgramming':
  6470. // click = '在线前端编程';
  6471. // break;
  6472. // default: break;
  6473. // }
  6474. // if(U.MD.D.I.Ip && click){
  6475. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6476. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6477. // })
  6478. // }
  6479. // }
  6480. /**
  6481. *函数作用:ajax简易函数,使用post格式
  6482. *@param url {data} 后台地址
  6483. *@param data {data} 参数json
  6484. *@param fn {data} 回调函数
  6485. *
  6486. */
  6487. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6488. // var xhr = new XMLHttpRequest();
  6489. // xhr.open("GET",url,true);
  6490. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6491. // xhr.onreadystatechange = function(){
  6492. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6493. // fn.call(this,xhr.responseText);
  6494. // }
  6495. // };
  6496. // xhr.send();
  6497. // }
  6498. /*判断是否是内网IP*/
  6499. // U.MD.D.I.isInnerIPFn = function(str){
  6500. // var curPageUrl = str;
  6501. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6502. // curPageUrl =curPageUrl.replace(reg1,'');
  6503. // // console.log('curPageUrl-1 '+curPageUrl);
  6504. // var reg2 = /\:+/g;//替换冒号为一点
  6505. // curPageUrl =curPageUrl.replace(reg2,'.');
  6506. // // console.log('curPageUrl-2 '+curPageUrl);
  6507. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6508. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6509. // if(curPageUrl[2] != '16'){
  6510. // return ipAddress;
  6511. // }else{
  6512. // return false;
  6513. // }
  6514. // }
  6515. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6516. // //compatibility for firefox and chrome
  6517. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6518. // var pc = new myPeerConnection({
  6519. // iceServers: []
  6520. // }),
  6521. // noop = function() {},
  6522. // localIPs = {},
  6523. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6524. // key;
  6525. // function iterateIP(ip) {
  6526. // if (!localIPs[ip]) onNewIP(ip);
  6527. // localIPs[ip] = true;
  6528. // }
  6529. // //create a bogus data channel
  6530. // pc.createDataChannel("");
  6531. // // create offer and set local description
  6532. // pc.createOffer().then(function(sdp) {
  6533. // sdp.sdp.split('\n').forEach(function(line) {
  6534. // if (line.indexOf('candidate') < 0) return;
  6535. // line.match(ipRegex).forEach(iterateIP);
  6536. // });
  6537. // pc.setLocalDescription(sdp, noop, noop);
  6538. // }).catch(function(reason) {
  6539. // // An error occurred, so handle the failure to connect
  6540. // });
  6541. // //sten for candidate events
  6542. // pc.onicecandidate = function(ice) {
  6543. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6544. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6545. // };
  6546. // }
  6547. // U.MD.D.I.getUserIpBool = function(callback){
  6548. // U.MD.D.I.getUserIP(function(ip){
  6549. // alert("Got IP! :" + ip);
  6550. // });
  6551. //}
  6552. //#endregion
  6553. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6554. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6555. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6556. _userinfo = US.userInfo, //登录用户信息
  6557. _userid = US.userInfo.userid //登录用户id
  6558. let _iframe;
  6559. let _cid = cid,
  6560. _stage = stage,
  6561. _task = task,
  6562. _tool = tool;
  6563. var _jie = $$("div", {
  6564. "style": {
  6565. "position": "absolute",
  6566. "bottom": "50px",
  6567. "right": "50px",
  6568. "zIndex": "9999",
  6569. "backgroundColor": "#2268bc",
  6570. "color": "#fff",
  6571. "padding": "12px 20px",
  6572. "cursor": "pointer",
  6573. "borderRadius": "4px",
  6574. },
  6575. "innerHTML": "提交作业"
  6576. })
  6577. let aTool = ''
  6578. let _loading = document.createElement('div')
  6579. _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;"
  6580. // _loading.id = "";
  6581. let _lchild = document.createElement('div')
  6582. let _limg = document.createElement('img')
  6583. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6584. _limg.style = "width: 26px;margin-right: 10px;"
  6585. _lchild.appendChild(_limg)
  6586. let _lspan = document.createElement('span')
  6587. _lspan.innerHTML = "上传中..."
  6588. _lchild.appendChild(_lspan)
  6589. _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%);"
  6590. _loading.appendChild(_lchild)
  6591. var _box = $$('div', {
  6592. "style": {
  6593. "position": "relative",
  6594. "width": "100%",
  6595. "height": "100%",
  6596. },
  6597. })
  6598. _box.appendChild(_loading)
  6599. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6600. switch (str) {
  6601. case "whiteboard":
  6602. aTool = 1;
  6603. _iframe = $$("iframe", {
  6604. "frameborder": "no",
  6605. "border": "0",
  6606. "scrolling ": "no",
  6607. "style": {
  6608. "cssText": "border:0;width:100%;height:100%"
  6609. },
  6610. "src": "https://beta.iwb.cocorobo.cn/"
  6611. })
  6612. _box.appendChild(_iframe);
  6613. _box.appendChild(_jie);
  6614. _formdiv = new U.UF.UI.form(
  6615. "电子白板",
  6616. _box, {
  6617. "id": "whiteboard" + cid + stage + task + tool,
  6618. "style": {
  6619. "width": "90%",
  6620. "height": "90%",
  6621. "overflow": 'hidden'
  6622. },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, {
  6627. "style": {
  6628. "height": "36px"
  6629. }
  6630. }).form; //创建窗体
  6631. _taskbar = {
  6632. "id": str + _formdiv.id,
  6633. "style": {
  6634. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6635. },
  6636. "name": "电子白板",
  6637. "forms": _formdiv,
  6638. "click": function () {
  6639. U.MD.D.I.openApplication(str, obj, info);
  6640. }
  6641. }
  6642. break;
  6643. case "mind":
  6644. aTool = 3;
  6645. _iframe = $$("iframe", {
  6646. "frameborder": "no",
  6647. "border": "0",
  6648. "scrolling ": "no",
  6649. "style": {
  6650. "cssText": "border:0;width:100%;height:100%"
  6651. },
  6652. "src": "/kityminder-editor/dist/index.html"
  6653. })
  6654. _box.appendChild(_iframe);
  6655. _box.appendChild(_jie);
  6656. _formdiv = new U.UF.UI.form(
  6657. "思维导图",
  6658. _box, { //"/jsmind/example/demo.html"
  6659. "id": "mind" + cid + stage + task + tool,
  6660. "style": {
  6661. "width": "90%",
  6662. "height": "90%",
  6663. "overflow": 'hidden'
  6664. },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, {
  6669. "style": {
  6670. "height": "36px"
  6671. }
  6672. }).form; //创建窗体
  6673. _taskbar = {
  6674. "id": str + _formdiv.id,
  6675. "style": {
  6676. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6677. },
  6678. "name": "思维导图",
  6679. "forms": _formdiv,
  6680. "click": function () {
  6681. U.MD.D.I.openApplication(str, obj, info);
  6682. }
  6683. }
  6684. break;
  6685. case "MindMap":
  6686. aTool = 3;
  6687. _iframe = $$("iframe", {
  6688. "frameborder": "no",
  6689. "border": "0",
  6690. "scrolling ": "no",
  6691. "style": {
  6692. "cssText": "border:0;width:100%;height:100%"
  6693. },
  6694. "src": "//cloud.cocorobo.cn/mind/"
  6695. })
  6696. _box.appendChild(_iframe);
  6697. _box.appendChild(_jie);
  6698. _formdiv = new U.UF.UI.form(
  6699. "思维导图",
  6700. _box, { //"/jsmind/example/demo.html"
  6701. "id": "mind" + cid + stage + task + tool,
  6702. "style": {
  6703. "width": "90%",
  6704. "height": "90%",
  6705. "overflow": 'hidden'
  6706. },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, {
  6711. "style": {
  6712. "height": "36px"
  6713. }
  6714. }).form; //创建窗体
  6715. _taskbar = {
  6716. "id": str + _formdiv.id,
  6717. "style": {
  6718. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6719. },
  6720. "name": "思维导图",
  6721. "forms": _formdiv,
  6722. "click": function () {
  6723. U.MD.D.I.openApplication(str, obj, info);
  6724. }
  6725. }
  6726. break;
  6727. case "doc":
  6728. aTool = 6;
  6729. _iframe = $$("iframe", {
  6730. "frameborder": "no",
  6731. "border": "0",
  6732. "scrolling ": "no",
  6733. "style": {
  6734. "cssText": "border:0;width:100%;height:100%"
  6735. },
  6736. "src": "/Office/Word/WordEditArea.htm"
  6737. })
  6738. _box.appendChild(_iframe);
  6739. _box.appendChild(_jie);
  6740. _formdiv = new U.UF.UI.form(
  6741. "协同文档",
  6742. _box, {
  6743. "id": "doc" + cid + stage + task + tool,
  6744. "style": {
  6745. "width": "90%",
  6746. "height": "90%",
  6747. "overflow": 'hidden'
  6748. },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, {
  6753. "style": {
  6754. "height": "36px"
  6755. }
  6756. }).form; //创建窗体
  6757. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6758. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6759. })
  6760. _taskbar = {
  6761. "id": str + _formdiv.id,
  6762. "style": {
  6763. "backgroundImage": "url(/img/icon/doc.png)"
  6764. },
  6765. "name": "协同文档",
  6766. "forms": _formdiv,
  6767. "click": function () {
  6768. U.MD.D.I.openApplication(str, obj, info);
  6769. }
  6770. }
  6771. break;
  6772. case "mindNetwork": //好友打开
  6773. aTool = 7;
  6774. _iframe = $$("iframe", {
  6775. "webkitallowfullscreen": "",
  6776. "mozallowfullscreen": "",
  6777. "allowfullscreen": "",
  6778. "frameborder": "no",
  6779. "border": "0",
  6780. "scrolling ": "no",
  6781. "style": {
  6782. "cssText": "border:0; width:100%; height:100%;"
  6783. },
  6784. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6785. })
  6786. _box.appendChild(_iframe);
  6787. _box.appendChild(_jie);
  6788. _formdiv = new U.UF.UI.form(
  6789. "思维网格",
  6790. _box, {
  6791. "id": "mindNetwork" + cid + stage + task + tool,
  6792. "style": {
  6793. "width": "90%",
  6794. "height": "90%",
  6795. "overflow": 'hidden'
  6796. },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, {
  6801. "style": {
  6802. "height": "36px"
  6803. }
  6804. }).form; //创建窗体
  6805. _taskbar = {
  6806. "id": str + _formdiv.id,
  6807. "style": {
  6808. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6809. },
  6810. "name": "思维网格",
  6811. "forms": _formdiv,
  6812. "click": function () {
  6813. U.MD.D.I.openApplication(str, obj, info);
  6814. }
  6815. }
  6816. break;
  6817. case "courseDesign":
  6818. _iframe = $$("iframe", {
  6819. "webkitallowfullscreen": "",
  6820. "mozallowfullscreen": "",
  6821. "allowfullscreen": "",
  6822. "frameborder": "no",
  6823. "border": "0",
  6824. "scrolling ": "no",
  6825. "style": {
  6826. "cssText": "border:0; width:100%; height:100%;"
  6827. },
  6828. "src": "/course-design-vue"
  6829. })
  6830. _box.appendChild(_iframe);
  6831. _box.appendChild(_jie);
  6832. _formdiv = new U.UF.UI.form(
  6833. "项目设计",
  6834. _box, {
  6835. "id": "courseDesign" + cid + stage + task + tool,
  6836. "style": {
  6837. "width": "90%",
  6838. "height": "90%",
  6839. "overflow": 'hidden'
  6840. },
  6841. "onresize": function () { }
  6842. }, {
  6843. closecallback: function () { }
  6844. }, {
  6845. "style": {
  6846. "height": "36px"
  6847. }
  6848. }).form; //创建窗体
  6849. _taskbar = {
  6850. "id": str + _formdiv.id,
  6851. "style": {
  6852. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6853. },
  6854. "name": "项目设计",
  6855. "forms": _formdiv,
  6856. "click": function () {
  6857. U.MD.D.I.openApplication(str, obj, info);
  6858. }
  6859. }
  6860. break;
  6861. }
  6862. const script1 = document.createElement("script");
  6863. script1.type = "text/javascript";
  6864. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6865. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6866. const script2 = document.createElement("script");
  6867. script2.type = "text/javascript";
  6868. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6869. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6870. const script3 = document.createElement("script");
  6871. script3.type = "text/javascript";
  6872. script3.charset = "UTF-8";
  6873. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6874. const script4 = document.createElement("script");
  6875. script4.type = "text/javascript";
  6876. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6877. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6878. if (_iframe) {
  6879. if (str == 'doc') {
  6880. _iframe = _formdiv.querySelector('iframe')
  6881. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6882. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6883. _iframe.contentWindow.document.body.appendChild(script1);
  6884. _iframe.contentWindow.document.body.appendChild(script2);
  6885. // _iframe.contentWindow.document.body.appendChild(script3);
  6886. _iframe.contentWindow.document.body.appendChild(script4);
  6887. })
  6888. if (onloadListener) {
  6889. _iframe.contentDocument.location.reload()
  6890. } else {
  6891. _iframe.contentDocument.location.reload()
  6892. }
  6893. } else if (str == 'courseDesign') {
  6894. U.UF.DL.iframeLoad(_iframe, function () {
  6895. // _iframe.contentWindow.U.MD.O.W.load();
  6896. // _iframe.contentWindow.document.body.appendChild(script1);
  6897. _iframe.contentWindow.document.body.appendChild(script2);
  6898. _iframe.contentWindow.document.body.appendChild(script4);
  6899. })
  6900. } else if (str == 'mind') {
  6901. _iframe = _formdiv.querySelector('iframe')
  6902. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6903. //
  6904. _iframe.contentWindow.document.body.appendChild(script1);
  6905. _iframe.contentWindow.document.body.appendChild(script2);
  6906. _iframe.contentWindow.document.body.appendChild(script4);
  6907. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6908. })
  6909. if (onloadListener) {
  6910. _iframe.contentDocument.location.reload()
  6911. } else {
  6912. _iframe.contentDocument.location.reload()
  6913. }
  6914. } else if (str == 'whiteboard') {
  6915. _iframe = _formdiv.querySelector('iframe')
  6916. let onloadListener = _iframe.onload = () => {
  6917. _iframe.contentWindow.document.body.appendChild(script1);
  6918. _iframe.contentWindow.document.body.appendChild(script2);
  6919. _iframe.contentWindow.document.body.appendChild(script4);
  6920. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6921. };
  6922. // if (onloadListener) {
  6923. // try {
  6924. // _iframe.src += "?cocorobo="+new Date().getTime()
  6925. // _iframe.contentWindow.document.location.reload()
  6926. // } catch (error) {
  6927. // }
  6928. // } else {
  6929. // _iframe.contentDocument.location.reload()
  6930. // }
  6931. } else {
  6932. _iframe.onload = () => {
  6933. _iframe.contentWindow.document.body.appendChild(script1);
  6934. _iframe.contentWindow.document.body.appendChild(script2);
  6935. // _iframe.contentWindow.document.body.appendChild(script3);
  6936. _iframe.contentWindow.document.body.appendChild(script4);
  6937. };
  6938. }
  6939. _jie.onclick = async () => {
  6940. let text = ''
  6941. if (aTool == 1) {
  6942. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6943. } else if (aTool == 6) {
  6944. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6945. } else if (aTool == 3) {
  6946. text = await U.MD.D.I.getEditorContent(_iframe);
  6947. }
  6948. _loading.style.display = 'flex'
  6949. console.log(_loading);
  6950. var _ajs = _iframe.contentWindow.document.createElement("script");
  6951. _ajs.type = "text/javascript";
  6952. _ajs.innerHTML =
  6953. // 'console.log(' + _loading + ');\n' +
  6954. 'var _js = document.createElement("script");\n' +
  6955. '_js.type="text/javascript";\n' +
  6956. '_js.charset="UTF-8";\n' +
  6957. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6958. "_js.onload = function(){\n" +
  6959. ' var a = document.getElementsByTagName("img")\n' +
  6960. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6961. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6962. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6963. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6964. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6965. "beforeUpload_shishi(file," +
  6966. "'" +
  6967. _userid +
  6968. "'" +
  6969. ", " +
  6970. "'" +
  6971. _cid +
  6972. "'" +
  6973. ", " +
  6974. "'" +
  6975. _stage +
  6976. "'" +
  6977. ", " +
  6978. "'" +
  6979. _task +
  6980. "'" +
  6981. ", " +
  6982. "'" +
  6983. _tool +
  6984. "'" +
  6985. ", " +
  6986. "'" +
  6987. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6988. "'" +
  6989. ", " +
  6990. "'" +
  6991. aTool +
  6992. "'" +
  6993. ", " +
  6994. "`" +
  6995. text +
  6996. "`" +
  6997. ")\n" +
  6998. " });\n" +
  6999. "}\n" +
  7000. "document.head.appendChild(_js);\n";
  7001. _iframe.contentWindow.document.head.appendChild(_ajs);
  7002. }
  7003. }
  7004. //U.MD.D.I.openClick(str);
  7005. //如果有任务栏信息
  7006. // if (_taskbar) {
  7007. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7008. // }
  7009. }
  7010. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7011. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7012. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7013. _userinfo = US.userInfo, //登录用户信息
  7014. _userid = US.userInfo.userid //登录用户id
  7015. let _iframe;
  7016. let _cid = cid,
  7017. _stage = stage,
  7018. _task = task,
  7019. _tool = tool;
  7020. var _jie = $$("div", {
  7021. "style": {
  7022. "position": "absolute",
  7023. "bottom": "50px",
  7024. "right": "50px",
  7025. "zIndex": "9999",
  7026. "backgroundColor": "#2268bc",
  7027. "color": "#fff",
  7028. "padding": "12px 20px",
  7029. "cursor": "pointer",
  7030. "borderRadius": "4px",
  7031. },
  7032. "innerHTML": "提交作业"
  7033. })
  7034. let aTool = ''
  7035. let _loading = document.createElement('div')
  7036. _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;"
  7037. // _loading.id = "";
  7038. let _lchild = document.createElement('div')
  7039. let _limg = document.createElement('img')
  7040. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7041. _limg.style = "width: 26px;margin-right: 10px;"
  7042. _lchild.appendChild(_limg)
  7043. let _lspan = document.createElement('span')
  7044. _lspan.innerHTML = "上传中..."
  7045. _lchild.appendChild(_lspan)
  7046. _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%);"
  7047. _loading.appendChild(_lchild)
  7048. let _box = $$('div', {
  7049. "style": {
  7050. "position": "relative",
  7051. "width": "100%",
  7052. "height": "100%",
  7053. },
  7054. })
  7055. _box.appendChild(_loading)
  7056. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7057. switch (str) {
  7058. case "whiteboard":
  7059. aTool = 1;
  7060. _iframe = $$("iframe", {
  7061. "frameborder": "no",
  7062. "border": "0",
  7063. "scrolling ": "no",
  7064. "style": {
  7065. "cssText": "border:0;width:100%;height:100%"
  7066. },
  7067. "src": "https://beta.iwb.cocorobo.cn/"
  7068. })
  7069. _box.appendChild(_iframe);
  7070. _box.appendChild(_jie);
  7071. _formdiv = new U.UF.UI.form(
  7072. "电子白板",
  7073. _box, {
  7074. "id": "whiteboard" + cid + stage + task + tool,
  7075. "style": {
  7076. "width": "90%",
  7077. "height": "90%",
  7078. "overflow": 'hidden'
  7079. },
  7080. "onresize": function () { }
  7081. }, {
  7082. closecallback: function () { }
  7083. }, {
  7084. "style": {
  7085. "height": "36px"
  7086. }
  7087. }).form; //创建窗体
  7088. _taskbar = {
  7089. "id": str + _formdiv.id,
  7090. "style": {
  7091. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7092. },
  7093. "name": "电子白板",
  7094. "forms": _formdiv,
  7095. "click": function () {
  7096. U.MD.D.I.openApplication(str, obj, info);
  7097. }
  7098. }
  7099. break;
  7100. case "mind":
  7101. aTool = 3;
  7102. _iframe = $$("iframe", {
  7103. "frameborder": "no",
  7104. "border": "0",
  7105. "scrolling ": "no",
  7106. "style": {
  7107. "cssText": "border:0;width:100%;height:100%"
  7108. },
  7109. "src": "/kityminder-editor/dist/index.html"
  7110. })
  7111. _box.appendChild(_iframe);
  7112. _box.appendChild(_jie);
  7113. _formdiv = new U.UF.UI.form(
  7114. "思维导图",
  7115. _box, { //"/jsmind/example/demo.html"
  7116. "id": "mind" + cid + stage + task + tool,
  7117. "style": {
  7118. "width": "90%",
  7119. "height": "90%",
  7120. "overflow": 'hidden'
  7121. },
  7122. "onresize": function () { }
  7123. }, {
  7124. closecallback: function () { }
  7125. }, {
  7126. "style": {
  7127. "height": "36px"
  7128. }
  7129. }).form; //创建窗体
  7130. _taskbar = {
  7131. "id": str + _formdiv.id,
  7132. "style": {
  7133. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7134. },
  7135. "name": "思维导图",
  7136. "forms": _formdiv,
  7137. "click": function () {
  7138. U.MD.D.I.openApplication(str, obj, info);
  7139. }
  7140. }
  7141. break;
  7142. case "MindMap":
  7143. aTool = 3;
  7144. _iframe = $$("iframe", {
  7145. "frameborder": "no",
  7146. "border": "0",
  7147. "scrolling ": "no",
  7148. "style": {
  7149. "cssText": "border:0;width:100%;height:100%"
  7150. },
  7151. "src": "//cloud.cocorobo.cn/mind/"
  7152. })
  7153. _box.appendChild(_iframe);
  7154. _box.appendChild(_jie);
  7155. _formdiv = new U.UF.UI.form(
  7156. "思维导图",
  7157. _box, { //"/jsmind/example/demo.html"
  7158. "id": "mind" + cid + stage + task + tool,
  7159. "style": {
  7160. "width": "90%",
  7161. "height": "90%",
  7162. "overflow": 'hidden'
  7163. },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, {
  7168. "style": {
  7169. "height": "36px"
  7170. }
  7171. }).form; //创建窗体
  7172. _taskbar = {
  7173. "id": str + _formdiv.id,
  7174. "style": {
  7175. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7176. },
  7177. "name": "思维导图",
  7178. "forms": _formdiv,
  7179. "click": function () {
  7180. U.MD.D.I.openApplication(str, obj, info);
  7181. }
  7182. }
  7183. break;
  7184. case "doc":
  7185. aTool = 6;
  7186. _iframe = $$("iframe", {
  7187. "frameborder": "no",
  7188. "border": "0",
  7189. "scrolling ": "no",
  7190. "style": {
  7191. "cssText": "border:0;width:100%;height:100%"
  7192. },
  7193. "src": "/Office/Word/WordEditArea.htm"
  7194. })
  7195. _box.appendChild(_iframe);
  7196. _box.appendChild(_jie);
  7197. _formdiv = new U.UF.UI.form(
  7198. "协同文档",
  7199. _box, {
  7200. "id": "doc" + cid + stage + task + tool,
  7201. "style": {
  7202. "width": "90%",
  7203. "height": "90%",
  7204. "overflow": 'hidden'
  7205. },
  7206. "onresize": function () { }
  7207. }, {
  7208. closecallback: function () { }
  7209. }, {
  7210. "style": {
  7211. "height": "36px"
  7212. }
  7213. }).form; //创建窗体
  7214. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7215. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7216. })
  7217. _taskbar = {
  7218. "id": str + _formdiv.id,
  7219. "style": {
  7220. "backgroundImage": "url(/img/icon/doc.png)"
  7221. },
  7222. "name": "协同文档",
  7223. "forms": _formdiv,
  7224. "click": function () {
  7225. U.MD.D.I.openApplication(str, obj, info);
  7226. }
  7227. }
  7228. break;
  7229. case "mindNetwork": //好友打开
  7230. aTool = 7;
  7231. _iframe = $$("iframe", {
  7232. "webkitallowfullscreen": "",
  7233. "mozallowfullscreen": "",
  7234. "allowfullscreen": "",
  7235. "frameborder": "no",
  7236. "border": "0",
  7237. "scrolling ": "no",
  7238. "style": {
  7239. "cssText": "border:0; width:100%; height:100%;"
  7240. },
  7241. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7242. })
  7243. _box.appendChild(_iframe);
  7244. _box.appendChild(_jie);
  7245. _formdiv = new U.UF.UI.form(
  7246. "思维网格",
  7247. _box, {
  7248. "id": "mindNetwork" + cid + stage + task + tool,
  7249. "style": {
  7250. "width": "90%",
  7251. "height": "90%",
  7252. "overflow": 'hidden'
  7253. },
  7254. "onresize": function () { }
  7255. }, {
  7256. closecallback: function () { }
  7257. }, {
  7258. "style": {
  7259. "height": "36px"
  7260. }
  7261. }).form; //创建窗体
  7262. _taskbar = {
  7263. "id": str + _formdiv.id,
  7264. "style": {
  7265. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7266. },
  7267. "name": "思维网格",
  7268. "forms": _formdiv,
  7269. "click": function () {
  7270. U.MD.D.I.openApplication(str, obj, info);
  7271. }
  7272. }
  7273. break;
  7274. case "courseDesign":
  7275. _iframe = $$("iframe", {
  7276. "webkitallowfullscreen": "",
  7277. "mozallowfullscreen": "",
  7278. "allowfullscreen": "",
  7279. "frameborder": "no",
  7280. "border": "0",
  7281. "scrolling ": "no",
  7282. "style": {
  7283. "cssText": "border:0; width:100%; height:100%;"
  7284. },
  7285. "src": "/course-design-vue"
  7286. })
  7287. _box.appendChild(_iframe);
  7288. _box.appendChild(_jie);
  7289. _formdiv = new U.UF.UI.form(
  7290. "项目设计",
  7291. _box, {
  7292. "id": "courseDesign" + cid + stage + task + tool,
  7293. "style": {
  7294. "width": "90%",
  7295. "height": "90%",
  7296. "overflow": 'hidden'
  7297. },
  7298. "onresize": function () { }
  7299. }, {
  7300. closecallback: function () { }
  7301. }, {
  7302. "style": {
  7303. "height": "36px"
  7304. }
  7305. }).form; //创建窗体
  7306. _taskbar = {
  7307. "id": str + _formdiv.id,
  7308. "style": {
  7309. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7310. },
  7311. "name": "项目设计",
  7312. "forms": _formdiv,
  7313. "click": function () {
  7314. U.MD.D.I.openApplication(str, obj, info);
  7315. }
  7316. }
  7317. break;
  7318. }
  7319. const script1 = document.createElement("script");
  7320. script1.type = "text/javascript";
  7321. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7322. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7323. const script2 = document.createElement("script");
  7324. script2.type = "text/javascript";
  7325. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7326. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7327. const script3 = document.createElement("script");
  7328. script3.type = "text/javascript";
  7329. script3.charset = "UTF-8";
  7330. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7331. const script4 = document.createElement("script");
  7332. script4.type = "text/javascript";
  7333. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7334. script4.src = window.origin + "/js/Common/jietu2E.js";
  7335. if (_iframe) {
  7336. if (str == 'doc') {
  7337. _iframe = _formdiv.querySelector('iframe')
  7338. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7339. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7340. _iframe.contentWindow.document.body.appendChild(script1);
  7341. _iframe.contentWindow.document.body.appendChild(script2);
  7342. // _iframe.contentWindow.document.body.appendChild(script3);
  7343. _iframe.contentWindow.document.body.appendChild(script4);
  7344. })
  7345. if (onloadListener) {
  7346. _iframe.contentDocument.location.reload()
  7347. } else {
  7348. _iframe.contentDocument.location.reload()
  7349. }
  7350. } else if (str == 'courseDesign') {
  7351. U.UF.DL.iframeLoad(_iframe, function () {
  7352. // _iframe.contentWindow.U.MD.O.W.load();
  7353. // _iframe.contentWindow.document.body.appendChild(script1);
  7354. _iframe.contentWindow.document.body.appendChild(script2);
  7355. _iframe.contentWindow.document.body.appendChild(script4);
  7356. })
  7357. } else if (str == 'mind') {
  7358. _iframe = _formdiv.querySelector('iframe')
  7359. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7360. //
  7361. _iframe.contentWindow.document.body.appendChild(script1);
  7362. _iframe.contentWindow.document.body.appendChild(script2);
  7363. _iframe.contentWindow.document.body.appendChild(script4);
  7364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7365. })
  7366. if (onloadListener) {
  7367. _iframe.contentDocument.location.reload()
  7368. } else {
  7369. _iframe.contentDocument.location.reload()
  7370. }
  7371. } else if (str == 'whiteboard') {
  7372. _iframe = _formdiv.querySelector('iframe')
  7373. let onloadListener = _iframe.onload = () => {
  7374. _iframe.contentWindow.document.body.appendChild(script1);
  7375. _iframe.contentWindow.document.body.appendChild(script2);
  7376. _iframe.contentWindow.document.body.appendChild(script4);
  7377. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7378. };
  7379. // if (onloadListener) {
  7380. // try {
  7381. // _iframe.src += "?cocorobo="+new Date().getTime()
  7382. // _iframe.contentWindow.document.location.reload()
  7383. // } catch (error) {
  7384. // }
  7385. // } else {
  7386. // _iframe.contentDocument.location.reload()
  7387. // }
  7388. } else {
  7389. _iframe.onload = () => {
  7390. _iframe.contentWindow.document.body.appendChild(script1);
  7391. _iframe.contentWindow.document.body.appendChild(script2);
  7392. // _iframe.contentWindow.document.body.appendChild(script3);
  7393. _iframe.contentWindow.document.body.appendChild(script4);
  7394. };
  7395. }
  7396. _jie.onclick = async () => {
  7397. let text = ''
  7398. if (aTool == 1) {
  7399. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7400. } else if (aTool == 6) {
  7401. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7402. } else if (aTool == 3) {
  7403. text = await U.MD.D.I.getEditorContent(_iframe);
  7404. }
  7405. _loading.style.display = 'flex'
  7406. console.log(_loading);
  7407. var _ajs = _iframe.contentWindow.document.createElement("script");
  7408. _ajs.type = "text/javascript";
  7409. _ajs.innerHTML =
  7410. // 'console.log(' + _loading + ');\n' +
  7411. 'var _js = document.createElement("script");\n' +
  7412. '_js.type="text/javascript";\n' +
  7413. '_js.charset="UTF-8";\n' +
  7414. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7415. "_js.onload = function(){\n" +
  7416. ' var a = document.getElementsByTagName("img")\n' +
  7417. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7418. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7419. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7420. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7421. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7422. "beforeUpload_shishi(file," +
  7423. "'" +
  7424. _userid +
  7425. "'" +
  7426. ", " +
  7427. "'" +
  7428. _cid +
  7429. "'" +
  7430. ", " +
  7431. "'" +
  7432. _stage +
  7433. "'" +
  7434. ", " +
  7435. "'" +
  7436. _task +
  7437. "'" +
  7438. ", " +
  7439. "'" +
  7440. _tool +
  7441. "'" +
  7442. ", " +
  7443. "'" +
  7444. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7445. "'" +
  7446. ", " +
  7447. "'" +
  7448. aTool +
  7449. "'" +
  7450. ", " +
  7451. "`" +
  7452. text +
  7453. "`" +
  7454. ")\n" +
  7455. " });\n" +
  7456. "}\n" +
  7457. "document.head.appendChild(_js);\n";
  7458. _iframe.contentWindow.document.head.appendChild(_ajs);
  7459. }
  7460. }
  7461. //U.MD.D.I.openClick(str);
  7462. //如果有任务栏信息
  7463. // if (_taskbar) {
  7464. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7465. // }
  7466. }
  7467. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7468. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7469. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7470. _userid = student.userid, //登录用户id
  7471. _username = student.student //用户名字
  7472. let _iframe;
  7473. let _cid = cid,
  7474. _stage = stage,
  7475. _task = task,
  7476. _tool = tool;
  7477. var _jie = $$("div", {
  7478. "style": {
  7479. "position": "absolute",
  7480. "bottom": "50px",
  7481. "right": "50px",
  7482. "zIndex": "9999",
  7483. "backgroundColor": "#2268bc",
  7484. "color": "#fff",
  7485. "padding": "12px 20px",
  7486. "cursor": "pointer",
  7487. "borderRadius": "4px",
  7488. },
  7489. "innerHTML": "提交作业"
  7490. })
  7491. let aTool = ''
  7492. let _loading = document.createElement('div')
  7493. _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;"
  7494. // _loading.id = "";
  7495. let _lchild = document.createElement('div')
  7496. let _limg = document.createElement('img')
  7497. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7498. _limg.style = "width: 26px;margin-right: 10px;"
  7499. _lchild.appendChild(_limg)
  7500. let _lspan = document.createElement('span')
  7501. _lspan.innerHTML = "上传中..."
  7502. _lchild.appendChild(_lspan)
  7503. _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%);"
  7504. _loading.appendChild(_lchild)
  7505. var _box = $$('div', {
  7506. "style": {
  7507. "position": "relative",
  7508. "width": "100%",
  7509. "height": "100%",
  7510. },
  7511. })
  7512. _box.appendChild(_loading)
  7513. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7514. switch (str) {
  7515. case "whiteboard":
  7516. aTool = 1;
  7517. _iframe = $$("iframe", {
  7518. "frameborder": "no",
  7519. "border": "0",
  7520. "scrolling ": "no",
  7521. "style": {
  7522. "cssText": "border:0;width:100%;height:100%"
  7523. },
  7524. "src": "https://beta.iwb.cocorobo.cn/"
  7525. })
  7526. _box.appendChild(_iframe);
  7527. _box.appendChild(_jie);
  7528. _formdiv = new U.UF.UI.form(
  7529. "电子白板-" + _username,
  7530. _box, {
  7531. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7532. "style": {
  7533. "width": "90%",
  7534. "height": "90%",
  7535. "overflow": 'hidden'
  7536. },
  7537. "onresize": function () { }
  7538. }, {
  7539. closecallback: function () { }
  7540. }, {
  7541. "style": {
  7542. "height": "36px"
  7543. }
  7544. }).form; //创建窗体
  7545. _taskbar = {
  7546. "id": str + _formdiv.id,
  7547. "style": {
  7548. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7549. },
  7550. "name": "电子白板",
  7551. "forms": _formdiv,
  7552. "click": function () {
  7553. U.MD.D.I.openApplication(str, obj, info);
  7554. }
  7555. }
  7556. break;
  7557. case "mind":
  7558. aTool = 3;
  7559. _iframe = $$("iframe", {
  7560. "frameborder": "no",
  7561. "border": "0",
  7562. "scrolling ": "no",
  7563. "style": {
  7564. "cssText": "border:0;width:100%;height:100%"
  7565. },
  7566. "src": "/kityminder-editor/dist/index.html"
  7567. })
  7568. _box.appendChild(_iframe);
  7569. _box.appendChild(_jie);
  7570. _formdiv = new U.UF.UI.form(
  7571. "思维导图-" + _username,
  7572. _box, { //"/jsmind/example/demo.html"
  7573. "id": "mind" + cid + stage + task + tool + _userid,
  7574. "style": {
  7575. "width": "90%",
  7576. "height": "90%",
  7577. "overflow": 'hidden'
  7578. },
  7579. "onresize": function () { }
  7580. }, {
  7581. closecallback: function () { }
  7582. }, {
  7583. "style": {
  7584. "height": "36px"
  7585. }
  7586. }).form; //创建窗体
  7587. _taskbar = {
  7588. "id": str + _formdiv.id,
  7589. "style": {
  7590. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7591. },
  7592. "name": "思维导图",
  7593. "forms": _formdiv,
  7594. "click": function () {
  7595. U.MD.D.I.openApplication(str, obj, info);
  7596. }
  7597. }
  7598. break;
  7599. case "MindMap":
  7600. aTool = 3;
  7601. _iframe = $$("iframe", {
  7602. "frameborder": "no",
  7603. "border": "0",
  7604. "scrolling ": "no",
  7605. "style": {
  7606. "cssText": "border:0;width:100%;height:100%"
  7607. },
  7608. "src": "//cloud.cocorobo.cn/mind/"
  7609. })
  7610. _box.appendChild(_iframe);
  7611. _box.appendChild(_jie);
  7612. _formdiv = new U.UF.UI.form(
  7613. "思维导图-" + _username,
  7614. _box, { //"/jsmind/example/demo.html"
  7615. "id": "mind" + cid + stage + task + tool + _userid,
  7616. "style": {
  7617. "width": "90%",
  7618. "height": "90%",
  7619. "overflow": 'hidden'
  7620. },
  7621. "onresize": function () { }
  7622. }, {
  7623. closecallback: function () { }
  7624. }, {
  7625. "style": {
  7626. "height": "36px"
  7627. }
  7628. }).form; //创建窗体
  7629. _taskbar = {
  7630. "id": str + _formdiv.id,
  7631. "style": {
  7632. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7633. },
  7634. "name": "思维导图",
  7635. "forms": _formdiv,
  7636. "click": function () {
  7637. U.MD.D.I.openApplication(str, obj, info);
  7638. }
  7639. }
  7640. break;
  7641. case "doc":
  7642. aTool = 6;
  7643. _iframe = $$("iframe", {
  7644. "frameborder": "no",
  7645. "border": "0",
  7646. "scrolling ": "no",
  7647. "style": {
  7648. "cssText": "border:0;width:100%;height:100%"
  7649. },
  7650. "src": "/Office/Word/WordEditArea.htm"
  7651. })
  7652. _box.appendChild(_iframe);
  7653. _box.appendChild(_jie);
  7654. _formdiv = new U.UF.UI.form(
  7655. "协同文档-" + _username,
  7656. _box, {
  7657. "id": "doc" + cid + stage + task + tool + _userid,
  7658. "style": {
  7659. "width": "90%",
  7660. "height": "90%",
  7661. "overflow": 'hidden'
  7662. },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, {
  7667. "style": {
  7668. "height": "36px"
  7669. }
  7670. }).form; //创建窗体
  7671. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7672. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7673. })
  7674. _taskbar = {
  7675. "id": str + _formdiv.id,
  7676. "style": {
  7677. "backgroundImage": "url(/img/icon/doc.png)"
  7678. },
  7679. "name": "协同文档",
  7680. "forms": _formdiv,
  7681. "click": function () {
  7682. U.MD.D.I.openApplication(str, obj, info);
  7683. }
  7684. }
  7685. break;
  7686. case "mindNetwork": //好友打开
  7687. aTool = 7;
  7688. _iframe = $$("iframe", {
  7689. "webkitallowfullscreen": "",
  7690. "mozallowfullscreen": "",
  7691. "allowfullscreen": "",
  7692. "frameborder": "no",
  7693. "border": "0",
  7694. "scrolling ": "no",
  7695. "style": {
  7696. "cssText": "border:0; width:100%; height:100%;"
  7697. },
  7698. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7699. })
  7700. _box.appendChild(_iframe);
  7701. _box.appendChild(_jie);
  7702. _formdiv = new U.UF.UI.form(
  7703. "思维网格-" + _username,
  7704. _box, {
  7705. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7706. "style": {
  7707. "width": "90%",
  7708. "height": "90%",
  7709. "overflow": 'hidden'
  7710. },
  7711. "onresize": function () { }
  7712. }, {
  7713. closecallback: function () { }
  7714. }, {
  7715. "style": {
  7716. "height": "36px"
  7717. }
  7718. }).form; //创建窗体
  7719. _taskbar = {
  7720. "id": str + _formdiv.id,
  7721. "style": {
  7722. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7723. },
  7724. "name": "思维网格",
  7725. "forms": _formdiv,
  7726. "click": function () {
  7727. U.MD.D.I.openApplication(str, obj, info);
  7728. }
  7729. }
  7730. break;
  7731. case "courseDesign":
  7732. _iframe = $$("iframe", {
  7733. "webkitallowfullscreen": "",
  7734. "mozallowfullscreen": "",
  7735. "allowfullscreen": "",
  7736. "frameborder": "no",
  7737. "border": "0",
  7738. "scrolling ": "no",
  7739. "style": {
  7740. "cssText": "border:0; width:100%; height:100%;"
  7741. },
  7742. "src": "/course-design-vue"
  7743. })
  7744. _box.appendChild(_iframe);
  7745. _box.appendChild(_jie);
  7746. _formdiv = new U.UF.UI.form(
  7747. "项目设计-" + _username,
  7748. _box, {
  7749. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7750. "style": {
  7751. "width": "90%",
  7752. "height": "90%",
  7753. "overflow": 'hidden'
  7754. },
  7755. "onresize": function () { }
  7756. }, {
  7757. closecallback: function () { }
  7758. }, {
  7759. "style": {
  7760. "height": "36px"
  7761. }
  7762. }).form; //创建窗体
  7763. _taskbar = {
  7764. "id": str + _formdiv.id,
  7765. "style": {
  7766. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7767. },
  7768. "name": "项目设计",
  7769. "forms": _formdiv,
  7770. "click": function () {
  7771. U.MD.D.I.openApplication(str, obj, info);
  7772. }
  7773. }
  7774. break;
  7775. }
  7776. const script1 = document.createElement("script");
  7777. script1.type = "text/javascript";
  7778. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7779. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7780. const script2 = document.createElement("script");
  7781. script2.type = "text/javascript";
  7782. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7783. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7784. const script3 = document.createElement("script");
  7785. script3.type = "text/javascript";
  7786. script3.charset = "UTF-8";
  7787. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7788. const script4 = document.createElement("script");
  7789. script4.type = "text/javascript";
  7790. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7791. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7792. if (_iframe) {
  7793. if (str == 'doc') {
  7794. _iframe = _formdiv.querySelector('iframe')
  7795. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7796. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7797. _iframe.contentWindow.document.body.appendChild(script1);
  7798. _iframe.contentWindow.document.body.appendChild(script2);
  7799. // _iframe.contentWindow.document.body.appendChild(script3);
  7800. _iframe.contentWindow.document.body.appendChild(script4);
  7801. })
  7802. if (onloadListener) {
  7803. _iframe.contentDocument.location.reload()
  7804. } else {
  7805. _iframe.contentDocument.location.reload()
  7806. }
  7807. } else if (str == 'courseDesign') {
  7808. U.UF.DL.iframeLoad(_iframe, function () {
  7809. // _iframe.contentWindow.U.MD.O.W.load();
  7810. // _iframe.contentWindow.document.body.appendChild(script1);
  7811. _iframe.contentWindow.document.body.appendChild(script2);
  7812. _iframe.contentWindow.document.body.appendChild(script4);
  7813. })
  7814. } else if (str == 'mind') {
  7815. _iframe = _formdiv.querySelector('iframe')
  7816. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7817. //
  7818. _iframe.contentWindow.document.body.appendChild(script1);
  7819. _iframe.contentWindow.document.body.appendChild(script2);
  7820. _iframe.contentWindow.document.body.appendChild(script4);
  7821. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7822. })
  7823. if (onloadListener) {
  7824. _iframe.contentDocument.location.reload()
  7825. } else {
  7826. _iframe.contentDocument.location.reload()
  7827. }
  7828. } else if (str == 'whiteboard') {
  7829. _iframe = _formdiv.querySelector('iframe')
  7830. let onloadListener = _iframe.onload = () => {
  7831. _iframe.contentWindow.document.body.appendChild(script1);
  7832. _iframe.contentWindow.document.body.appendChild(script2);
  7833. _iframe.contentWindow.document.body.appendChild(script4);
  7834. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7835. };
  7836. // if (onloadListener) {
  7837. // try {
  7838. // _iframe.src += "?cocorobo="+new Date().getTime()
  7839. // _iframe.contentWindow.document.location.reload()
  7840. // } catch (error) {
  7841. // }
  7842. // } else {
  7843. // _iframe.contentDocument.location.reload()
  7844. // }
  7845. } else {
  7846. _iframe.onload = () => {
  7847. _iframe.contentWindow.document.body.appendChild(script1);
  7848. _iframe.contentWindow.document.body.appendChild(script2);
  7849. // _iframe.contentWindow.document.body.appendChild(script3);
  7850. _iframe.contentWindow.document.body.appendChild(script4);
  7851. };
  7852. }
  7853. _jie.onclick = async () => {
  7854. let text = ''
  7855. if (aTool == 1) {
  7856. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7857. } else if (aTool == 6) {
  7858. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7859. } else if (aTool == 3) {
  7860. text = await U.MD.D.I.getEditorContent(_iframe);
  7861. }
  7862. _loading.style.display = 'flex'
  7863. console.log(_loading);
  7864. var _ajs = _iframe.contentWindow.document.createElement("script");
  7865. _ajs.type = "text/javascript";
  7866. _ajs.innerHTML =
  7867. // 'console.log(' + _loading + ');\n' +
  7868. 'var _js = document.createElement("script");\n' +
  7869. '_js.type="text/javascript";\n' +
  7870. '_js.charset="UTF-8";\n' +
  7871. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7872. "_js.onload = function(){\n" +
  7873. ' var a = document.getElementsByTagName("img")\n' +
  7874. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7875. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7876. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7877. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7878. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7879. "beforeUpload_shishi(file," +
  7880. "'" +
  7881. _userid +
  7882. "'" +
  7883. ", " +
  7884. "'" +
  7885. _cid +
  7886. "'" +
  7887. ", " +
  7888. "'" +
  7889. _stage +
  7890. "'" +
  7891. ", " +
  7892. "'" +
  7893. _task +
  7894. "'" +
  7895. ", " +
  7896. "'" +
  7897. _tool +
  7898. "'" +
  7899. ", " +
  7900. "'" +
  7901. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7902. "'" +
  7903. ", " +
  7904. "'" +
  7905. aTool +
  7906. "'" +
  7907. ", " +
  7908. "`" +
  7909. text +
  7910. "`" +
  7911. ")\n" +
  7912. " });\n" +
  7913. "}\n" +
  7914. "document.head.appendChild(_js);\n";
  7915. _iframe.contentWindow.document.head.appendChild(_ajs);
  7916. }
  7917. }
  7918. }
  7919. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7920. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7921. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7922. _userid = student.userid, //登录用户id
  7923. _username = student.student //用户名字
  7924. let _iframe;
  7925. let _cid = cid,
  7926. _stage = stage,
  7927. _task = task,
  7928. _tool = tool;
  7929. var _jie = $$("div", {
  7930. "style": {
  7931. "position": "absolute",
  7932. "bottom": "50px",
  7933. "right": "50px",
  7934. "zIndex": "9999",
  7935. "backgroundColor": "#2268bc",
  7936. "color": "#fff",
  7937. "padding": "12px 20px",
  7938. "cursor": "pointer",
  7939. "borderRadius": "4px",
  7940. },
  7941. "innerHTML": "提交作业"
  7942. })
  7943. let aTool = ''
  7944. let _loading = document.createElement('div')
  7945. _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;"
  7946. // _loading.id = "";
  7947. let _lchild = document.createElement('div')
  7948. let _limg = document.createElement('img')
  7949. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7950. _limg.style = "width: 26px;margin-right: 10px;"
  7951. _lchild.appendChild(_limg)
  7952. let _lspan = document.createElement('span')
  7953. _lspan.innerHTML = "上传中..."
  7954. _lchild.appendChild(_lspan)
  7955. _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%);"
  7956. _loading.appendChild(_lchild)
  7957. var _box = $$('div', {
  7958. "style": {
  7959. "position": "relative",
  7960. "width": "100%",
  7961. "height": "100%",
  7962. },
  7963. })
  7964. _box.appendChild(_loading)
  7965. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7966. switch (str) {
  7967. case "whiteboard":
  7968. aTool = 1;
  7969. _iframe = $$("iframe", {
  7970. "frameborder": "no",
  7971. "border": "0",
  7972. "scrolling ": "no",
  7973. "style": {
  7974. "cssText": "border:0;width:100%;height:100%"
  7975. },
  7976. "src": "https://beta.iwb.cocorobo.cn/"
  7977. })
  7978. _box.appendChild(_iframe);
  7979. _box.appendChild(_jie);
  7980. _formdiv = new U.UF.UI.form(
  7981. "电子白板-" + _username,
  7982. _box, {
  7983. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7984. "style": {
  7985. "width": "90%",
  7986. "height": "90%",
  7987. "overflow": 'hidden'
  7988. },
  7989. "onresize": function () { }
  7990. }, {
  7991. closecallback: function () { }
  7992. }, {
  7993. "style": {
  7994. "height": "36px"
  7995. }
  7996. }).form; //创建窗体
  7997. _taskbar = {
  7998. "id": str + _formdiv.id,
  7999. "style": {
  8000. "backgroundImage": "url(/img/icon/whiteBoard.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 "mind":
  8010. aTool = 3;
  8011. _iframe = $$("iframe", {
  8012. "frameborder": "no",
  8013. "border": "0",
  8014. "scrolling ": "no",
  8015. "style": {
  8016. "cssText": "border:0;width:100%;height:100%"
  8017. },
  8018. "src": "/kityminder-editor/dist/index.html"
  8019. })
  8020. _box.appendChild(_iframe);
  8021. _box.appendChild(_jie);
  8022. _formdiv = new U.UF.UI.form(
  8023. "思维导图-" + _username,
  8024. _box, { //"/jsmind/example/demo.html"
  8025. "id": "mind" + cid + stage + task + tool + _userid,
  8026. "style": {
  8027. "width": "90%",
  8028. "height": "90%",
  8029. "overflow": 'hidden'
  8030. },
  8031. "onresize": function () { }
  8032. }, {
  8033. closecallback: function () { }
  8034. }, {
  8035. "style": {
  8036. "height": "36px"
  8037. }
  8038. }).form; //创建窗体
  8039. _taskbar = {
  8040. "id": str + _formdiv.id,
  8041. "style": {
  8042. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8043. },
  8044. "name": "思维导图",
  8045. "forms": _formdiv,
  8046. "click": function () {
  8047. U.MD.D.I.openApplication(str, obj, info);
  8048. }
  8049. }
  8050. break;
  8051. case "MindMap":
  8052. aTool = 3;
  8053. _iframe = $$("iframe", {
  8054. "frameborder": "no",
  8055. "border": "0",
  8056. "scrolling ": "no",
  8057. "style": {
  8058. "cssText": "border:0;width:100%;height:100%"
  8059. },
  8060. "src": "//cloud.cocorobo.cn/mind/"
  8061. })
  8062. _box.appendChild(_iframe);
  8063. _box.appendChild(_jie);
  8064. _formdiv = new U.UF.UI.form(
  8065. "思维导图-" + _username,
  8066. _box, { //"/jsmind/example/demo.html"
  8067. "id": "mind" + cid + stage + task + tool + _userid,
  8068. "style": {
  8069. "width": "90%",
  8070. "height": "90%",
  8071. "overflow": 'hidden'
  8072. },
  8073. "onresize": function () { }
  8074. }, {
  8075. closecallback: function () { }
  8076. }, {
  8077. "style": {
  8078. "height": "36px"
  8079. }
  8080. }).form; //创建窗体
  8081. _taskbar = {
  8082. "id": str + _formdiv.id,
  8083. "style": {
  8084. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8085. },
  8086. "name": "思维导图",
  8087. "forms": _formdiv,
  8088. "click": function () {
  8089. U.MD.D.I.openApplication(str, obj, info);
  8090. }
  8091. }
  8092. break;
  8093. case "doc":
  8094. aTool = 6;
  8095. _iframe = $$("iframe", {
  8096. "frameborder": "no",
  8097. "border": "0",
  8098. "scrolling ": "no",
  8099. "style": {
  8100. "cssText": "border:0;width:100%;height:100%"
  8101. },
  8102. "src": "/Office/Word/WordEditArea.htm"
  8103. })
  8104. _box.appendChild(_iframe);
  8105. _box.appendChild(_jie);
  8106. _formdiv = new U.UF.UI.form(
  8107. "协同文档-" + _username,
  8108. _box, {
  8109. "id": "doc" + cid + stage + task + tool + _userid,
  8110. "style": {
  8111. "width": "90%",
  8112. "height": "90%",
  8113. "overflow": 'hidden'
  8114. },
  8115. "onresize": function () { }
  8116. }, {
  8117. closecallback: function () { }
  8118. }, {
  8119. "style": {
  8120. "height": "36px"
  8121. }
  8122. }).form; //创建窗体
  8123. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8124. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8125. })
  8126. _taskbar = {
  8127. "id": str + _formdiv.id,
  8128. "style": {
  8129. "backgroundImage": "url(/img/icon/doc.png)"
  8130. },
  8131. "name": "协同文档",
  8132. "forms": _formdiv,
  8133. "click": function () {
  8134. U.MD.D.I.openApplication(str, obj, info);
  8135. }
  8136. }
  8137. break;
  8138. case "mindNetwork": //好友打开
  8139. aTool = 7;
  8140. _iframe = $$("iframe", {
  8141. "webkitallowfullscreen": "",
  8142. "mozallowfullscreen": "",
  8143. "allowfullscreen": "",
  8144. "frameborder": "no",
  8145. "border": "0",
  8146. "scrolling ": "no",
  8147. "style": {
  8148. "cssText": "border:0; width:100%; height:100%;"
  8149. },
  8150. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8151. })
  8152. _box.appendChild(_iframe);
  8153. _box.appendChild(_jie);
  8154. _formdiv = new U.UF.UI.form(
  8155. "思维网格-" + _username,
  8156. _box, {
  8157. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8158. "style": {
  8159. "width": "90%",
  8160. "height": "90%",
  8161. "overflow": 'hidden'
  8162. },
  8163. "onresize": function () { }
  8164. }, {
  8165. closecallback: function () { }
  8166. }, {
  8167. "style": {
  8168. "height": "36px"
  8169. }
  8170. }).form; //创建窗体
  8171. _taskbar = {
  8172. "id": str + _formdiv.id,
  8173. "style": {
  8174. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8175. },
  8176. "name": "思维网格",
  8177. "forms": _formdiv,
  8178. "click": function () {
  8179. U.MD.D.I.openApplication(str, obj, info);
  8180. }
  8181. }
  8182. break;
  8183. case "courseDesign":
  8184. _iframe = $$("iframe", {
  8185. "webkitallowfullscreen": "",
  8186. "mozallowfullscreen": "",
  8187. "allowfullscreen": "",
  8188. "frameborder": "no",
  8189. "border": "0",
  8190. "scrolling ": "no",
  8191. "style": {
  8192. "cssText": "border:0; width:100%; height:100%;"
  8193. },
  8194. "src": "/course-design-vue"
  8195. })
  8196. _box.appendChild(_iframe);
  8197. _box.appendChild(_jie);
  8198. _formdiv = new U.UF.UI.form(
  8199. "项目设计-" + _username,
  8200. _box, {
  8201. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8202. "style": {
  8203. "width": "90%",
  8204. "height": "90%",
  8205. "overflow": 'hidden'
  8206. },
  8207. "onresize": function () { }
  8208. }, {
  8209. closecallback: function () { }
  8210. }, {
  8211. "style": {
  8212. "height": "36px"
  8213. }
  8214. }).form; //创建窗体
  8215. _taskbar = {
  8216. "id": str + _formdiv.id,
  8217. "style": {
  8218. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8219. },
  8220. "name": "项目设计",
  8221. "forms": _formdiv,
  8222. "click": function () {
  8223. U.MD.D.I.openApplication(str, obj, info);
  8224. }
  8225. }
  8226. break;
  8227. }
  8228. const script1 = document.createElement("script");
  8229. script1.type = "text/javascript";
  8230. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8231. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8232. const script2 = document.createElement("script");
  8233. script2.type = "text/javascript";
  8234. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8235. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8236. const script3 = document.createElement("script");
  8237. script3.type = "text/javascript";
  8238. script3.charset = "UTF-8";
  8239. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8240. const script4 = document.createElement("script");
  8241. script4.type = "text/javascript";
  8242. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8243. script4.src = window.origin + "/js/Common/jietu2E.js";
  8244. if (_iframe) {
  8245. if (str == 'doc') {
  8246. _iframe = _formdiv.querySelector('iframe')
  8247. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8248. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8249. _iframe.contentWindow.document.body.appendChild(script1);
  8250. _iframe.contentWindow.document.body.appendChild(script2);
  8251. // _iframe.contentWindow.document.body.appendChild(script3);
  8252. _iframe.contentWindow.document.body.appendChild(script4);
  8253. })
  8254. if (onloadListener) {
  8255. _iframe.contentDocument.location.reload()
  8256. } else {
  8257. _iframe.contentDocument.location.reload()
  8258. }
  8259. } else if (str == 'courseDesign') {
  8260. U.UF.DL.iframeLoad(_iframe, function () {
  8261. // _iframe.contentWindow.U.MD.O.W.load();
  8262. // _iframe.contentWindow.document.body.appendChild(script1);
  8263. _iframe.contentWindow.document.body.appendChild(script2);
  8264. _iframe.contentWindow.document.body.appendChild(script4);
  8265. })
  8266. } else if (str == 'mind') {
  8267. _iframe = _formdiv.querySelector('iframe')
  8268. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8269. //
  8270. _iframe.contentWindow.document.body.appendChild(script1);
  8271. _iframe.contentWindow.document.body.appendChild(script2);
  8272. _iframe.contentWindow.document.body.appendChild(script4);
  8273. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8274. })
  8275. if (onloadListener) {
  8276. _iframe.contentDocument.location.reload()
  8277. } else {
  8278. _iframe.contentDocument.location.reload()
  8279. }
  8280. } else if (str == 'whiteboard') {
  8281. _iframe = _formdiv.querySelector('iframe')
  8282. let onloadListener = _iframe.onload = () => {
  8283. _iframe.contentWindow.document.body.appendChild(script1);
  8284. _iframe.contentWindow.document.body.appendChild(script2);
  8285. _iframe.contentWindow.document.body.appendChild(script4);
  8286. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8287. };
  8288. // if (onloadListener) {
  8289. // try {
  8290. // _iframe.src += "?cocorobo="+new Date().getTime()
  8291. // _iframe.contentWindow.document.location.reload()
  8292. // } catch (error) {
  8293. // }
  8294. // } else {
  8295. // _iframe.contentDocument.location.reload()
  8296. // }
  8297. } else {
  8298. _iframe.onload = () => {
  8299. _iframe.contentWindow.document.body.appendChild(script1);
  8300. _iframe.contentWindow.document.body.appendChild(script2);
  8301. // _iframe.contentWindow.document.body.appendChild(script3);
  8302. _iframe.contentWindow.document.body.appendChild(script4);
  8303. };
  8304. }
  8305. _jie.onclick = async () => {
  8306. let text = ''
  8307. if (aTool == 1) {
  8308. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8309. } else if (aTool == 6) {
  8310. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8311. } else if (aTool == 3) {
  8312. text = await U.MD.D.I.getEditorContent(_iframe);
  8313. }
  8314. _loading.style.display = 'flex'
  8315. console.log(_loading);
  8316. var _ajs = _iframe.contentWindow.document.createElement("script");
  8317. _ajs.type = "text/javascript";
  8318. _ajs.innerHTML =
  8319. // 'console.log(' + _loading + ');\n' +
  8320. 'var _js = document.createElement("script");\n' +
  8321. '_js.type="text/javascript";\n' +
  8322. '_js.charset="UTF-8";\n' +
  8323. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8324. "_js.onload = function(){\n" +
  8325. ' var a = document.getElementsByTagName("img")\n' +
  8326. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8327. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8328. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8329. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8330. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8331. "beforeUpload_shishi(file," +
  8332. "'" +
  8333. _userid +
  8334. "'" +
  8335. ", " +
  8336. "'" +
  8337. _cid +
  8338. "'" +
  8339. ", " +
  8340. "'" +
  8341. _stage +
  8342. "'" +
  8343. ", " +
  8344. "'" +
  8345. _task +
  8346. "'" +
  8347. ", " +
  8348. "'" +
  8349. _tool +
  8350. "'" +
  8351. ", " +
  8352. "'" +
  8353. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8354. "'" +
  8355. ", " +
  8356. "'" +
  8357. aTool +
  8358. "'" +
  8359. ", " +
  8360. "`" +
  8361. text +
  8362. "`" +
  8363. ")\n" +
  8364. " });\n" +
  8365. "}\n" +
  8366. "document.head.appendChild(_js);\n";
  8367. _iframe.contentWindow.document.head.appendChild(_ajs);
  8368. }
  8369. }
  8370. }
  8371. U.MD.D.I.getEditorContent = function (iframe) {
  8372. return new Promise((resolve, reject) => {
  8373. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8374. console.log(content);
  8375. resolve(content)
  8376. });
  8377. });
  8378. }
  8379. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8380. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8381. // if (res.value[0].length > 0) {
  8382. // // resolve(res.value[0][0].text);
  8383. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8384. // $(fileInput).val('');
  8385. // });
  8386. // }
  8387. // }, [], { "type": "GET", "withCredentials": true });
  8388. var xmlhttp;
  8389. var Mac, Sn, DeviceId
  8390. if (window.XMLHttpRequest) {
  8391. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8392. xmlhttp = new XMLHttpRequest();
  8393. } else {
  8394. // IE6, IE5 浏览器执行代码
  8395. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8396. }
  8397. xmlhttp.onreadystatechange = function () {
  8398. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8399. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8400. // resolve(res.value[0][0].text);
  8401. if (type == '2') {
  8402. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8403. } else if (type == '3') {
  8404. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8405. }
  8406. } else {
  8407. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8408. }
  8409. }
  8410. }
  8411. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8412. xmlhttp.send();
  8413. }
  8414. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8415. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8416. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8417. _userinfo = US.userInfo, //登录用户信息
  8418. _userid = US.userInfo.userid //登录用户id
  8419. let _iframe;
  8420. let _cid = cid,
  8421. _stage = stage,
  8422. _task = task,
  8423. _tool = tool;
  8424. var _jie = $$("div", {
  8425. "style": {
  8426. "position": "absolute",
  8427. "bottom": "50px",
  8428. "right": "50px",
  8429. "zIndex": "9999",
  8430. "backgroundColor": "#2268bc",
  8431. "color": "#fff",
  8432. "padding": "12px 20px",
  8433. "cursor": "pointer",
  8434. "borderRadius": "4px",
  8435. },
  8436. "innerHTML": "确认并提交"
  8437. })
  8438. let aTool = ''
  8439. let _loading = document.createElement('div')
  8440. _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;"
  8441. // _loading.id = "";
  8442. let _lchild = document.createElement('div')
  8443. let _limg = document.createElement('img')
  8444. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8445. _limg.style = "width: 26px;margin-right: 10px;"
  8446. _lchild.appendChild(_limg)
  8447. let _lspan = document.createElement('span')
  8448. _lspan.innerHTML = "上传中..."
  8449. _lchild.appendChild(_lspan)
  8450. _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%);"
  8451. _loading.appendChild(_lchild)
  8452. var _box = $$('div', {
  8453. "style": {
  8454. "position": "relative",
  8455. "width": "100%",
  8456. "height": "100%",
  8457. },
  8458. })
  8459. _box.appendChild(_loading)
  8460. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8461. switch (str) {
  8462. case "whiteboard":
  8463. aTool = 1;
  8464. _iframe = $$("iframe", {
  8465. "frameborder": "no",
  8466. "border": "0",
  8467. "scrolling ": "no",
  8468. "style": {
  8469. "cssText": "border:0;width:100%;height:100%"
  8470. },
  8471. "src": "https://beta.iwb.cocorobo.cn/"
  8472. })
  8473. _box.appendChild(_iframe);
  8474. _box.appendChild(_jie);
  8475. _formdiv = new U.UF.UI.form(
  8476. "电子白板",
  8477. _box, {
  8478. "id": "whiteboards" + cid + stage + task + tool,
  8479. "style": {
  8480. "width": "90%",
  8481. "height": "90%",
  8482. "overflow": 'hidden'
  8483. },
  8484. "onresize": function () { }
  8485. }, {
  8486. closecallback: function () { }
  8487. }, {
  8488. "style": {
  8489. "height": "36px"
  8490. }
  8491. }).form; //创建窗体
  8492. _taskbar = {
  8493. "id": str + _formdiv.id,
  8494. "style": {
  8495. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8496. },
  8497. "name": "电子白板",
  8498. "forms": _formdiv,
  8499. "click": function () {
  8500. U.MD.D.I.openApplication(str, obj, info);
  8501. }
  8502. }
  8503. break;
  8504. case "mind":
  8505. aTool = 3;
  8506. _iframe = $$("iframe", {
  8507. "frameborder": "no",
  8508. "border": "0",
  8509. "scrolling ": "no",
  8510. "style": {
  8511. "cssText": "border:0;width:100%;height:100%"
  8512. },
  8513. "src": "/kityminder-editor/dist/index.html"
  8514. });
  8515. _box.appendChild(_iframe);
  8516. _box.appendChild(_jie);
  8517. _formdiv = new U.UF.UI.form(
  8518. "思维导图",
  8519. _box, { //"/jsmind/example/demo.html"
  8520. "id": "minds" + cid + stage + task + tool,
  8521. "style": {
  8522. "width": "90%",
  8523. "height": "90%",
  8524. "overflow": 'hidden'
  8525. },
  8526. "onresize": function () { }
  8527. }, {
  8528. closecallback: function () { }
  8529. }, {
  8530. "style": {
  8531. "height": "36px"
  8532. }
  8533. }).form; //创建窗体
  8534. _taskbar = {
  8535. "id": str + _formdiv.id,
  8536. "style": {
  8537. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8538. },
  8539. "name": "思维导图",
  8540. "forms": _formdiv,
  8541. "click": function () {
  8542. U.MD.D.I.openApplication(str, obj, info);
  8543. }
  8544. }
  8545. break;
  8546. case "doc":
  8547. aTool = 6;
  8548. _iframe = $$("iframe", {
  8549. "frameborder": "no",
  8550. "border": "0",
  8551. "scrolling ": "no",
  8552. "style": {
  8553. "cssText": "border:0;width:100%;height:100%"
  8554. },
  8555. "src": "/Office/Word/WordEditArea.htm"
  8556. })
  8557. _box.appendChild(_iframe);
  8558. _box.appendChild(_jie);
  8559. _formdiv = new U.UF.UI.form(
  8560. "协同文档",
  8561. _box, {
  8562. "id": "docs" + cid + stage + task + tool,
  8563. "style": {
  8564. "width": "90%",
  8565. "height": "90%",
  8566. "overflow": 'hidden'
  8567. },
  8568. "onresize": function () { }
  8569. }, {
  8570. closecallback: function () { }
  8571. }, {
  8572. "style": {
  8573. "height": "36px"
  8574. }
  8575. }).form; //创建窗体
  8576. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8577. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8578. })
  8579. _taskbar = {
  8580. "id": str + _formdiv.id,
  8581. "style": {
  8582. "backgroundImage": "url(/img/icon/doc.png)"
  8583. },
  8584. "name": "协同文档",
  8585. "forms": _formdiv,
  8586. "click": function () {
  8587. U.MD.D.I.openApplication(str, obj, info);
  8588. }
  8589. }
  8590. break;
  8591. }
  8592. const script1 = document.createElement("script");
  8593. script1.type = "text/javascript";
  8594. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8595. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8596. const script2 = document.createElement("script");
  8597. script2.type = "text/javascript";
  8598. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8599. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8600. const script3 = document.createElement("script");
  8601. script3.type = "text/javascript";
  8602. script3.charset = "UTF-8";
  8603. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8604. const script4 = document.createElement("script");
  8605. script4.type = "text/javascript";
  8606. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8607. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8608. if (_iframe) {
  8609. if (str == 'doc') {
  8610. _iframe = _formdiv.querySelector('iframe')
  8611. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8612. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8613. _iframe.contentWindow.document.body.appendChild(script1);
  8614. _iframe.contentWindow.document.body.appendChild(script2);
  8615. // _iframe.contentWindow.document.body.appendChild(script3);
  8616. _iframe.contentWindow.document.body.appendChild(script4);
  8617. })
  8618. if (onloadListener) {
  8619. _iframe.contentDocument.location.reload()
  8620. } else {
  8621. _iframe.contentDocument.location.reload()
  8622. }
  8623. } else if (str == 'mind') {
  8624. _iframe = _formdiv.querySelector('iframe')
  8625. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8626. _iframe.contentWindow.document.body.appendChild(script1);
  8627. _iframe.contentWindow.document.body.appendChild(script2);
  8628. _iframe.contentWindow.document.body.appendChild(script4);
  8629. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8630. })
  8631. if (onloadListener) {
  8632. _iframe.contentDocument.location.reload()
  8633. } else {
  8634. _iframe.contentDocument.location.reload()
  8635. }
  8636. } else {
  8637. _iframe.onload = () => {
  8638. _iframe.contentWindow.document.body.appendChild(script1);
  8639. _iframe.contentWindow.document.body.appendChild(script2);
  8640. // _iframe.contentWindow.document.body.appendChild(script3);
  8641. _iframe.contentWindow.document.body.appendChild(script4);
  8642. };
  8643. }
  8644. _jie.onclick = async () => {
  8645. let text = ''
  8646. if (aTool == 6) {
  8647. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8648. } else if (aTool == 3) {
  8649. text = await U.MD.D.I.getEditorContent(_iframe);
  8650. }
  8651. _loading.style.display = 'flex'
  8652. console.log(_loading);
  8653. var _ajs = _iframe.contentWindow.document.createElement("script");
  8654. _ajs.type = "text/javascript";
  8655. _ajs.innerHTML =
  8656. // 'console.log(' + _loading + ');\n' +
  8657. 'var _js = document.createElement("script");\n' +
  8658. '_js.type="text/javascript";\n' +
  8659. '_js.charset="UTF-8";\n' +
  8660. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8661. "_js.onload = function(){\n" +
  8662. ' var a = document.getElementsByTagName("img")\n' +
  8663. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8664. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8665. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8666. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8667. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8668. "beforeUpload_shishi(file," +
  8669. "'" +
  8670. _userid +
  8671. "'" +
  8672. ", " +
  8673. "'" +
  8674. _cid +
  8675. "'" +
  8676. ", " +
  8677. "'" +
  8678. _stage +
  8679. "'" +
  8680. ", " +
  8681. "'" +
  8682. _task +
  8683. "'" +
  8684. ", " +
  8685. "'" +
  8686. _tool +
  8687. "'" +
  8688. ", " +
  8689. "'" +
  8690. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8691. "'" +
  8692. ", " +
  8693. "'" +
  8694. aTool +
  8695. "'" +
  8696. ", " +
  8697. "`" +
  8698. text +
  8699. "`" +
  8700. ")\n" +
  8701. " });\n" +
  8702. "}\n" +
  8703. "document.head.appendChild(_js);\n";
  8704. _iframe.contentWindow.document.head.appendChild(_ajs);
  8705. }
  8706. }
  8707. //U.MD.D.I.openClick(str);
  8708. //如果有任务栏信息
  8709. // if (_taskbar) {
  8710. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8711. // }
  8712. }
  8713. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8714. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8715. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8716. _userinfo = US.userInfo, //登录用户信息
  8717. _userid = US.userInfo.userid //登录用户id
  8718. let _iframe;
  8719. let _cid = cid,
  8720. _stage = stage,
  8721. _task = task,
  8722. _tool = tool;
  8723. var _jie = $$("div", {
  8724. "style": {
  8725. "position": "absolute",
  8726. "bottom": "50px",
  8727. "right": "50px",
  8728. "zIndex": "9999",
  8729. "backgroundColor": "#2268bc",
  8730. "color": "#fff",
  8731. "padding": "12px 20px",
  8732. "cursor": "pointer",
  8733. "borderRadius": "4px",
  8734. },
  8735. "innerHTML": "确认并提交"
  8736. })
  8737. let aTool = ''
  8738. let _loading = document.createElement('div')
  8739. _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;"
  8740. // _loading.id = "";
  8741. let _lchild = document.createElement('div')
  8742. let _limg = document.createElement('img')
  8743. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8744. _limg.style = "width: 26px;margin-right: 10px;"
  8745. _lchild.appendChild(_limg)
  8746. let _lspan = document.createElement('span')
  8747. _lspan.innerHTML = "上传中..."
  8748. _lchild.appendChild(_lspan)
  8749. _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%);"
  8750. _loading.appendChild(_lchild)
  8751. var _box = $$('div', {
  8752. "style": {
  8753. "position": "relative",
  8754. "width": "100%",
  8755. "height": "100%",
  8756. },
  8757. })
  8758. _box.appendChild(_loading)
  8759. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8760. switch (str) {
  8761. case "whiteboard":
  8762. aTool = 1;
  8763. _iframe = $$("iframe", {
  8764. "frameborder": "no",
  8765. "border": "0",
  8766. "scrolling ": "no",
  8767. "style": {
  8768. "cssText": "border:0;width:100%;height:100%"
  8769. },
  8770. "src": "https://beta.iwb.cocorobo.cn/"
  8771. })
  8772. _box.appendChild(_iframe);
  8773. _box.appendChild(_jie);
  8774. _formdiv = new U.UF.UI.form(
  8775. "电子白板",
  8776. _box, {
  8777. "id": "whiteboards" + cid + stage + task + tool,
  8778. "style": {
  8779. "width": "90%",
  8780. "height": "90%",
  8781. "overflow": 'hidden'
  8782. },
  8783. "onresize": function () { }
  8784. }, {
  8785. closecallback: function () { }
  8786. }, {
  8787. "style": {
  8788. "height": "36px"
  8789. }
  8790. }).form; //创建窗体
  8791. _taskbar = {
  8792. "id": str + _formdiv.id,
  8793. "style": {
  8794. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8795. },
  8796. "name": "电子白板",
  8797. "forms": _formdiv,
  8798. "click": function () {
  8799. U.MD.D.I.openApplication(str, obj, info);
  8800. }
  8801. }
  8802. break;
  8803. case "mind":
  8804. aTool = 3;
  8805. _iframe = $$("iframe", {
  8806. "frameborder": "no",
  8807. "border": "0",
  8808. "scrolling ": "no",
  8809. "style": {
  8810. "cssText": "border:0;width:100%;height:100%"
  8811. },
  8812. "src": "/kityminder-editor/dist/index.html"
  8813. });
  8814. _box.appendChild(_iframe);
  8815. _box.appendChild(_jie);
  8816. _formdiv = new U.UF.UI.form(
  8817. "思维导图",
  8818. _box, { //"/jsmind/example/demo.html"
  8819. "id": "minds" + cid + stage + task + tool,
  8820. "style": {
  8821. "width": "90%",
  8822. "height": "90%",
  8823. "overflow": 'hidden'
  8824. },
  8825. "onresize": function () { }
  8826. }, {
  8827. closecallback: function () { }
  8828. }, {
  8829. "style": {
  8830. "height": "36px"
  8831. }
  8832. }).form; //创建窗体
  8833. _taskbar = {
  8834. "id": str + _formdiv.id,
  8835. "style": {
  8836. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8837. },
  8838. "name": "思维导图",
  8839. "forms": _formdiv,
  8840. "click": function () {
  8841. U.MD.D.I.openApplication(str, obj, info);
  8842. }
  8843. }
  8844. break;
  8845. case "doc":
  8846. aTool = 6;
  8847. _iframe = $$("iframe", {
  8848. "frameborder": "no",
  8849. "border": "0",
  8850. "scrolling ": "no",
  8851. "style": {
  8852. "cssText": "border:0;width:100%;height:100%"
  8853. },
  8854. "src": "/Office/Word/WordEditArea.htm"
  8855. })
  8856. _box.appendChild(_iframe);
  8857. _box.appendChild(_jie);
  8858. _formdiv = new U.UF.UI.form(
  8859. "协同文档",
  8860. _box, {
  8861. "id": "docs" + cid + stage + task + tool,
  8862. "style": {
  8863. "width": "90%",
  8864. "height": "90%",
  8865. "overflow": 'hidden'
  8866. },
  8867. "onresize": function () { }
  8868. }, {
  8869. closecallback: function () { }
  8870. }, {
  8871. "style": {
  8872. "height": "36px"
  8873. }
  8874. }).form; //创建窗体
  8875. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8876. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8877. })
  8878. _taskbar = {
  8879. "id": str + _formdiv.id,
  8880. "style": {
  8881. "backgroundImage": "url(/img/icon/doc.png)"
  8882. },
  8883. "name": "协同文档",
  8884. "forms": _formdiv,
  8885. "click": function () {
  8886. U.MD.D.I.openApplication(str, obj, info);
  8887. }
  8888. }
  8889. break;
  8890. }
  8891. const script1 = document.createElement("script");
  8892. script1.type = "text/javascript";
  8893. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8894. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8895. const script2 = document.createElement("script");
  8896. script2.type = "text/javascript";
  8897. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8898. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8899. const script3 = document.createElement("script");
  8900. script3.type = "text/javascript";
  8901. script3.charset = "UTF-8";
  8902. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8903. const script4 = document.createElement("script");
  8904. script4.type = "text/javascript";
  8905. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8906. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8907. if (_iframe) {
  8908. if (str == 'doc') {
  8909. _iframe = _formdiv.querySelector('iframe')
  8910. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8911. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8912. _iframe.contentWindow.document.body.appendChild(script1);
  8913. _iframe.contentWindow.document.body.appendChild(script2);
  8914. // _iframe.contentWindow.document.body.appendChild(script3);
  8915. _iframe.contentWindow.document.body.appendChild(script4);
  8916. })
  8917. if (onloadListener) {
  8918. _iframe.contentDocument.location.reload()
  8919. } else {
  8920. _iframe.contentDocument.location.reload()
  8921. }
  8922. } else if (str == 'mind') {
  8923. _iframe = _formdiv.querySelector('iframe')
  8924. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8925. _iframe.contentWindow.document.body.appendChild(script1);
  8926. _iframe.contentWindow.document.body.appendChild(script2);
  8927. _iframe.contentWindow.document.body.appendChild(script4);
  8928. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8929. })
  8930. if (onloadListener) {
  8931. _iframe.contentDocument.location.reload()
  8932. } else {
  8933. _iframe.contentDocument.location.reload()
  8934. }
  8935. } else {
  8936. _iframe.onload = () => {
  8937. _iframe.contentWindow.document.body.appendChild(script1);
  8938. _iframe.contentWindow.document.body.appendChild(script2);
  8939. // _iframe.contentWindow.document.body.appendChild(script3);
  8940. _iframe.contentWindow.document.body.appendChild(script4);
  8941. };
  8942. }
  8943. _jie.onclick = async () => {
  8944. let text = ''
  8945. if (aTool == 6) {
  8946. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8947. } else if (aTool == 3) {
  8948. text = await U.MD.D.I.getEditorContent(_iframe);
  8949. }
  8950. _loading.style.display = 'flex'
  8951. console.log(_loading);
  8952. var _ajs = _iframe.contentWindow.document.createElement("script");
  8953. _ajs.type = "text/javascript";
  8954. _ajs.innerHTML =
  8955. // 'console.log(' + _loading + ');\n' +
  8956. 'var _js = document.createElement("script");\n' +
  8957. '_js.type="text/javascript";\n' +
  8958. '_js.charset="UTF-8";\n' +
  8959. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8960. "_js.onload = function(){\n" +
  8961. ' var a = document.getElementsByTagName("img")\n' +
  8962. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8963. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8964. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8965. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8966. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8967. "beforeUpload_shishi(file," +
  8968. "'" +
  8969. _userid +
  8970. "'" +
  8971. ", " +
  8972. "'" +
  8973. _cid +
  8974. "'" +
  8975. ", " +
  8976. "'" +
  8977. _stage +
  8978. "'" +
  8979. ", " +
  8980. "'" +
  8981. _task +
  8982. "'" +
  8983. ", " +
  8984. "'" +
  8985. _tool +
  8986. "'" +
  8987. ", " +
  8988. "'" +
  8989. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8990. "'" +
  8991. ", " +
  8992. "'" +
  8993. aTool +
  8994. "'" +
  8995. ", " +
  8996. "`" +
  8997. text +
  8998. "`" +
  8999. ")\n" +
  9000. " });\n" +
  9001. "}\n" +
  9002. "document.head.appendChild(_js);\n";
  9003. _iframe.contentWindow.document.head.appendChild(_ajs);
  9004. }
  9005. }
  9006. //U.MD.D.I.openClick(str);
  9007. //如果有任务栏信息
  9008. // if (_taskbar) {
  9009. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9010. // }
  9011. }
  9012. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9013. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9014. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9015. _userinfo = US.userInfo, //登录用户信息
  9016. _userid = US.userInfo.userid //登录用户id
  9017. let _iframe;
  9018. let _cid = cid,
  9019. _stage = stage,
  9020. _task = task,
  9021. _tool = tool;
  9022. var _jie = $$("div", {
  9023. "style": {
  9024. "position": "absolute",
  9025. "bottom": "50px",
  9026. "right": "50px",
  9027. "zIndex": "9999",
  9028. "backgroundColor": "#2268bc",
  9029. "color": "#fff",
  9030. "padding": "12px 20px",
  9031. "cursor": "pointer",
  9032. "borderRadius": "4px",
  9033. },
  9034. "innerHTML": "上传模板"
  9035. })
  9036. let aTool = ''
  9037. let _loading = document.createElement('div')
  9038. _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;"
  9039. // _loading.id = "";
  9040. let _lchild = document.createElement('div')
  9041. let _limg = document.createElement('img')
  9042. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9043. _limg.style = "width: 26px;margin-right: 10px;"
  9044. _lchild.appendChild(_limg)
  9045. let _lspan = document.createElement('span')
  9046. _lspan.innerHTML = "上传中..."
  9047. _lchild.appendChild(_lspan)
  9048. _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%);"
  9049. _loading.appendChild(_lchild)
  9050. var _box = $$('div', {
  9051. "style": {
  9052. "position": "relative",
  9053. "width": "100%",
  9054. "height": "100%",
  9055. },
  9056. })
  9057. _box.appendChild(_loading)
  9058. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9059. switch (str) {
  9060. case "whiteboard":
  9061. aTool = 1;
  9062. _iframe = $$("iframe", {
  9063. "frameborder": "no",
  9064. "border": "0",
  9065. "scrolling ": "no",
  9066. "style": {
  9067. "cssText": "border:0;width:100%;height:100%"
  9068. },
  9069. "src": "https://beta.iwb.cocorobo.cn/"
  9070. })
  9071. _box.appendChild(_iframe);
  9072. _box.appendChild(_jie);
  9073. _formdiv = new U.UF.UI.form(
  9074. "电子白板",
  9075. _box, {
  9076. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9077. "style": {
  9078. "width": "90%",
  9079. "height": "90%",
  9080. "overflow": 'hidden'
  9081. },
  9082. "onresize": function () { }
  9083. }, {
  9084. closecallback: function () { }
  9085. }, {
  9086. "style": {
  9087. "height": "36px"
  9088. }
  9089. }).form; //创建窗体
  9090. _taskbar = {
  9091. "id": str + _formdiv.id,
  9092. "style": {
  9093. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9094. },
  9095. "name": "电子白板",
  9096. "forms": _formdiv,
  9097. "click": function () {
  9098. U.MD.D.I.openApplication(str, obj, info);
  9099. }
  9100. }
  9101. break;
  9102. case "mind":
  9103. aTool = 3;
  9104. _iframe = $$("iframe", {
  9105. "frameborder": "no",
  9106. "border": "0",
  9107. "scrolling ": "no",
  9108. "style": {
  9109. "cssText": "border:0;width:100%;height:100%"
  9110. },
  9111. "src": "/kityminder-editor/dist/index.html"
  9112. });
  9113. _box.appendChild(_iframe);
  9114. _box.appendChild(_jie);
  9115. _formdiv = new U.UF.UI.form(
  9116. "思维导图",
  9117. _box, { //"/jsmind/example/demo.html"
  9118. "id": "minds_Yu" + cid + stage + task + tool,
  9119. "style": {
  9120. "width": "90%",
  9121. "height": "90%",
  9122. "overflow": 'hidden'
  9123. },
  9124. "onresize": function () { }
  9125. }, {
  9126. closecallback: function () { }
  9127. }, {
  9128. "style": {
  9129. "height": "36px"
  9130. }
  9131. }).form; //创建窗体
  9132. _taskbar = {
  9133. "id": str + _formdiv.id,
  9134. "style": {
  9135. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9136. },
  9137. "name": "思维导图",
  9138. "forms": _formdiv,
  9139. "click": function () {
  9140. U.MD.D.I.openApplication(str, obj, info);
  9141. }
  9142. }
  9143. break;
  9144. case "doc":
  9145. aTool = 6;
  9146. _iframe = $$("iframe", {
  9147. "frameborder": "no",
  9148. "border": "0",
  9149. "scrolling ": "no",
  9150. "style": {
  9151. "cssText": "border:0;width:100%;height:100%"
  9152. },
  9153. "src": "/Office/Word/WordEditArea.htm"
  9154. })
  9155. _box.appendChild(_iframe);
  9156. _box.appendChild(_jie);
  9157. _formdiv = new U.UF.UI.form(
  9158. "协同文档",
  9159. _box, {
  9160. "id": "docs_Yu" + cid + stage + task + tool,
  9161. "style": {
  9162. "width": "90%",
  9163. "height": "90%",
  9164. "overflow": 'hidden'
  9165. },
  9166. "onresize": function () { }
  9167. }, {
  9168. closecallback: function () { }
  9169. }, {
  9170. "style": {
  9171. "height": "36px"
  9172. }
  9173. }).form; //创建窗体
  9174. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9175. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9176. })
  9177. _taskbar = {
  9178. "id": str + _formdiv.id,
  9179. "style": {
  9180. "backgroundImage": "url(/img/icon/doc.png)"
  9181. },
  9182. "name": "协同文档",
  9183. "forms": _formdiv,
  9184. "click": function () {
  9185. U.MD.D.I.openApplication(str, obj, info);
  9186. }
  9187. }
  9188. break;
  9189. case "CocoPi":
  9190. aTool = 57;
  9191. _iframe = $$("iframe", {
  9192. "allowpaymentrequest": "allowpaymentrequest",
  9193. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9194. "webkitallowfullscreen": "",
  9195. "mozallowfullscreen": "",
  9196. "frameborder": "no",
  9197. "border": "0",
  9198. "scrolling ": "no",
  9199. "style": {
  9200. "cssText": "border:0;width:100%;height:100%"
  9201. },
  9202. "src": "https://pi.cocorobo.cn/"
  9203. })
  9204. _box.appendChild(_iframe);
  9205. _box.appendChild(_jie);
  9206. _formdiv = new U.UF.UI.form(
  9207. "CocoPi",
  9208. _box, {
  9209. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9210. "style": {
  9211. "width": "90%",
  9212. "height": "90%",
  9213. "overflow": 'hidden'
  9214. },
  9215. "onresize": function () { }
  9216. }, {
  9217. closecallback: function () { }
  9218. }, {
  9219. "style": {
  9220. "height": "36px"
  9221. }
  9222. }).form; //创建窗体
  9223. _taskbar = {
  9224. "id": str + _formdiv.id,
  9225. "style": {
  9226. "backgroundImage": "url(/img/icon/cocopi.png)"
  9227. },
  9228. "name": "CocoPi",
  9229. "forms": _formdiv,
  9230. "click": function () {
  9231. U.MD.D.I.openApplication(str, obj, info);
  9232. }
  9233. }
  9234. break;
  9235. }
  9236. if (_iframe) {
  9237. if (str == 'doc') {
  9238. _iframe = _formdiv.querySelector('iframe')
  9239. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9240. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9241. })
  9242. if (onloadListener) {
  9243. _iframe.contentDocument.location.reload()
  9244. } else {
  9245. _iframe.contentDocument.location.reload()
  9246. }
  9247. } else if (str == 'mind') {
  9248. _iframe = _formdiv.querySelector('iframe')
  9249. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9250. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9251. })
  9252. if (onloadListener) {
  9253. _iframe.contentDocument.location.reload()
  9254. } else {
  9255. _iframe.contentDocument.location.reload()
  9256. }
  9257. } else if (str == 'whiteboard') {
  9258. _iframe = _formdiv.querySelector('iframe')
  9259. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9260. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9261. })
  9262. // if (onloadListener) {
  9263. // try {
  9264. // _iframe.src += "?cocorobo="+new Date().getTime()
  9265. // _iframe.contentWindow.document.location.reload()
  9266. // } catch (error) {
  9267. // }
  9268. // } else {
  9269. // _iframe.contentDocument.location.reload()
  9270. // }
  9271. } else if (str == 'CocoPi') {
  9272. _iframe = _formdiv.querySelector('iframe')
  9273. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9274. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9275. })
  9276. if (onloadListener) {
  9277. _iframe.contentDocument.location.reload()
  9278. } else {
  9279. _iframe.contentDocument.location.reload()
  9280. }
  9281. } else {
  9282. _iframe.onload = () => { };
  9283. }
  9284. _jie.onclick = async () => {
  9285. let text = ''
  9286. let type = '2'
  9287. if (aTool == 1) {
  9288. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9289. type = '3'
  9290. } else if (aTool == 6) {
  9291. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9292. type = '1'
  9293. } else if (aTool == 3) {
  9294. text = await U.MD.D.I.getEditorContent(_iframe);
  9295. type = '2'
  9296. } else if (aTool == 57) {
  9297. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9298. type = '4'
  9299. }
  9300. _loading.style.display = 'flex'
  9301. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9302. }
  9303. }
  9304. //U.MD.D.I.openClick(str);
  9305. //如果有任务栏信息
  9306. // if (_taskbar) {
  9307. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9308. // }
  9309. }
  9310. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9311. var xmlhttp;
  9312. var Mac, Sn, DeviceId
  9313. if (window.XMLHttpRequest) {
  9314. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9315. xmlhttp = new XMLHttpRequest();
  9316. } else {
  9317. // IE6, IE5 浏览器执行代码
  9318. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9319. }
  9320. xmlhttp.onreadystatechange = function () {
  9321. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9322. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9323. // resolve(res.value[0][0].text);
  9324. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9325. }
  9326. }
  9327. }
  9328. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9329. xmlhttp.send();
  9330. }
  9331. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9332. var xmlhttp;
  9333. var Mac, Sn, DeviceId
  9334. if (window.XMLHttpRequest) {
  9335. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9336. xmlhttp = new XMLHttpRequest();
  9337. } else {
  9338. // IE6, IE5 浏览器执行代码
  9339. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9340. }
  9341. xmlhttp.onreadystatechange = function () {
  9342. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9343. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9344. // resolve(res.value[0][0].text);
  9345. if (type == '2') {
  9346. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9347. } else if (type == '3') {
  9348. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9349. } else if (type == '4') {
  9350. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9351. }
  9352. } else {
  9353. if (type == '2') {
  9354. iframe.contentWindow.editor.minder.importData('json', '')
  9355. } else if (type == '3') {
  9356. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9357. } else if (type == '4') {
  9358. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9359. }
  9360. }
  9361. }
  9362. }
  9363. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9364. xmlhttp.send();
  9365. }
  9366. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9367. var xmlhttp;
  9368. var Mac, Sn, DeviceId
  9369. if (window.XMLHttpRequest) {
  9370. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9371. xmlhttp = new XMLHttpRequest();
  9372. } else {
  9373. // IE6, IE5 浏览器执行代码
  9374. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9375. }
  9376. xmlhttp.onreadystatechange = function () {
  9377. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9378. if (xmlhttp.response) {
  9379. // resolve(res.value[0][0].text);
  9380. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9381. // $(fileInput).val('');
  9382. // });
  9383. span.innerHTML = '上传成功'
  9384. setTimeout(() => {
  9385. loading.style.display = 'none'
  9386. }, 1000);
  9387. }
  9388. }
  9389. }
  9390. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9391. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9392. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9393. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9394. // 设置请求头,表示请求体的编码格式
  9395. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9396. // 设置请求体,使用url-encoded格式的数据
  9397. }
  9398. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9399. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9400. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9401. _userinfo = US.userInfo, //登录用户信息
  9402. _userid = US.userInfo.userid //登录用户id
  9403. let _iframe;
  9404. let _cid = cid,
  9405. _stage = stage,
  9406. _task = task,
  9407. _tool = tool;
  9408. var _jie = $$("div", {
  9409. "style": {
  9410. "position": "absolute",
  9411. "bottom": "50px",
  9412. "right": "50px",
  9413. "zIndex": "9999",
  9414. "backgroundColor": "#2268bc",
  9415. "color": "#fff",
  9416. "padding": "12px 20px",
  9417. "cursor": "pointer",
  9418. "borderRadius": "4px",
  9419. },
  9420. "innerHTML": "提交作业"
  9421. })
  9422. let aTool = ''
  9423. let _loading = document.createElement('div')
  9424. _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;"
  9425. // _loading.id = "";
  9426. let _lchild = document.createElement('div')
  9427. let _limg = document.createElement('img')
  9428. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9429. _limg.style = "width: 26px;margin-right: 10px;"
  9430. _lchild.appendChild(_limg)
  9431. let _lspan = document.createElement('span')
  9432. _lspan.innerHTML = "上传中..."
  9433. _lchild.appendChild(_lspan)
  9434. _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%);"
  9435. _loading.appendChild(_lchild)
  9436. var _box = $$('div', {
  9437. "style": {
  9438. "position": "relative",
  9439. "width": "100%",
  9440. "height": "100%",
  9441. },
  9442. })
  9443. _box.appendChild(_loading)
  9444. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9445. switch (str) {
  9446. case "CocoPi":
  9447. aTool = 57;
  9448. _iframe = $$("iframe", {
  9449. "allowpaymentrequest": "allowpaymentrequest",
  9450. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9451. "webkitallowfullscreen": "",
  9452. "mozallowfullscreen": "",
  9453. "frameborder": "no",
  9454. "border": "0",
  9455. "scrolling ": "no",
  9456. "style": {
  9457. "cssText": "border:0;width:100%;height:100%"
  9458. },
  9459. "src": "https://pi.cocorobo.cn/"
  9460. })
  9461. _box.appendChild(_iframe);
  9462. _box.appendChild(_jie);
  9463. _formdiv = new U.UF.UI.form(
  9464. "CocoPi",
  9465. _box, {
  9466. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9467. "style": {
  9468. "width": "90%",
  9469. "height": "90%",
  9470. "overflow": 'hidden'
  9471. },
  9472. "onresize": function () { }
  9473. }, {
  9474. closecallback: function () { }
  9475. }, {
  9476. "style": {
  9477. "height": "36px"
  9478. }
  9479. }).form; //创建窗体
  9480. _taskbar = {
  9481. "id": str + _formdiv.id,
  9482. "style": {
  9483. "backgroundImage": "url(/img/icon/cocopi.png)"
  9484. },
  9485. "name": "CocoPi",
  9486. "forms": _formdiv,
  9487. "click": function () {
  9488. U.MD.D.I.openApplication(str, obj, info);
  9489. }
  9490. }
  9491. break;
  9492. }
  9493. if (_iframe) {
  9494. if (str == 'CocoPi') {
  9495. _iframe = _formdiv.querySelector('iframe')
  9496. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9497. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9498. })
  9499. if (onloadListener) {
  9500. _iframe.contentDocument.location.reload()
  9501. } else {
  9502. _iframe.contentDocument.location.reload()
  9503. }
  9504. }
  9505. _jie.onclick = async () => {
  9506. let text = ''
  9507. if (aTool == 57) {
  9508. text = _iframe.contentWindow.getLoadXmlStr()
  9509. }
  9510. _loading.style.display = 'flex'
  9511. console.log(_loading);
  9512. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9513. _loading.style.display = 'none'
  9514. let _div = document.createElement('div')
  9515. _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;"
  9516. let _inner = document.createElement('div')
  9517. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9518. _inner.innerHTML = "上传成功"
  9519. _div.appendChild(_inner)
  9520. _iframe.contentWindow.window.document.body.appendChild(_div)
  9521. _div.onclick = () => {
  9522. _iframe.contentWindow.window.document.body.removeChild(_div)
  9523. }
  9524. setTimeout(() => {
  9525. _iframe.contentWindow.window.document.body.removeChild(_div)
  9526. }, 1000);
  9527. }, [], { "type": "POST", "withCredentials": true });
  9528. }
  9529. }
  9530. }
  9531. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9532. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9533. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9534. _userid = student.userid, //登录用户id
  9535. _username = student.student //用户名字
  9536. let _iframe;
  9537. let _cid = cid,
  9538. _stage = stage,
  9539. _task = task,
  9540. _tool = tool;
  9541. var _jie = $$("div", {
  9542. "style": {
  9543. "position": "absolute",
  9544. "bottom": "50px",
  9545. "right": "50px",
  9546. "zIndex": "9999",
  9547. "backgroundColor": "#2268bc",
  9548. "color": "#fff",
  9549. "padding": "12px 20px",
  9550. "cursor": "pointer",
  9551. "borderRadius": "4px",
  9552. },
  9553. "innerHTML": "提交作业"
  9554. })
  9555. let aTool = ''
  9556. let _loading = document.createElement('div')
  9557. _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;"
  9558. // _loading.id = "";
  9559. let _lchild = document.createElement('div')
  9560. let _limg = document.createElement('img')
  9561. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9562. _limg.style = "width: 26px;margin-right: 10px;"
  9563. _lchild.appendChild(_limg)
  9564. let _lspan = document.createElement('span')
  9565. _lspan.innerHTML = "上传中..."
  9566. _lchild.appendChild(_lspan)
  9567. _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%);"
  9568. _loading.appendChild(_lchild)
  9569. var _box = $$('div', {
  9570. "style": {
  9571. "position": "relative",
  9572. "width": "100%",
  9573. "height": "100%",
  9574. },
  9575. })
  9576. _box.appendChild(_loading)
  9577. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9578. switch (str) {
  9579. case "CocoPi":
  9580. aTool = 57;
  9581. _iframe = $$("iframe", {
  9582. "allowpaymentrequest": "allowpaymentrequest",
  9583. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9584. "webkitallowfullscreen": "",
  9585. "mozallowfullscreen": "",
  9586. "frameborder": "no",
  9587. "border": "0",
  9588. "scrolling ": "no",
  9589. "style": {
  9590. "cssText": "border:0;width:100%;height:100%"
  9591. },
  9592. "src": "https://pi.cocorobo.cn/"
  9593. })
  9594. _box.appendChild(_iframe);
  9595. _box.appendChild(_jie);
  9596. _formdiv = new U.UF.UI.form(
  9597. "CocoPi-" + _username,
  9598. _box, {
  9599. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9600. "style": {
  9601. "width": "90%",
  9602. "height": "90%",
  9603. "overflow": 'hidden'
  9604. },
  9605. "onresize": function () { }
  9606. }, {
  9607. closecallback: function () { }
  9608. }, {
  9609. "style": {
  9610. "height": "36px"
  9611. }
  9612. }).form; //创建窗体
  9613. _taskbar = {
  9614. "id": str + _formdiv.id,
  9615. "style": {
  9616. "backgroundImage": "url(/img/icon/cocopi.png)"
  9617. },
  9618. "name": "CocoPi",
  9619. "forms": _formdiv,
  9620. "click": function () {
  9621. U.MD.D.I.openApplication(str, obj, info);
  9622. }
  9623. }
  9624. break;
  9625. }
  9626. if (_iframe) {
  9627. if (str == 'CocoPi') {
  9628. _iframe = _formdiv.querySelector('iframe')
  9629. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9630. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9631. })
  9632. if (onloadListener) {
  9633. _iframe.contentDocument.location.reload()
  9634. } else {
  9635. _iframe.contentDocument.location.reload()
  9636. }
  9637. }
  9638. _jie.onclick = async () => {
  9639. let text = ''
  9640. if (aTool == 57) {
  9641. text = _iframe.contentWindow.getLoadXmlStr()
  9642. }
  9643. _loading.style.display = 'flex'
  9644. console.log(_loading);
  9645. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9646. _loading.style.display = 'none'
  9647. let _div = document.createElement('div')
  9648. _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;"
  9649. let _inner = document.createElement('div')
  9650. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9651. _inner.innerHTML = "上传成功"
  9652. _div.appendChild(_inner)
  9653. _iframe.contentWindow.window.document.body.appendChild(_div)
  9654. _div.onclick = () => {
  9655. _iframe.contentWindow.window.document.body.removeChild(_div)
  9656. }
  9657. setTimeout(() => {
  9658. _iframe.contentWindow.window.document.body.removeChild(_div)
  9659. }, 1000);
  9660. }, [], { "type": "POST", "withCredentials": true });
  9661. }
  9662. }
  9663. }
  9664. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9665. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9666. if (res.value[0].length > 0) {
  9667. if (atool == 57) {
  9668. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9669. }
  9670. } else {
  9671. if (atool == 57) {
  9672. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9673. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9674. }
  9675. }
  9676. }, [], { "type": "POST", "withCredentials": true });
  9677. }