DeskTop.js 686 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //ricoh
  694. U.MD.D.I.ricohteacherDeskIcon = [
  695. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  696. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  701. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  703. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkStudentDeskIcon = [
  708. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  709. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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. ];
  715. //hk
  716. U.MD.D.I.hkaceteacherDeskIcon = [
  717. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  718. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  719. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  720. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  721. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  722. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  723. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  724. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  725. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  726. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  727. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  728. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  729. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  730. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  734. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  736. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  737. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  738. ];
  739. //hk
  740. U.MD.D.I.hkaceStudentDeskIcon = [
  741. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSteacherDeskIcon = [
  750. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  751. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  753. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  759. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  760. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  761. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  762. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  763. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  766. ];
  767. //香海正覺蓮社佛教正覺中學
  768. U.MD.D.I.hkZJLSStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  773. ];
  774. //云海
  775. U.MD.D.I.yunhaiTeacherDeskIcon = [
  776. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  777. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  778. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  779. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  783. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  784. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  785. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  786. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  787. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  788. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  789. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanTeacherDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  806. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //福田
  811. U.MD.D.I.heyuanAdminDeskIcon = [
  812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  825. U.MD.D.I.szherTeacherDeskIcon = [
  826. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  833. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //dsei
  839. U.MD.D.I.dseiTeacherDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  843. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  844. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  845. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  846. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  847. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  848. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  849. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  850. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  851. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  852. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  853. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  854. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  855. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  856. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  857. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  858. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  859. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  860. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  861. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  862. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  863. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  864. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  865. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  866. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  867. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  868. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  869. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  870. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  871. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  872. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  873. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  874. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  875. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  876. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  877. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  878. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  880. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  881. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  883. ];
  884. //dsei
  885. U.MD.D.I.dseiAdminDeskIcon = [
  886. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  887. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  888. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  889. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  890. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  891. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  895. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  896. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  897. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  898. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  899. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  900. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  901. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  902. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  903. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  904. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  905. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  906. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  907. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  908. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  909. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  910. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  911. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  912. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  913. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  914. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  915. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  916. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  917. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  918. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  919. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  920. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  921. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  922. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  923. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  927. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  929. ];
  930. //dsei
  931. U.MD.D.I.dseiStudentDeskIcon = [
  932. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. ];
  939. //未来教育基地
  940. U.MD.D.I.szjkyTeacherDeskIcon = [
  941. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  942. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  948. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  949. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  950. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  951. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  952. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  953. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  954. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  955. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  957. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  958. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  959. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  960. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  961. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  963. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  964. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  965. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  966. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  967. ];
  968. //未来教育基地
  969. U.MD.D.I.szjkyAdminDeskIcon = [
  970. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  971. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  974. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  975. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  978. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  979. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  980. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  981. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  982. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  983. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  987. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  988. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  989. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  990. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  992. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  993. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  994. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  995. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  996. ];
  997. //未来教育基地
  998. U.MD.D.I.szjkyStudentDeskIcon = [
  999. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1004. ];
  1005. //成华教育局
  1006. U.MD.D.I.chjyjTeacherDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成华教育局chjyj
  1023. U.MD.D.I.chjyjAdminDeskIcon = [
  1024. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1025. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1029. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //成华教育局chjyj
  1041. U.MD.D.I.chjyjStudentDeskIcon = [
  1042. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcStudentDeskIcon = [
  1049. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. ];
  1054. //tpc
  1055. U.MD.D.I.tpcTeacherDeskIcon = [
  1056. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1061. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1062. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1063. ];
  1064. //tpc
  1065. U.MD.D.I.tpcAdminDeskIcon = [
  1066. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1067. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1068. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1069. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //THU-IOE
  1075. U.MD.D.I.thuioeTeacherDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1079. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1080. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1081. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1082. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1083. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1086. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1087. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1088. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1089. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1090. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1091. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1092. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1093. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1094. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1095. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1096. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1097. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1098. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1099. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1100. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1101. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1102. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1103. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1104. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1105. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1106. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1107. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1108. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1109. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1110. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1111. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //THU-IOE
  1117. U.MD.D.I.thuioeStudentDeskIcon = [
  1118. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1119. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1120. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylTeacherDeskIcon = [
  1125. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1126. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1128. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1129. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1132. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1133. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1134. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1135. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1136. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1138. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1144. ];
  1145. //jccssyl
  1146. U.MD.D.I.jccssylStudentDeskIcon = [
  1147. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleTeacherDeskIcon = [
  1154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1157. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1158. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1161. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1162. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1163. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1164. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1165. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1166. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1167. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1170. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1171. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1172. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1173. ];
  1174. //cale
  1175. U.MD.D.I.caleStudentDeskIcon = [
  1176. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1177. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1178. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1179. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1180. ];
  1181. //lqwmsgzs
  1182. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1183. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1184. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1185. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1186. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1187. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1188. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1193. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1194. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1195. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1196. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1197. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1198. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1199. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1200. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1201. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1202. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1203. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1204. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1205. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1206. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1207. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1208. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1209. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1210. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1211. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1212. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1213. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1214. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1215. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1216. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1217. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1220. ];
  1221. //lqwmsgzs
  1222. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyTeacherDeskIcon = [
  1230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1236. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1237. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1238. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1239. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1240. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1241. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyStudentDeskIcon = [
  1246. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. ];
  1250. //scnuai
  1251. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1252. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1253. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1255. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1256. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1257. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1258. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1259. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1260. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1262. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1263. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1264. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1270. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1271. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1274. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1275. ];
  1276. //scnuai
  1277. U.MD.D.I.scnuaiAdminDeskIcon = [
  1278. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1279. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1283. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1284. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1285. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1286. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1287. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1288. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1289. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1290. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1291. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1294. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1295. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1296. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1297. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1299. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1300. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiStudentDeskIcon = [
  1304. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1305. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1306. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizteacherDeskIcon = [
  1311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1318. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1319. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1320. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1322. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1323. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1324. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1328. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1329. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1330. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1331. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1332. ];
  1333. //cocobiz
  1334. U.MD.D.I.cocobizStudentDeskIcon = [
  1335. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1336. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1337. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1338. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1344. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1345. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1347. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1348. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1351. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1355. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1356. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1357. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1363. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1364. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1365. ];
  1366. //xxzjky
  1367. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1368. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1369. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1370. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1371. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //nsfx
  1376. U.MD.D.I.nsfxTeacherDeskIcon = [
  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": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1385. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1386. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1387. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1394. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1395. ];
  1396. //nsfx
  1397. U.MD.D.I.nsfxStudentDeskIcon = [
  1398. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaTeacherDeskIcon = [
  1405. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1415. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1416. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1417. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1418. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1419. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1420. ];
  1421. //stia
  1422. U.MD.D.I.stiaStudentDeskIcon = [
  1423. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //szdjg
  1429. U.MD.D.I.szdjgTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. ];
  1433. //szdjg
  1434. U.MD.D.I.szdjgStudentDeskIcon = [
  1435. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607TeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1450. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010607
  1459. U.MD.D.I.x010607StudentDeskIcon = [
  1460. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608TeacherDeskIcon = [
  1467. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1470. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1471. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1474. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1475. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1477. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1478. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1481. ];
  1482. //010608
  1483. U.MD.D.I.x010608StudentDeskIcon = [
  1484. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. ];
  1489. //xhly
  1490. U.MD.D.I.xhlyTeacherDeskIcon = [
  1491. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.xhlyStudentDeskIcon = [
  1495. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. ];
  1497. //北师大
  1498. U.MD.D.I.BSDNSteacherDeskIcon = [
  1499. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1500. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1502. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1503. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1504. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1505. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1506. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1507. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1508. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. ];
  1511. //北师大
  1512. U.MD.D.I.BSDNSstudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1535. ];
  1536. //CUHK_EDU
  1537. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //010503
  1544. U.MD.D.I.x010503TeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //010503
  1556. U.MD.D.I.x010503StudentDeskIcon = [
  1557. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1564. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1567. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1573. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1574. ];
  1575. //SPROUT Lab
  1576. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. ];
  1582. //010204
  1583. U.MD.D.I.x010204TeacherDeskIcon = [
  1584. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1585. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. ];
  1587. //010204
  1588. U.MD.D.I.x010204StudentDeskIcon = [
  1589. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //trail
  1595. U.MD.D.I.trailTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1599. ];
  1600. //trail
  1601. U.MD.D.I.trailStudentDeskIcon = [
  1602. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504TeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1618. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1619. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1620. ];
  1621. //010504
  1622. U.MD.D.I.x010504StudentDeskIcon = [
  1623. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //SCNUET
  1629. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1630. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1639. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1640. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1642. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1643. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1648. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1649. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1650. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1651. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1652. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1653. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1654. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1655. ];
  1656. //SCNUET
  1657. U.MD.D.I.SCNUETAdminDeskIcon = [
  1658. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1659. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1663. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1666. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1669. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1670. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1671. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1672. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1675. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1679. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1680. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1681. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //SCNUET
  1685. U.MD.D.I.SCNUETStudentDeskIcon = [
  1686. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1688. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201TeacherDeskIcon = [
  1693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //x020201
  1711. U.MD.D.I.x020201AdminDeskIcon = [
  1712. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1717. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1718. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1729. ];
  1730. //020201
  1731. U.MD.D.I.x020201StudentDeskIcon = [
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.x010611TeacherDeskIcon = [
  1739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.x010611StudentDeskIcon = [
  1751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //tianyuan
  1757. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1769. ];
  1770. //010611
  1771. U.MD.D.I.tianyuanStudentDeskIcon = [
  1772. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1774. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1775. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1776. ];
  1777. //320101
  1778. U.MD.D.I.x320101TeacherDeskIcon = [
  1779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1782. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1788. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1790. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1791. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1792. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1793. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1794. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1795. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1796. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1797. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1798. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1799. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1800. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1801. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1802. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1803. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1804. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1805. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1806. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1807. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1808. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1809. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1810. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1812. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1816. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1817. ];
  1818. //320101
  1819. U.MD.D.I.x320101StudentDeskIcon = [
  1820. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1823. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1824. ];
  1825. //szsy
  1826. U.MD.D.I.szsyTeacherDeskIcon = [
  1827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1834. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1835. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1836. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1839. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1840. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1841. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1842. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1843. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1844. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1845. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1846. ];
  1847. //szsy
  1848. U.MD.D.I.szsyStudentDeskIcon = [
  1849. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1851. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1852. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1853. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1854. ];
  1855. //010404
  1856. U.MD.D.I.x010404TeacherDeskIcon = [
  1857. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1858. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1859. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1860. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1861. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1862. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1863. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1865. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1866. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1867. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1868. ];
  1869. //010404
  1870. U.MD.D.I.x010404StudentDeskIcon = [
  1871. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1872. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1873. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1874. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1875. ];
  1876. //#region 桌面初始化a
  1877. /**
  1878. * 初始化桌面的起始函数
  1879. *
  1880. */
  1881. U.MD.D.I.init = function () {
  1882. if ($("#U_MD_D_K")[0]) {
  1883. //初始化桌面图标
  1884. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1885. // var clickUrl = ':12588/requestIp.php';
  1886. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1887. // U.MD.D.I.Ip = data;
  1888. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1889. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1890. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1891. // })
  1892. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1893. // })
  1894. }
  1895. }
  1896. /**
  1897. * 模式切换
  1898. *
  1899. */
  1900. U.MD.D.I.ModeCheck = function (type) {
  1901. if (US.Config.type == type) {
  1902. return
  1903. }
  1904. US.Config.type = type
  1905. $('.U_PBL_Check .active')[0].className = ''
  1906. if (type == 1) {
  1907. $('.U_PBL_Check div')[0].className = 'active'
  1908. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1909. } else {
  1910. $('.U_PBL_Check div')[1].className = 'active'
  1911. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1912. }
  1913. //初始化桌面图标
  1914. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1915. if (type == 2) {
  1916. U.MD.D.I.openApplication("project")
  1917. }
  1918. }
  1919. /**
  1920. * 隐藏任务栏
  1921. *
  1922. * @param {element} 桌面元素
  1923. */
  1924. U.MD.D.I.hiddenTaskbar = function (el) {
  1925. //任务栏位置变小
  1926. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1927. //桌面的位置变大
  1928. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1929. }
  1930. /**
  1931. * 隐藏任务栏
  1932. *
  1933. * @param {element} 桌面元素
  1934. */
  1935. U.MD.D.I.hiddenTaskbarout = function (el) {
  1936. //任务栏位置变小
  1937. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1938. //任务栏位置变化
  1939. U.selectEl(el).css({ "bottom": "-60px" });
  1940. //桌面的位置变大
  1941. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1942. }
  1943. }
  1944. /**
  1945. * 初始化打印桌面图标
  1946. *
  1947. * @param {element} 桌面元素
  1948. */
  1949. U.MD.D.I.initDesktopIcons = function (el, type) {
  1950. var i, //用于循环
  1951. _content, //桌面图标元素
  1952. _iconcontent, //桌面图标元素
  1953. _frag = $$("frag"), //定义一个碎片元素
  1954. _type = US.userInfo.type,
  1955. _org = US.userInfo.org,
  1956. _oid = US.userInfo.organizeid,
  1957. _role = US.userInfo.role,
  1958. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1959. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1960. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1961. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1962. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1963. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1964. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1965. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1966. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1967. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1968. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1969. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1970. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1971. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1972. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1973. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1974. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1975. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1976. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1977. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1978. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1979. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1980. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1981. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1982. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1983. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1984. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1985. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1986. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1987. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1988. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1989. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1990. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1991. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1992. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1993. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1994. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1995. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1996. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1997. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1998. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1999. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2000. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2001. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2002. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2003. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2004. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2005. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2006. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2007. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2008. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2009. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2010. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2011. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2012. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2013. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2014. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2015. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2016. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2017. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2018. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2019. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2020. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2021. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2022. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2023. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2024. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2025. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2026. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2027. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2028. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2029. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2030. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2031. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2032. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2033. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2034. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2035. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2036. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2037. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2038. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2039. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2040. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2041. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2042. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2043. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2044. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2045. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2046. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2047. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2048. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2049. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2050. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2051. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2052. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2053. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2054. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2055. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2056. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2057. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2058. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2059. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2060. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2061. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2062. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2063. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2064. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2065. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2066. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2067. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2068. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2069. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2070. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2071. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2072. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2073. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2074. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2075. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2076. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926'];
  2077. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2078. //清楚桌面图标
  2079. el.innerHTML = "";
  2080. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2081. _teacherDesktopIconInfo.push(
  2082. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2083. { "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)" } },
  2084. )
  2085. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2086. }
  2087. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926') {
  2088. _teacherDesktopIconInfo.push(
  2089. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2090. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2091. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2092. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2093. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2094. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2095. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2097. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2098. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2099. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2100. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2102. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2103. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2104. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2105. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2106. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2107. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2108. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2109. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2110. )
  2111. }
  2112. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2113. _teacherDesktopIconInfo.push(
  2114. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2115. )
  2116. }
  2117. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2118. // _teacherDesktopIconInfo.push(
  2119. // )
  2120. // }
  2121. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2124. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2125. )
  2126. }
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2128. _teacherDesktopIconInfo.push(
  2129. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2130. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2131. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2132. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2133. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2134. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2135. )
  2136. _studentDesktopIconInfo.push(
  2137. )
  2138. }
  2139. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2140. _teacherDesktopIconInfo.push(
  2141. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2142. )
  2143. _studentDesktopIconInfo.push(
  2144. )
  2145. }
  2146. //010606 组织
  2147. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2148. _teacherDesktopIconInfo.push(
  2149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2150. )
  2151. _studentDesktopIconInfo.push(
  2152. )
  2153. }
  2154. //麒麟二中 和 民新小学
  2155. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2156. _teacherDesktopIconInfo.push(
  2157. )
  2158. }
  2159. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2162. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2163. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2164. )
  2165. }
  2166. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2167. _hkTeacherDeskIconInfo.push(
  2168. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2169. )
  2170. }
  2171. //北师大附中(010601)
  2172. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2173. // _teacherDesktopIconInfo.push(
  2174. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2175. // )
  2176. // _studentDesktopIconInfo.push(
  2177. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2178. // )
  2179. // }
  2180. //樂善堂余近卿中學
  2181. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2184. )
  2185. }
  2186. // Education Artificial Intelligence
  2187. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2188. _teacherDesktopIconInfo.push(
  2189. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2190. )
  2191. }
  2192. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2193. _teacherDesktopIconInfo.push(
  2194. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2195. )
  2196. }
  2197. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2198. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2199. _teacherDesktopIconInfo.push(
  2200. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2202. )
  2203. }
  2204. //麒麟二中
  2205. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2206. _studentDesktopIconInfo.push(
  2207. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2208. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2209. )
  2210. }
  2211. //万科双语
  2212. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2213. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2214. if (el.Name == '项目管理') {
  2215. el.Name = 'PBL项目'
  2216. }
  2217. return el
  2218. })
  2219. _studentDesktopIconInfo3.push(
  2220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2221. )
  2222. }
  2223. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2224. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2225. return el.Name != '魔盒识字' && el.Name != '24点'
  2226. })
  2227. }
  2228. 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) {
  2229. _studentDesktopIconInfo.push(
  2230. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2231. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2232. )
  2233. }
  2234. //循环创建桌面图标
  2235. if (type == 1) {
  2236. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2237. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2238. _content = $$("div", {
  2239. className: "U_MD_D_KO",
  2240. "onmousedown": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_studentDesktopIconInfo[i]]),
  2244. "onclick": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_studentDesktopIconInfo[i]])
  2248. }, _frag); //
  2249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2252. }
  2253. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2254. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2255. _content = $$("div", {
  2256. className: "U_MD_D_KO",
  2257. "onmousedown": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_hkZJLSStudentDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2269. } //
  2270. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2271. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2272. _content = $$("div", {
  2273. className: "U_MD_D_KO",
  2274. "onmousedown": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_ytyStudentDeskIconInfo[i]]),
  2278. "onclick": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_ytyStudentDeskIconInfo[i]])
  2282. }, _frag); //
  2283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2286. } //
  2287. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2288. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2289. _content = $$("div", {
  2290. className: "U_MD_D_KO",
  2291. "onmousedown": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_jccssylStudentDeskIconInfo[i]]),
  2295. "onclick": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_jccssylStudentDeskIconInfo[i]])
  2299. }, _frag); //
  2300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2303. }
  2304. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2305. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_scnuaiStudentDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_scnuaiStudentDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2320. }
  2321. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2322. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2323. _content = $$("div", {
  2324. className: "U_MD_D_KO",
  2325. "onmousedown": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_caleStudentDeskIconInfo[i]]),
  2329. "onclick": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_caleStudentDeskIconInfo[i]])
  2333. }, _frag); //
  2334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2337. }
  2338. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2339. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_thuioeStudentDeskIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_thuioeStudentDeskIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2356. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_tpcStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_tpcStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. } //
  2372. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2373. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_chjyjStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_chjyjStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. }
  2389. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2390. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_szjkyStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_szjkyStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2407. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_x020201StudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_x020201StudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2424. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_SCNUETStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_SCNUETStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2441. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_dseiStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_dseiStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2458. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2473. }
  2474. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2475. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_nsfxStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_nsfxStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2492. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_stiaStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_stiaStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2509. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_szdjgStudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_szdjgStudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2526. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_x010607StudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_x010607StudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2543. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_xhlyStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_xhlyStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2560. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2577. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_x010503StudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_x010503StudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2594. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_x010504StudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_x010504StudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2611. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_x010404StudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_x010404StudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2628. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010204StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010204StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2645. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_x320101StudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_x320101StudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2662. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_trailStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_trailStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2679. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2696. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_szsyStudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_szsyStudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2713. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x010608StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010608StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2730. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_x010611StudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x010611StudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2747. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_tianyuantudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_tianyuantudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2764. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_siesStudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_siesStudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2781. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_guzmsStudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_guzmsStudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2798. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_hkStudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_hkStudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2815. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_hkaceStudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_hkaceStudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2832. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_BSDNSstudentDesktopIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2849. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_cocobizStudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_cocobizStudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2866. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_xxzjkyStudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2883. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_studentDesktopIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_studentDesktopIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2900. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_tcStudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tcStudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2917. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_szscStudentDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_szscStudentDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2934. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_studentDesktopIconInfo3[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_studentDesktopIconInfo3[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2951. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_studentDesktopIconInfo2[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_studentDesktopIconInfo2[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2966. }
  2967. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2968. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2969. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2970. continue
  2971. }
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_wanketeacherDesktopIconInfo[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_wanketeacherDesktopIconInfo[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2986. }
  2987. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2988. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2989. _content = $$("div", {
  2990. className: "U_MD_D_KO",
  2991. "onmousedown": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_wankeAdminDesktopIconInfo[i]]),
  2995. "onclick": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_wankeAdminDesktopIconInfo[i]])
  2999. }, _frag); //
  3000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3003. }
  3004. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3005. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3006. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3007. continue
  3008. }
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_scnuaiTeacherDeskIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3025. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3026. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3027. continue
  3028. }
  3029. _content = $$("div", {
  3030. className: "U_MD_D_KO",
  3031. "onmousedown": U.UF.C.closure(function (obj) {
  3032. //防止拖动图标即打开了桌面应用
  3033. U.MD.D.click(this, obj);
  3034. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3035. "onclick": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_BSDNSteacherDesktopIconInfo[i]])
  3039. }, _frag); //
  3040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3043. }
  3044. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3045. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_scnuaiAdminDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_scnuaiAdminDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3062. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3063. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_jccssylTeacherDeskIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_jccssylTeacherDeskIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3080. }
  3081. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3082. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3083. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3084. continue
  3085. }
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_caleTeacherDeskIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_caleTeacherDeskIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3102. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_tpcOrganizerDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_tpcOrganizerDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3117. }
  3118. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3119. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3120. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3121. continue
  3122. }
  3123. _content = $$("div", {
  3124. className: "U_MD_D_KO",
  3125. "onmousedown": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_tpcTeacherDeskIconInfo[i]]),
  3129. "onclick": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_tpcTeacherDeskIconInfo[i]])
  3133. }, _frag); //
  3134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3137. }
  3138. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3139. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3140. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3141. continue
  3142. }
  3143. _content = $$("div", {
  3144. className: "U_MD_D_KO",
  3145. "onmousedown": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_teacherDesktopIconInfo2[i]]),
  3149. "onclick": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_teacherDesktopIconInfo2[i]])
  3153. }, _frag); //
  3154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3157. }
  3158. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3159. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3160. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3161. continue
  3162. }
  3163. _content = $$("div", {
  3164. className: "U_MD_D_KO",
  3165. "onmousedown": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_thuioeTeacherDeskIconInfo[i]]),
  3169. "onclick": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_thuioeTeacherDeskIconInfo[i]])
  3173. }, _frag); //
  3174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3177. }
  3178. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3179. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3180. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3181. continue
  3182. }
  3183. _content = $$("div", {
  3184. className: "U_MD_D_KO",
  3185. "onmousedown": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_lotechTeacherDeskIconInfo[i]]),
  3189. "onclick": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_lotechTeacherDeskIconInfo[i]])
  3193. }, _frag); //
  3194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3197. }//
  3198. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3199. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3200. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3201. continue
  3202. }
  3203. _content = $$("div", {
  3204. className: "U_MD_D_KO",
  3205. "onmousedown": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3209. "onclick": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3213. }, _frag); //
  3214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3217. }
  3218. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3219. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3220. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3221. continue
  3222. }
  3223. _content = $$("div", {
  3224. className: "U_MD_D_KO",
  3225. "onmousedown": U.UF.C.closure(function (obj) {
  3226. //防止拖动图标即打开了桌面应用
  3227. U.MD.D.click(this, obj);
  3228. }, [_siesTeacherDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_siesTeacherDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3239. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3240. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3241. continue
  3242. }
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖动图标即打开了桌面应用
  3247. U.MD.D.click(this, obj);
  3248. }, [_guzmsTeacherDeskIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_guzmsTeacherDeskIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3259. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3260. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3261. continue
  3262. }
  3263. _content = $$("div", {
  3264. className: "U_MD_D_KO",
  3265. "onmousedown": U.UF.C.closure(function (obj) {
  3266. //防止拖动图标即打开了桌面应用
  3267. U.MD.D.click(this, obj);
  3268. }, [_longhuaTeacherDeskIconInfo[i]]),
  3269. "onclick": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_longhuaTeacherDeskIconInfo[i]])
  3273. }, _frag); //
  3274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3277. }
  3278. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3279. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3280. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3281. continue
  3282. }
  3283. _content = $$("div", {
  3284. className: "U_MD_D_KO",
  3285. "onmousedown": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_ytyTeacherDeskIconInfo[i]]),
  3289. "onclick": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_ytyTeacherDeskIconInfo[i]])
  3293. }, _frag); //
  3294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3297. }
  3298. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3299. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3300. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3301. continue
  3302. }
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_yunhaiTeacherDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3317. } //_hkStudentDeskIconInfo
  3318. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3319. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3320. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3321. continue
  3322. }
  3323. _content = $$("div", {
  3324. className: "U_MD_D_KO",
  3325. "onmousedown": U.UF.C.closure(function (obj) {
  3326. //防止拖动图标即打开了桌面应用
  3327. U.MD.D.click(this, obj);
  3328. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3329. "onclick": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3333. }, _frag); //
  3334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3337. }
  3338. } else if ((_type == 1 || _type == 4) && (_oid == "b16b2138-9126-11ef-9b30-005056b86db5")) {
  3339. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3340. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3341. continue
  3342. }
  3343. _content = $$("div", {
  3344. className: "U_MD_D_KO",
  3345. "onmousedown": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_ricohTeacherDeskIconInfo[i]]),
  3349. "onclick": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_ricohTeacherDeskIconInfo[i]])
  3353. }, _frag); //
  3354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3357. }
  3358. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3359. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3360. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3361. continue
  3362. }
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_hkTeacherDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_hkTeacherDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3377. }
  3378. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3379. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3380. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3381. continue
  3382. }
  3383. _content = $$("div", {
  3384. className: "U_MD_D_KO",
  3385. "onmousedown": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_hkaceTeacherDeskIconInfo[i]]),
  3389. "onclick": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_hkaceTeacherDeskIconInfo[i]])
  3393. }, _frag); //
  3394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3397. }
  3398. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3399. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3400. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3401. continue
  3402. }
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_cocobizTeacherDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_cocobizTeacherDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3417. }
  3418. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3419. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3420. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3439. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3440. _content = $$("div", {
  3441. className: "U_MD_D_KO",
  3442. "onmousedown": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_gdjgAdminDeskIconInfo[i]]),
  3446. "onclick": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_gdjgAdminDeskIconInfo[i]])
  3450. }, _frag); //
  3451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3454. }
  3455. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3456. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3457. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3458. continue
  3459. }
  3460. _content = $$("div", {
  3461. className: "U_MD_D_KO",
  3462. "onmousedown": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_gdjgTeacherDeskIconInfo[i]]),
  3466. "onclick": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_gdjgTeacherDeskIconInfo[i]])
  3470. }, _frag); //
  3471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3474. }
  3475. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3476. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3477. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3478. continue
  3479. }
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_szherTeacherDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_szherTeacherDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3494. }
  3495. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3496. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_heyuannAdminDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_heyuannAdminDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3513. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_heyuanTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_heyuanTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. } //
  3532. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3533. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_dseiAdminDeskIconInfo[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_dseiAdminDeskIconInfo[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3550. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3551. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖动图标即打开了桌面应用
  3558. U.MD.D.click(this, obj);
  3559. }, [_dseiTeacherDeskIconInfo[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_dseiTeacherDeskIconInfo[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3568. } //
  3569. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3570. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3571. _content = $$("div", {
  3572. className: "U_MD_D_KO",
  3573. "onmousedown": U.UF.C.closure(function (obj) {
  3574. //防止拖动图标即打开了桌面应用
  3575. U.MD.D.click(this, obj);
  3576. }, [_chjyjAdminDeskIconInfo[i]]),
  3577. "onclick": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_chjyjAdminDeskIconInfo[i]])
  3581. }, _frag); //
  3582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3585. }//
  3586. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3587. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3588. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3589. continue
  3590. }
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖动图标即打开了桌面应用
  3595. U.MD.D.click(this, obj);
  3596. }, [_chjyjTeacherDeskIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖动图标即打开了桌面应用
  3599. U.MD.D.click(this, obj);
  3600. }, [_chjyjTeacherDeskIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3607. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_szjkyAdminDeskIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_szjkyAdminDeskIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3622. }//
  3623. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3624. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3625. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_szjkyTeacherDeskIconInfo[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_szjkyTeacherDeskIconInfo[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3644. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3645. _content = $$("div", {
  3646. className: "U_MD_D_KO",
  3647. "onmousedown": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_x020201AdminDeskIconInfo[i]]),
  3651. "onclick": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_x020201AdminDeskIconInfo[i]])
  3655. }, _frag); //
  3656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3659. }//
  3660. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3661. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3662. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3663. continue
  3664. }
  3665. _content = $$("div", {
  3666. className: "U_MD_D_KO",
  3667. "onmousedown": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_x020201TeacherDeskIconInfo[i]]),
  3671. "onclick": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_x020201TeacherDeskIconInfo[i]])
  3675. }, _frag); //
  3676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3679. }
  3680. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3681. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3682. _content = $$("div", {
  3683. className: "U_MD_D_KO",
  3684. "onmousedown": U.UF.C.closure(function (obj) {
  3685. //防止拖动图标即打开了桌面应用
  3686. U.MD.D.click(this, obj);
  3687. }, [_SCNUETAdminDeskIconInfo[i]]),
  3688. "onclick": U.UF.C.closure(function (obj) {
  3689. //防止拖动图标即打开了桌面应用
  3690. U.MD.D.click(this, obj);
  3691. }, [_SCNUETAdminDeskIconInfo[i]])
  3692. }, _frag); //
  3693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3696. }//
  3697. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3698. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3699. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3700. continue
  3701. }
  3702. _content = $$("div", {
  3703. className: "U_MD_D_KO",
  3704. "onmousedown": U.UF.C.closure(function (obj) {
  3705. //防止拖动图标即打开了桌面应用
  3706. U.MD.D.click(this, obj);
  3707. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3708. "onclick": U.UF.C.closure(function (obj) {
  3709. //防止拖动图标即打开了桌面应用
  3710. U.MD.D.click(this, obj);
  3711. }, [_SCNUETTeacherDeskIconInfo[i]])
  3712. }, _frag); //
  3713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3716. }
  3717. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3718. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_futianAdminDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_futianAdminDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3735. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3736. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_futianTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_futianTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. }
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3755. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3756. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_MingdeTeacherDeskIcon[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_MingdeTeacherDeskIcon[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3775. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3776. _content = $$("div", {
  3777. className: "U_MD_D_KO",
  3778. "onmousedown": U.UF.C.closure(function (obj) {
  3779. //防止拖动图标即打开了桌面应用
  3780. U.MD.D.click(this, obj);
  3781. }, [_lhsAdminDesktopIconInfo[i]]),
  3782. "onclick": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_lhsAdminDesktopIconInfo[i]])
  3786. }, _frag); //
  3787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3790. }
  3791. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3792. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3793. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3794. continue
  3795. }
  3796. _content = $$("div", {
  3797. className: "U_MD_D_KO",
  3798. "onmousedown": U.UF.C.closure(function (obj) {
  3799. //防止拖动图标即打开了桌面应用
  3800. U.MD.D.click(this, obj);
  3801. }, [_lhsteacherDesktopIconInfo[i]]),
  3802. "onclick": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_lhsteacherDesktopIconInfo[i]])
  3806. }, _frag); //
  3807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3810. }
  3811. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3812. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3813. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3814. continue
  3815. }
  3816. _content = $$("div", {
  3817. className: "U_MD_D_KO",
  3818. "onmousedown": U.UF.C.closure(function (obj) {
  3819. //防止拖动图标即打开了桌面应用
  3820. U.MD.D.click(this, obj);
  3821. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3822. "onclick": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_zhoujiateacherDesktopIconInfo[i]])
  3826. }, _frag); //
  3827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3830. }
  3831. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3832. for (i = 0; i < _hanDeskIcon.length; i++) {
  3833. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3834. continue
  3835. }
  3836. _content = $$("div", {
  3837. className: "U_MD_D_KO",
  3838. "onmousedown": U.UF.C.closure(function (obj) {
  3839. //防止拖动图标即打开了桌面应用
  3840. U.MD.D.click(this, obj);
  3841. }, [_hanDeskIcon[i]]),
  3842. "onclick": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_hanDeskIcon[i]])
  3846. }, _frag); //
  3847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3850. }
  3851. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3852. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3853. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3854. continue
  3855. }
  3856. _content = $$("div", {
  3857. className: "U_MD_D_KO",
  3858. "onmousedown": U.UF.C.closure(function (obj) {
  3859. //防止拖动图标即打开了桌面应用
  3860. U.MD.D.click(this, obj);
  3861. }, [_orgStemDeskIcon[i]]),
  3862. "onclick": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_orgStemDeskIcon[i]])
  3866. }, _frag); //
  3867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3870. }
  3871. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3872. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3873. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3874. continue
  3875. }
  3876. _content = $$("div", {
  3877. className: "U_MD_D_KO",
  3878. "onmousedown": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_szulsDeskIcon[i]]),
  3882. "onclick": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_szulsDeskIcon[i]])
  3886. }, _frag); //
  3887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3890. }
  3891. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3892. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3893. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3894. continue
  3895. }
  3896. _content = $$("div", {
  3897. className: "U_MD_D_KO",
  3898. "onmousedown": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_orgDesktopIconInfo[i]]),
  3902. "onclick": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_orgDesktopIconInfo[i]])
  3906. }, _frag); //
  3907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3910. }
  3911. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3912. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3913. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3914. continue
  3915. }
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_schoolDesktopIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_schoolDesktopIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3932. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3933. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_GMteacherDesktopIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_GMteacherDesktopIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3952. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3953. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_SONGteacherDesktopIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_SONGteacherDesktopIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3972. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_GMstudentDesktopIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_GMstudentDesktopIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3989. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3990. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_tcTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_tcTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. }
  4008. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4009. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4010. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4011. continue
  4012. }
  4013. _content = $$("div", {
  4014. className: "U_MD_D_KO",
  4015. "onmousedown": U.UF.C.closure(function (obj) {
  4016. //防止拖动图标即打开了桌面应用
  4017. U.MD.D.click(this, obj);
  4018. }, [_tcOrganizerDeskIconInfo[i]]),
  4019. "onclick": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_tcOrganizerDeskIconInfo[i]])
  4023. }, _frag); //
  4024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4027. }
  4028. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4029. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4030. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4031. continue
  4032. }
  4033. _content = $$("div", {
  4034. className: "U_MD_D_KO",
  4035. "onmousedown": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_szscTeacherDeskIconInfo[i]]),
  4039. "onclick": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_szscTeacherDeskIconInfo[i]])
  4043. }, _frag); //
  4044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4047. }
  4048. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4049. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4050. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4051. continue
  4052. }
  4053. _content = $$("div", {
  4054. className: "U_MD_D_KO",
  4055. "onmousedown": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_szscOrganizerDeskIconInfo[i]]),
  4059. "onclick": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_szscOrganizerDeskIconInfo[i]])
  4063. }, _frag); //
  4064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4067. }
  4068. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4069. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4070. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4071. continue
  4072. }
  4073. _content = $$("div", {
  4074. className: "U_MD_D_KO",
  4075. "onmousedown": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_nsfxTeacherDeskIconInfo[i]]),
  4079. "onclick": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_nsfxTeacherDeskIconInfo[i]])
  4083. }, _frag); //
  4084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4087. }
  4088. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4089. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4090. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4091. continue
  4092. }
  4093. _content = $$("div", {
  4094. className: "U_MD_D_KO",
  4095. "onmousedown": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_stiaTeacherDeskIconInfo[i]]),
  4099. "onclick": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_stiaTeacherDeskIconInfo[i]])
  4103. }, _frag); //
  4104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4107. }
  4108. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4109. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4110. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4111. continue
  4112. }
  4113. _content = $$("div", {
  4114. className: "U_MD_D_KO",
  4115. "onmousedown": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_szdjgTeacherDeskIconInfo[i]]),
  4119. "onclick": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_szdjgTeacherDeskIconInfo[i]])
  4123. }, _frag); //
  4124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4127. }
  4128. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4129. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4130. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4131. continue
  4132. }
  4133. _content = $$("div", {
  4134. className: "U_MD_D_KO",
  4135. "onmousedown": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_x010607TeacherDeskIconInfo[i]]),
  4139. "onclick": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_x010607TeacherDeskIconInfo[i]])
  4143. }, _frag); //
  4144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4147. }
  4148. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4149. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4150. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4151. continue
  4152. }
  4153. _content = $$("div", {
  4154. className: "U_MD_D_KO",
  4155. "onmousedown": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_xhlyTeacherDeskIconInfo[i]]),
  4159. "onclick": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_xhlyTeacherDeskIconInfo[i]])
  4163. }, _frag); //
  4164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4167. }
  4168. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4169. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4170. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4171. continue
  4172. }
  4173. _content = $$("div", {
  4174. className: "U_MD_D_KO",
  4175. "onmousedown": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4179. "onclick": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4183. }, _frag); //
  4184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4187. }
  4188. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4189. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4190. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4191. continue
  4192. }
  4193. _content = $$("div", {
  4194. className: "U_MD_D_KO",
  4195. "onmousedown": U.UF.C.closure(function (obj) {
  4196. //防止拖动图标即打开了桌面应用
  4197. U.MD.D.click(this, obj);
  4198. }, [_x010503TeacherDeskIconInfo[i]]),
  4199. "onclick": U.UF.C.closure(function (obj) {
  4200. //防止拖动图标即打开了桌面应用
  4201. U.MD.D.click(this, obj);
  4202. }, [_x010503TeacherDeskIconInfo[i]])
  4203. }, _frag); //
  4204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4207. }
  4208. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4209. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4210. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4211. continue
  4212. }
  4213. _content = $$("div", {
  4214. className: "U_MD_D_KO",
  4215. "onmousedown": U.UF.C.closure(function (obj) {
  4216. //防止拖动图标即打开了桌面应用
  4217. U.MD.D.click(this, obj);
  4218. }, [_x010504TeacherDeskIconInfo[i]]),
  4219. "onclick": U.UF.C.closure(function (obj) {
  4220. //防止拖动图标即打开了桌面应用
  4221. U.MD.D.click(this, obj);
  4222. }, [_x010504TeacherDeskIconInfo[i]])
  4223. }, _frag); //
  4224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4227. }
  4228. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4229. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4230. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4231. continue
  4232. }
  4233. _content = $$("div", {
  4234. className: "U_MD_D_KO",
  4235. "onmousedown": U.UF.C.closure(function (obj) {
  4236. //防止拖动图标即打开了桌面应用
  4237. U.MD.D.click(this, obj);
  4238. }, [_x010404TeacherDeskIconInfo[i]]),
  4239. "onclick": U.UF.C.closure(function (obj) {
  4240. //防止拖动图标即打开了桌面应用
  4241. U.MD.D.click(this, obj);
  4242. }, [_x010404TeacherDeskIconInfo[i]])
  4243. }, _frag); //
  4244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4247. }
  4248. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4249. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4250. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4251. continue
  4252. }
  4253. _content = $$("div", {
  4254. className: "U_MD_D_KO",
  4255. "onmousedown": U.UF.C.closure(function (obj) {
  4256. //防止拖动图标即打开了桌面应用
  4257. U.MD.D.click(this, obj);
  4258. }, [_x010204TeacherDeskIconInfo[i]]),
  4259. "onclick": U.UF.C.closure(function (obj) {
  4260. //防止拖动图标即打开了桌面应用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010204TeacherDeskIconInfo[i]])
  4263. }, _frag); //
  4264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4267. }
  4268. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4269. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4270. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4271. continue
  4272. }
  4273. _content = $$("div", {
  4274. className: "U_MD_D_KO",
  4275. "onmousedown": U.UF.C.closure(function (obj) {
  4276. //防止拖动图标即打开了桌面应用
  4277. U.MD.D.click(this, obj);
  4278. }, [_x320101TeacherDeskIconInfo[i]]),
  4279. "onclick": U.UF.C.closure(function (obj) {
  4280. //防止拖动图标即打开了桌面应用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x320101TeacherDeskIconInfo[i]])
  4283. }, _frag); //
  4284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4287. }
  4288. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4289. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4290. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4291. continue
  4292. }
  4293. _content = $$("div", {
  4294. className: "U_MD_D_KO",
  4295. "onmousedown": U.UF.C.closure(function (obj) {
  4296. //防止拖动图标即打开了桌面应用
  4297. U.MD.D.click(this, obj);
  4298. }, [_trailTeacherDeskIconInfo[i]]),
  4299. "onclick": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_trailTeacherDeskIconInfo[i]])
  4303. }, _frag); //
  4304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4307. }
  4308. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4309. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4310. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4311. continue
  4312. }
  4313. _content = $$("div", {
  4314. className: "U_MD_D_KO",
  4315. "onmousedown": U.UF.C.closure(function (obj) {
  4316. //防止拖动图标即打开了桌面应用
  4317. U.MD.D.click(this, obj);
  4318. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4319. "onclick": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4323. }, _frag); //
  4324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4327. }
  4328. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4329. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4330. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4331. continue
  4332. }
  4333. _content = $$("div", {
  4334. className: "U_MD_D_KO",
  4335. "onmousedown": U.UF.C.closure(function (obj) {
  4336. //防止拖动图标即打开了桌面应用
  4337. U.MD.D.click(this, obj);
  4338. }, [_szsyTeacherDeskIconInfo[i]]),
  4339. "onclick": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_szsyTeacherDeskIconInfo[i]])
  4343. }, _frag); //
  4344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4347. }
  4348. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4349. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4350. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4351. continue
  4352. }
  4353. _content = $$("div", {
  4354. className: "U_MD_D_KO",
  4355. "onmousedown": U.UF.C.closure(function (obj) {
  4356. //防止拖动图标即打开了桌面应用
  4357. U.MD.D.click(this, obj);
  4358. }, [_x010608TeacherDeskIconInfo[i]]),
  4359. "onclick": U.UF.C.closure(function (obj) {
  4360. //防止拖动图标即打开了桌面应用
  4361. U.MD.D.click(this, obj);
  4362. }, [_x010608TeacherDeskIconInfo[i]])
  4363. }, _frag); //
  4364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4367. }
  4368. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4369. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4370. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4371. continue
  4372. }
  4373. _content = $$("div", {
  4374. className: "U_MD_D_KO",
  4375. "onmousedown": U.UF.C.closure(function (obj) {
  4376. //防止拖动图标即打开了桌面应用
  4377. U.MD.D.click(this, obj);
  4378. }, [_x010611TeacherDeskIconInfo[i]]),
  4379. "onclick": U.UF.C.closure(function (obj) {
  4380. //防止拖动图标即打开了桌面应用
  4381. U.MD.D.click(this, obj);
  4382. }, [_x010611TeacherDeskIconInfo[i]])
  4383. }, _frag); //
  4384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4387. }
  4388. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4389. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4390. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4391. continue
  4392. }
  4393. _content = $$("div", {
  4394. className: "U_MD_D_KO",
  4395. "onmousedown": U.UF.C.closure(function (obj) {
  4396. //防止拖动图标即打开了桌面应用
  4397. U.MD.D.click(this, obj);
  4398. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4399. "onclick": U.UF.C.closure(function (obj) {
  4400. //防止拖动图标即打开了桌面应用
  4401. U.MD.D.click(this, obj);
  4402. }, [_tianyuanTeacherDeskIconInfo[i]])
  4403. }, _frag); //
  4404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4407. }
  4408. } else {
  4409. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4410. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4411. continue
  4412. }
  4413. _content = $$("div", {
  4414. className: "U_MD_D_KO",
  4415. "onmousedown": U.UF.C.closure(function (obj) {
  4416. //防止拖动图标即打开了桌面应用
  4417. U.MD.D.click(this, obj);
  4418. }, [_teacherDesktopIconInfo[i]]),
  4419. "onclick": U.UF.C.closure(function (obj) {
  4420. //防止拖动图标即打开了桌面应用
  4421. U.MD.D.click(this, obj);
  4422. }, [_teacherDesktopIconInfo[i]])
  4423. }, _frag); //
  4424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4427. }
  4428. }
  4429. } else {
  4430. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4431. _content = $$("div", {
  4432. className: "U_MD_D_KO",
  4433. style: { 'width': '124px', 'height': '145px' },
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_easyDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_easyDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4446. }
  4447. }
  4448. if (type == 1) {
  4449. //加载好后给图标定位
  4450. U.MD.D.iconPostion($(_frag).Child());
  4451. } else {
  4452. //加载好后给图标定位
  4453. U.MD.D.iconPostion2($(_frag).Child());
  4454. }
  4455. //把图标加载到页面
  4456. el.appendChild(_frag);
  4457. }
  4458. /**
  4459. * 显示任务栏
  4460. *
  4461. * @param {element} 桌面元素
  4462. */
  4463. U.MD.D.I.displayTaskbar = function (el) {
  4464. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4465. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4466. //任务栏位置变化
  4467. U.selectEl(el).css({ "bottom": "0px" });
  4468. //桌面位置变话
  4469. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4470. }
  4471. }
  4472. //#region 桌面图标拖动逻辑
  4473. /**
  4474. * 桌面排列图标
  4475. *
  4476. * @param {element} 桌面元素
  4477. * @param {object} 上下相距的距离
  4478. * @param {object} 左右相距的距离
  4479. * @return {object} 命名空间
  4480. */
  4481. U.MD.D.iconPostion = function (childs, top, left) {
  4482. var i; //用于循环处理
  4483. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4484. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4485. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4486. for (i = 0; i < childs.length; i++) {
  4487. //如果竖排top超过了范围处理
  4488. if (top + 95 > US.height - 10) {
  4489. //left超过了页面范围处理,则向上重叠打印处理
  4490. if ((left + 180) > US.width) {
  4491. top -= 110;
  4492. left -= 90;
  4493. }
  4494. //没有超过范围,那么left+90添加到下一个竖排打印
  4495. else {
  4496. left += 90;
  4497. top = 15;
  4498. };
  4499. }
  4500. //给图标的位置赋值
  4501. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4502. if (i < childs.length - 1) {
  4503. //页面图标每次向下加95
  4504. top += 95;
  4505. }
  4506. }
  4507. //返回最后调用的图标的位置
  4508. return [top, left];
  4509. }
  4510. /**
  4511. * 桌面排列图标
  4512. *
  4513. * @param {element} 桌面元素
  4514. * @param {object} 上下相距的距离
  4515. * @param {object} 左右相距的距离
  4516. * @return {object} 命名空间
  4517. */
  4518. U.MD.D.iconPostion2 = function (childs, top, left) {
  4519. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4520. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4521. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4522. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4523. for (i = 0; i < childs.length; i++) {
  4524. //如果竖排top超过了范围处理
  4525. if (left + 150 > US.width - 10) {
  4526. //left超过了页面范围处理,则向上重叠打印处理
  4527. if ((top + 180) > US.Height) {
  4528. top -= 150;
  4529. left -= 150;
  4530. }
  4531. //没有超过范围,那么left+90添加到下一个竖排打印
  4532. else {
  4533. top += 150;
  4534. left = ol;
  4535. };
  4536. }
  4537. //给图标的位置赋值
  4538. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4539. if (i < childs.length - 1) {
  4540. //页面图标每次向下加95
  4541. left += 150;
  4542. }
  4543. }
  4544. //返回最后调用的图标的位置
  4545. return [top, left];
  4546. }
  4547. /**
  4548. * 桌面点击事件逻辑
  4549. *
  4550. * @param {element} 桌面元素
  4551. * @param {object} 上下相距的距离
  4552. * @param {object} 左右相距的距离
  4553. * @return {object} 命名空间
  4554. */
  4555. U.MD.D.click = function (el, obj) {
  4556. var _buttonnumber = event.button; //点击的按钮的事件值
  4557. var _userinfo = US.userInfo;
  4558. U.UF.EV.stopBubble(); //阻止向上冒泡
  4559. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4560. if (_buttonnumber < 2) {
  4561. //如果是click事件的处理
  4562. if (event.type == "click") {
  4563. //如果元素在mousemove事件中没有移动则出发click事件
  4564. if (!U.MD.D.I.IsDrag) {
  4565. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4566. U.alert("请先登录您的账号!");
  4567. setTimeout(() => {
  4568. U.MD.U.L.login();
  4569. }, 2000);
  4570. } else {
  4571. //打开应用处理
  4572. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4573. }
  4574. }
  4575. }
  4576. //如果是mouse事件的处理
  4577. else {
  4578. if (US.Config.type == '1') {
  4579. //拖动处理,添加拖动和拖动结束事件
  4580. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4581. }
  4582. }
  4583. U.MD.D.I.IsDrag = false;
  4584. }
  4585. }
  4586. /**
  4587. * 拖动的处理
  4588. *
  4589. */
  4590. U.MD.D.iconMove = function () {
  4591. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4592. U.MD.D.I.IsDrag = true;
  4593. }
  4594. /**
  4595. * 拖动结束后,这里是定位处理,以网状的形式定位
  4596. *
  4597. * @param {element} 拖动的元素
  4598. * @return {object} 命名空间
  4599. */
  4600. U.MD.D.iconUp = function (el) {
  4601. var _top = 15,
  4602. _left = 20,
  4603. _margin,
  4604. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4605. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4606. if (_positioninfo["OT"] > 15) {
  4607. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4608. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4609. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4610. }
  4611. if (_positioninfo["OL"] > 20) {
  4612. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4613. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4614. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4615. }
  4616. //while循环判断么一个重叠的元素
  4617. do {
  4618. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4619. _top = _positioninfo[0] + 95; //得到定位后的top
  4620. _left = _positioninfo[1]; //得到定位后的left
  4621. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4622. }
  4623. /**
  4624. * 判断拖动后图标是否重叠
  4625. *
  4626. * @param {element} 拖动的元素
  4627. * @param {element} 桌面所有的元素
  4628. * @param {array} 拖动元素的位置
  4629. ----------[0] 上 top
  4630. ----------[1] 左 left
  4631. * @return {object} 命名空间
  4632. */
  4633. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4634. //循环所有的图标
  4635. for (var i = 0; i < childs.length; i++) {
  4636. //判断有没有和该图标诶子重叠的元素
  4637. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4638. return childs[i]; //如果有返回
  4639. }
  4640. }
  4641. }
  4642. //#endregion
  4643. //#endregion
  4644. //#region 桌面应用
  4645. /**
  4646. * 打开应用
  4647. *
  4648. * @param {string} 类型
  4649. -----------------Disk 网盘系统
  4650. -----------------PDisk 学习系统网盘
  4651. -----------------Poto 图片
  4652. -----------------Video 视频
  4653. -----------------Music 音乐
  4654. -----------------Word word
  4655. -----------------Excel excel
  4656. -----------------Txt 记事本
  4657. -----------------PB 学习系统
  4658. -----------------Blog 朋友圈系统
  4659. -----------------FTP ftp系统
  4660. -----------------Group 好友群
  4661. -----------------SY 首页系统
  4662. -----------------Set 个人设置
  4663. -----------------XSet 系统设置
  4664. -----------------App 我们所有的app
  4665. -----------------BC c.1473.cn 平台
  4666. -----------------CWeb d.1473.cn 变成平台
  4667. -----------------其他的外联系统 我们统一用iframe打开
  4668. * @param {array} 类型
  4669. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4670. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4671. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4672. 如果第一个参数为其他,则无第二个参数
  4673. * @returns {array}
  4674. */
  4675. window.addEventListener('message', function (e) { // 监听 message 事件
  4676. // alert(e.data.type);
  4677. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4678. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4679. //3是展示全部阶段 2学生 1老师 4专家
  4680. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4681. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4682. //3是展示全部阶段 2学生 1老师 4专家
  4683. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4684. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4685. //3是展示全部阶段 2学生 1老师 4专家
  4686. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4687. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4688. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4689. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4690. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4691. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4692. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4693. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4694. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4695. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4696. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4697. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4698. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4699. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4700. //3是展示全部阶段 2学生 1老师 4专家
  4701. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4702. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4703. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4704. U.MD.D.I.selectUser();
  4705. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4706. var _formel = document.getElementById("study");
  4707. U.UF.F.windowZooming(_formel);
  4708. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4709. var _formel = document.getElementById("studyDetail");
  4710. U.UF.F.windowZooming(_formel);
  4711. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4712. var _formel = document.getElementById("studyDetail");
  4713. U.UF.F.windowZooming(_formel);
  4714. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4715. var _formel = document.getElementById("studentStudy");
  4716. U.UF.F.windowZooming(_formel);
  4717. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4718. // var _formel = document.getElementById("study");
  4719. //如果最大化了,那么就把他缩小
  4720. // if (_formel.ismaximize) {
  4721. // return;
  4722. // }
  4723. // U.UF.F.windowZooming(_formel);
  4724. // U.UF.F.topWindow(_formel);
  4725. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4726. // var _formel = document.getElementById("studyDetail");
  4727. //如果最大化了,那么就把他缩小
  4728. // if (_formel.ismaximize) {
  4729. // return;
  4730. // }
  4731. // U.UF.F.windowZooming(_formel);
  4732. // U.UF.F.topWindow(_formel);
  4733. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4734. // var _formel = document.getElementById("studentStudy");
  4735. // if (_formel.ismaximize) {
  4736. // return;
  4737. // }
  4738. // U.UF.F.windowZooming(_formel);
  4739. // U.UF.F.topWindow(_formel);
  4740. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4741. var _formel = document.getElementById("study");
  4742. // if (_formel.ismaximize) {
  4743. // return;
  4744. // }
  4745. // U.UF.F.windowZooming(_formel);
  4746. U.UF.F.topWindow(_formel);
  4747. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4748. var _formel = document.getElementById("studentIndex");
  4749. U.UF.F.windowZooming(_formel);
  4750. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4751. var _formel = document.getElementById("studyDetailS");
  4752. U.UF.F.windowZooming(_formel);
  4753. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4754. var _formel = document.getElementById("studioIndex");
  4755. U.UF.F.windowZooming(_formel);
  4756. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4757. var _formel = document.getElementById("studyDetailStudio");
  4758. U.UF.F.windowZooming(_formel);
  4759. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4760. var _formel = document.getElementById("studyDetailStudio");
  4761. U.UF.F.windowZooming(_formel);
  4762. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4763. var _formel = document.getElementById("studyDetailNT");
  4764. U.UF.F.windowZooming(_formel);
  4765. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4766. var _formel = document.getElementById("studyDetailS");
  4767. U.UF.F.windowZooming(_formel);
  4768. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4769. var _formel = document.getElementById("studyDetailS");
  4770. U.UF.F.topWindow(_formel);
  4771. } else if (e.data.tools && e.data.tools == "1") {
  4772. // U.MD.D.I.openApplication("whiteboard")
  4773. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4774. } else if (e.data.tools && e.data.tools == "2") {
  4775. U.MD.D.I.openApplication("note")
  4776. } else if (e.data.tools && e.data.tools == "3") {
  4777. // U.MD.D.I.openApplication("mind")
  4778. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4779. } else if (e.data.tools && e.data.tools == "4") {
  4780. U.MD.D.I.openApplication("investigation")
  4781. } else if (e.data.tools && e.data.tools == "6") {
  4782. // U.MD.D.I.openApplication("doc")
  4783. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4784. } else if (e.data.tools && e.data.tools == "7") {
  4785. // U.MD.D.I.openApplication("mindNetwork")
  4786. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4787. } else if (e.data.tools && e.data.tools == "8") {
  4788. U.MD.D.I.openApplication("library")
  4789. } else if (e.data.tools && e.data.tools == "17") {
  4790. U.MD.D.I.openApplication("stuLibrary")
  4791. } else if (e.data.tools && e.data.tools == "18") {
  4792. U.MD.D.I.openApplication("train")
  4793. } else if (e.data.tools && e.data.tools == "21") {
  4794. U.MD.D.I.openApplication("program")
  4795. } else if (e.data.tools && e.data.tools == "22") {
  4796. U.MD.D.I.openApplication("AIprogram2")
  4797. } else if (e.data.tools && e.data.tools == "23") {
  4798. U.MD.D.I.openApplication("Pythonprogram")
  4799. } else if (e.data.tools && e.data.tools == "24") {
  4800. U.MD.D.I.openApplication("AIprogram")
  4801. } else if (e.data.tools && e.data.tools == "25") {
  4802. U.MD.D.I.openApplication("sys")
  4803. } else if (e.data.tools && e.data.tools == "26") {
  4804. // U.MD.D.I.openApplication("courseDesign")
  4805. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4806. } else if (e.data.tools && e.data.tools == "31") {
  4807. U.MD.D.I.openApplication("netWorkPanel")
  4808. } else if (e.data.tools && e.data.tools == "32") {
  4809. U.MD.D.I.openApplication("codeEdit")
  4810. } else if (e.data.tools && e.data.tools == "57") {
  4811. U.MD.D.I.openApplication("CocoPi")
  4812. } else if (e.data.tools && e.data.tools == "63") {
  4813. U.MD.D.I.openApplication("Wood")
  4814. } else if (e.data.tools && e.data.tools == "58") {
  4815. U.MD.D.I.openApplication("car")
  4816. } else if (e.data.tools && e.data.tools == "59") {
  4817. U.MD.D.I.openApplication("lineSearch")
  4818. } else if (e.data.tools && e.data.tools == "60") {
  4819. U.MD.D.I.openApplication("deepLearning")
  4820. } else if (e.data.tools && e.data.tools == "61") {
  4821. U.MD.D.I.openApplication("allHistory")
  4822. } else if (e.data.tools && e.data.tools == "28") {
  4823. U.MD.D.I.openApplication("translation")
  4824. } else if (e.data.tools && e.data.tools == "37") {
  4825. U.MD.D.I.openApplication("mohe")
  4826. } else if (e.data.tools && e.data.tools == "38") {
  4827. U.MD.D.I.openApplication("24game")
  4828. } else if (e.data.tools && e.data.tools == "39") {
  4829. U.MD.D.I.openApplication("GeoGebra")
  4830. } else if (e.data.tools && e.data.tools == "43") {
  4831. U.MD.D.I.openApplication("studentEvaluate")
  4832. } else if (e.data.tools && e.data.tools == "44") {
  4833. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4834. } else if (e.data.tools && e.data.tools == "46") {
  4835. U.MD.D.I.openApplication("project")
  4836. } else if (e.data.tools && e.data.tools == "71") {
  4837. U.MD.D.I.openApplication("aigptCourse")
  4838. } else if (e.data.tools && e.data.tools == "1s") {
  4839. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4840. } else if (e.data.tools && e.data.tools == "3s") {
  4841. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4842. } else if (e.data.tools && e.data.tools == "6s") {
  4843. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4844. } else if (e.data.tools && e.data.tools == "1studio") {
  4845. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4846. } else if (e.data.tools && e.data.tools == "3studio") {
  4847. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4848. } else if (e.data.tools && e.data.tools == "6studio") {
  4849. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4850. } else if (e.data.tools && e.data.tools == "3y") {
  4851. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4852. } else if (e.data.tools && e.data.tools == "1y") {
  4853. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4854. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4855. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4856. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4857. U.MD.D.I.openApplication("AIAnalyse")
  4858. } else if (e.data.tools && e.data.tools == "1teacher") {
  4859. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4860. } else if (e.data.tools && e.data.tools == "3teacher") {
  4861. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4862. } else if (e.data.tools && e.data.tools == "7teacher") {
  4863. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4864. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4865. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4866. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4867. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4868. } else if (e.data.tools && e.data.tools == "1E") {
  4869. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4870. } else if (e.data.tools && e.data.tools == "3E") {
  4871. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4872. } else if (e.data.tools && e.data.tools == "57y") {
  4873. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4874. } else if (e.data.tools && e.data.tools == "57u") {
  4875. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4876. } else if (e.data.tools && e.data.tools == "57teacher") {
  4877. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4878. } else if (e.data.tools && e.data.tools == "64") {
  4879. U.MD.D.I.openApplication("AIChat")
  4880. } else if (e.data.tools && e.data.tools == "66") {
  4881. U.MD.D.I.openApplication("formulaEdi")
  4882. } else if (e.data.tools && e.data.tools == "67") {
  4883. U.MD.D.I.openApplication("molStr")
  4884. } else if (e.data.tools && e.data.tools == "68") {
  4885. U.MD.D.I.openApplication("timeAxis")
  4886. } else if (e.data.tools && e.data.tools == "openCourse") {
  4887. let _data = {
  4888. typea: e.data.typea || '',
  4889. typeb: e.data.typeb || '',
  4890. typed: e.data.typed || '',
  4891. }
  4892. U.MD.D.I.openInApplication("index", _data)
  4893. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4894. let _data = {
  4895. classid: e.data.classid || '',
  4896. }
  4897. U.MD.D.I.openInApplication("dataClass", _data)
  4898. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4899. let _data = {
  4900. cid: e.data.cid || '',
  4901. gid: e.data.gid || '',
  4902. }
  4903. U.MD.D.I.openInApplication("opencCscl", _data)
  4904. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4905. U.MD.D.I.openApplication("dataBoardTest")
  4906. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4907. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4908. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4909. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4910. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4911. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4912. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4913. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4914. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4915. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4916. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4917. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4918. }else if (e.data.tools && e.data.tools == "loginSz") {
  4919. U.MD.D.I.openInApplication("loginSz")
  4920. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4921. if($('#classroom_observation_board')[0]){
  4922. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4923. }
  4924. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4925. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4926. if($('#classroom_observation_ob_comment')[0]){
  4927. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4928. }
  4929. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4930. }else if (e.data.tools && e.data.tools == "logout"){
  4931. U.MD.U.LO.logoutSystem()
  4932. }else if (e.data.tools && e.data.tools == "getLogin"){
  4933. let _iframe = $('#UI_Login')[0];
  4934. if (_iframe) {
  4935. var userInfo = US.userInfo;
  4936. var type = 2
  4937. if(userInfo && userInfo.userid){
  4938. type = 1
  4939. }
  4940. _contentWindow = _iframe.contentWindow;
  4941. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4942. }
  4943. }
  4944. });
  4945. U.MD.D.I.selectUser = function () {
  4946. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4947. if (res.value[0].length > 0) {
  4948. US.userInfo = res.value[0][0];
  4949. $(".userName")[0].innerHTML = US.userInfo.username;
  4950. }
  4951. }, [], { "type": "GET", "withCredentials": true });
  4952. }
  4953. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4954. var _userinfo = US.userInfo, //登录用户信息
  4955. _userid = US.userInfo.userid, //登录用户id
  4956. _oid = _userinfo.organizeid,
  4957. _type = US.userInfo.type,
  4958. _org = US.userInfo.org,
  4959. _role = US.userInfo.role,
  4960. _classId = US.userInfo.classid;
  4961. if (_type == 4) {
  4962. tType = 4
  4963. }
  4964. switch (str) {
  4965. case "studyDetailNT": //无终端模式
  4966. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4967. setTimeout(() => {
  4968. U.MD.U.L.login();
  4969. }, 2000);
  4970. } else {
  4971. _formdiv = new U.UF.UI.form(
  4972. "课程详情",
  4973. $$("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 }), {
  4974. "id": "studyDetailNT",
  4975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () { }
  4979. }, { "style": { "height": "36px" } }).form; //创建窗体
  4980. _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); } }
  4981. break;
  4982. }
  4983. case "studyDetail":
  4984. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4985. setTimeout(() => {
  4986. U.MD.U.L.login();
  4987. }, 2000);
  4988. } else {
  4989. _formdiv = new U.UF.UI.form(
  4990. "课程详情",
  4991. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4992. "id": "studyDetail",
  4993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. _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); } }
  4999. break;
  5000. }
  5001. case "studyDetailTrain":
  5002. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5003. setTimeout(() => {
  5004. U.MD.U.L.login();
  5005. }, 2000);
  5006. } else {
  5007. _formdiv = new U.UF.UI.form(
  5008. "培训详情",
  5009. $$("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 }), {
  5010. "id": "studyDetailTrain",
  5011. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. _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); } }
  5017. break;
  5018. }
  5019. case "studyDetailS":
  5020. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5021. setTimeout(() => {
  5022. U.MD.U.L.login();
  5023. }, 2000);
  5024. } else {
  5025. _formdiv = new U.UF.UI.form(
  5026. "项目详情",
  5027. $$("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 }), {
  5028. "id": "studyDetailS",
  5029. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _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); } }
  5035. break;
  5036. }
  5037. case "studyDetailStudio":
  5038. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5039. setTimeout(() => {
  5040. U.MD.U.L.login();
  5041. }, 2000);
  5042. } else {
  5043. _formdiv = new U.UF.UI.form(
  5044. "工作详情",
  5045. $$("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 }), {
  5046. "id": "studyDetailStudio",
  5047. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. _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); } }
  5053. break;
  5054. }
  5055. case "studyDetailS5":
  5056. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5057. setTimeout(() => {
  5058. U.MD.U.L.login();
  5059. }, 2000);
  5060. } else {
  5061. _formdiv = new U.UF.UI.form(
  5062. "项目详情",
  5063. $$("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 }), {
  5064. "id": "studyDetailS",
  5065. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _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); } }
  5071. break;
  5072. }
  5073. case "studyDetailGM":
  5074. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5075. setTimeout(() => {
  5076. U.MD.U.L.login();
  5077. }, 2000);
  5078. } else {
  5079. _formdiv = new U.UF.UI.form(
  5080. "课程详情",
  5081. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5082. "id": "studyDetail",
  5083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //创建窗体
  5088. _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); } }
  5089. break;
  5090. }
  5091. case "hanUrl":
  5092. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5093. setTimeout(() => {
  5094. U.MD.U.L.login();
  5095. }, 2000);
  5096. } else {
  5097. _formdiv = new U.UF.UI.form(
  5098. "汉字宫",
  5099. $$("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" }), {
  5100. "id": "hanUrl",
  5101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _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); } }
  5107. break;
  5108. }
  5109. case "index":
  5110. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5111. setTimeout(() => {
  5112. U.MD.U.L.login();
  5113. }, 2000);
  5114. } else {
  5115. _formdiv = new U.UF.UI.form(
  5116. "课程中心",
  5117. $$("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 }), {
  5118. "id": "study",
  5119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _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); } }
  5125. break;
  5126. }
  5127. case "dataClass":
  5128. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5129. setTimeout(() => {
  5130. U.MD.U.L.login();
  5131. }, 2000);
  5132. } else {
  5133. _formdiv = new U.UF.UI.form(
  5134. "数据报告",
  5135. $$("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 }), {
  5136. "id": "dataClass",
  5137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. }
  5145. case "opencCscl":
  5146. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5147. setTimeout(() => {
  5148. U.MD.U.L.login();
  5149. }, 2000);
  5150. } else {
  5151. _formdiv = new U.UF.UI.form(
  5152. "协同建构",
  5153. $$("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 }), {
  5154. "id": "futureClass",
  5155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. break;
  5162. }
  5163. case "openCourseUpdate":
  5164. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5165. setTimeout(() => {
  5166. U.MD.U.L.login();
  5167. }, 2000);
  5168. } else {
  5169. _formdiv = new U.UF.UI.form(
  5170. "课程管理",
  5171. $$("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 }), {
  5172. "id": "openCourseUpdate",
  5173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. break;
  5179. }
  5180. case "openNewCourseUpdate":
  5181. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5182. setTimeout(() => {
  5183. U.MD.U.L.login();
  5184. }, 2000);
  5185. } else {
  5186. _formdiv = new U.UF.UI.form(
  5187. "课程管理",
  5188. $$("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 }), {
  5189. "id": "openCourseUpdate",
  5190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. break;
  5196. }
  5197. case "openCourseEUpdate":
  5198. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5199. setTimeout(() => {
  5200. U.MD.U.L.login();
  5201. }, 2000);
  5202. } else {
  5203. _formdiv = new U.UF.UI.form(
  5204. "课程管理",
  5205. $$("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 }), {
  5206. "id": "openCourseUpdate",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. break;
  5213. }
  5214. case "openCourseAiUpdate":
  5215. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5216. setTimeout(() => {
  5217. U.MD.U.L.login();
  5218. }, 2000);
  5219. } else {
  5220. _formdiv = new U.UF.UI.form(
  5221. "课程管理",
  5222. $$("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 }), {
  5223. "id": "openCourseUpdate",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. break;
  5230. }
  5231. case "openCourseAiUpdate2":
  5232. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5233. setTimeout(() => {
  5234. U.MD.U.L.login();
  5235. }, 2000);
  5236. } else {
  5237. _formdiv = new U.UF.UI.form(
  5238. "课程管理",
  5239. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5240. "id": "openCourseUpdate",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. break;
  5247. }
  5248. case "openCourseNewUpdate":
  5249. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5250. setTimeout(() => {
  5251. U.MD.U.L.login();
  5252. }, 2000);
  5253. } else {
  5254. _formdiv = new U.UF.UI.form(
  5255. "课程管理",
  5256. $$("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 }), {
  5257. "id": "openCourseUpdate",
  5258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //创建窗体
  5263. break;
  5264. }
  5265. case "inviteLoginSz":
  5266. _formdiv = new U.UF.UI.form(
  5267. "随机码登录",
  5268. $$("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 }), {
  5269. "id": "loginSz",
  5270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. break;
  5276. case "loginSz":
  5277. _formdiv = new U.UF.UI.form(
  5278. "教师登录",
  5279. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5280. "id": "loginSz",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. break;
  5287. case "teacher":
  5288. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5289. setTimeout(() => {
  5290. U.MD.U.L.login();
  5291. }, 2000);
  5292. } else {
  5293. _formdiv = new U.UF.UI.form(
  5294. "教师管理",
  5295. $$("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 }), {
  5296. "id": "teacher",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. break;
  5303. }
  5304. case "dataBoardSZArea":
  5305. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5306. setTimeout(() => {
  5307. U.MD.U.L.login();
  5308. }, 2000);
  5309. } else {
  5310. _formdiv = new U.UF.UI.form(
  5311. "综合数据看板",
  5312. $$("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 }), {
  5313. "id": "dataBoardSZArea",
  5314. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. break;
  5320. }
  5321. case "dataBoardSZCity":
  5322. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5323. setTimeout(() => {
  5324. U.MD.U.L.login();
  5325. }, 2000);
  5326. } else {
  5327. _formdiv = new U.UF.UI.form(
  5328. "综合数据看板",
  5329. $$("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 }), {
  5330. "id": "dataBoardSZCity",
  5331. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. break;
  5337. }
  5338. case "classroom_observation_board":
  5339. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5340. setTimeout(() => {
  5341. U.MD.U.L.login();
  5342. }, 2000);
  5343. } else {
  5344. _formdiv = new U.UF.UI.form(
  5345. "课堂观察",
  5346. $$("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 }), {
  5347. "id": "classroom_observation_board",
  5348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. break;
  5354. }
  5355. case "classroom_observation_ob_comment":
  5356. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5357. setTimeout(() => {
  5358. U.MD.U.L.login();
  5359. }, 2000);
  5360. } else {
  5361. _formdiv = new U.UF.UI.form(
  5362. "课堂审核",
  5363. $$("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 }), {
  5364. "id": "classroom_observation_ob_comment",
  5365. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. break;
  5371. }
  5372. }
  5373. }
  5374. U.MD.D.I.openApplication = function (str, obj, info) {
  5375. obj = obj || {};
  5376. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5377. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5378. _userinfo = US.userInfo, //登录用户信息
  5379. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5380. _oid = obj.organizeid || _userinfo.organizeid,
  5381. _type = US.userInfo.type,
  5382. _org = US.userInfo.org,
  5383. _role = US.userInfo.role,
  5384. _classId = US.userInfo.classid,
  5385. _TscreenType = 1
  5386. _screenType = 2,
  5387. _SscreenType = 3;
  5388. let iframeBool = true
  5389. if(U.UF.UI.form.allForm[str]){
  5390. iframeBool = false
  5391. }
  5392. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5393. return;
  5394. }
  5395. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5396. switch (str) {
  5397. case "studnetProject": //好友打开
  5398. _formdiv = new U.UF.UI.form(
  5399. "我的项目",
  5400. $$("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 }), {
  5401. "id": "studnetProject",
  5402. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. _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); } }
  5408. break;
  5409. case "studentEvaluate": //好友打开
  5410. _formdiv = new U.UF.UI.form(
  5411. "我的评价",
  5412. $$("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 }), {
  5413. "id": "studentEvaluate",
  5414. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //创建窗体
  5419. _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); } }
  5420. break;
  5421. case "my":
  5422. _formdiv = new U.UF.UI.form(
  5423. "我的资料",
  5424. $$("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 }), {
  5425. "id": "my",
  5426. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. _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); } }
  5432. break;
  5433. case "program":
  5434. _formdiv = new U.UF.UI.form(
  5435. "编程平台",
  5436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5437. "id": "program",
  5438. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5439. "onresize": function () { }
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _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); } }
  5444. break;
  5445. case "library":
  5446. _formdiv = new U.UF.UI.form(
  5447. "素材库",
  5448. $$("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 }), {
  5449. "id": "library",
  5450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _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); } }
  5456. break;
  5457. case "whiteboard":
  5458. _formdiv = new U.UF.UI.form(
  5459. "电子白板",
  5460. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5461. "id": "whiteboard",
  5462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5468. break;
  5469. case "investigation":
  5470. _formdiv = new U.UF.UI.form(
  5471. "问卷调查",
  5472. $$("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 }), {
  5473. "id": "investigation",
  5474. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "note":
  5482. _formdiv = new U.UF.UI.form(
  5483. "便签分类",
  5484. $$("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 }), {
  5485. "id": "note",
  5486. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. // case "score":
  5494. // _formdiv = new U.UF.UI.form(
  5495. // "量规评分",
  5496. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5497. // "id": "score",
  5498. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. // "onresize": function() {}
  5500. // }, {
  5501. // closecallback: function() {}
  5502. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5504. // break;
  5505. case "mind":
  5506. _formdiv = new U.UF.UI.form(
  5507. "思维导图",
  5508. $$("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"
  5509. "id": "mind",
  5510. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. case "doc":
  5518. // U.MD.D.I.isRoom();
  5519. _formdiv = new U.UF.UI.form(
  5520. "协同文档",
  5521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5522. "id": "doc",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5529. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5530. // })
  5531. _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); } }
  5532. break;
  5533. case "studentStudy":
  5534. _formdiv = new U.UF.UI.form(
  5535. "课程中心",
  5536. $$("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
  5537. "id": "studentStudy",
  5538. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5544. break;
  5545. case "train": //好友打开
  5546. _formdiv = new U.UF.UI.form(
  5547. "训练平台",
  5548. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5549. "id": "train",
  5550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5556. break;
  5557. case "mindNetwork": //好友打开
  5558. _formdiv = new U.UF.UI.form(
  5559. "思维网格",
  5560. $$("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 }), {
  5561. "id": "mindNetwork",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5568. break;
  5569. case "studentClassRoom": //好友打开
  5570. _formdiv = new U.UF.UI.form(
  5571. "实时课堂",
  5572. $$("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 }), {
  5573. "id": "studentClassRoom",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //创建窗体
  5579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5580. setTimeout(() => {
  5581. U.UF.F.windowZooming(_formdiv)
  5582. }, 0);
  5583. break;
  5584. }
  5585. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5586. switch (str) {
  5587. case "studnetProject": //好友打开
  5588. _formdiv = new U.UF.UI.form(
  5589. "我的项目",
  5590. $$("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 }), {
  5591. "id": "studnetProject",
  5592. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "studentEvaluate": //好友打开
  5600. _formdiv = new U.UF.UI.form(
  5601. "我的评价",
  5602. $$("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 }), {
  5603. "id": "studentEvaluate",
  5604. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "my":
  5612. _formdiv = new U.UF.UI.form(
  5613. "我的资料",
  5614. $$("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 }), {
  5615. "id": "my",
  5616. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. case "program":
  5624. _formdiv = new U.UF.UI.form(
  5625. "编程平台",
  5626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5627. "id": "program",
  5628. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. case "library":
  5636. _formdiv = new U.UF.UI.form(
  5637. "素材库",
  5638. $$("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 }), {
  5639. "id": "library",
  5640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _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); } }
  5646. break;
  5647. case "whiteboard":
  5648. _formdiv = new U.UF.UI.form(
  5649. "电子白板",
  5650. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5651. "id": "whiteboard",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "investigation":
  5660. _formdiv = new U.UF.UI.form(
  5661. "问卷调查",
  5662. $$("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 }), {
  5663. "id": "investigation",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. break;
  5671. case "note":
  5672. _formdiv = new U.UF.UI.form(
  5673. "便签分类",
  5674. $$("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 }), {
  5675. "id": "note",
  5676. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. // case "score":
  5684. // _formdiv = new U.UF.UI.form(
  5685. // "量规评分",
  5686. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5687. // "id": "score",
  5688. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. // "onresize": function() {}
  5690. // }, {
  5691. // closecallback: function() {}
  5692. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. // _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); } }
  5694. // break;
  5695. case "mind":
  5696. _formdiv = new U.UF.UI.form(
  5697. "思维导图",
  5698. $$("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"
  5699. "id": "mind",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. _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); } }
  5706. break;
  5707. case "doc":
  5708. // U.MD.D.I.isRoom();
  5709. _formdiv = new U.UF.UI.form(
  5710. "协同文档",
  5711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5712. "id": "doc",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5719. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5720. })
  5721. _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); } }
  5722. break;
  5723. case "train": //好友打开
  5724. _formdiv = new U.UF.UI.form(
  5725. "训练平台",
  5726. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5727. "id": "train",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. _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); } }
  5734. break;
  5735. case "studentStudy":
  5736. _formdiv = new U.UF.UI.form(
  5737. "课程中心",
  5738. $$("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
  5739. "id": "studentStudy",
  5740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5741. "onresize": function () { }
  5742. }, {
  5743. closecallback: function () { }
  5744. }, { "style": { "height": "36px" } }).form; //创建窗体
  5745. _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); } }
  5746. break;
  5747. case "mindNetwork": //好友打开
  5748. _formdiv = new U.UF.UI.form(
  5749. "思维网格",
  5750. $$("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 }), {
  5751. "id": "mindNetwork",
  5752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _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); } }
  5758. break;
  5759. case "studentClassRoom": //好友打开
  5760. _formdiv = new U.UF.UI.form(
  5761. "实时课堂",
  5762. $$("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 }), {
  5763. "id": "studentClassRoom",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _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); } }
  5770. setTimeout(() => {
  5771. U.UF.F.windowZooming(_formdiv)
  5772. }, 0);
  5773. break;
  5774. }
  5775. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5776. //选择应用处理
  5777. switch (str) {
  5778. case "project": //好友打开
  5779. _formdiv = new U.UF.UI.form(
  5780. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5781. $$("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 }), {
  5782. "id": "project",
  5783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. case "student":
  5791. _formdiv = new U.UF.UI.form(
  5792. "学生管理",
  5793. $$("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 }), {
  5794. "id": "student",
  5795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5796. "onresize": function () { }
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. _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); } }
  5801. break;
  5802. case "evaluate":
  5803. _formdiv = new U.UF.UI.form(
  5804. "学生评价",
  5805. $$("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 }), {
  5806. "id": "evaluate",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _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); } }
  5813. break;
  5814. case "sys":
  5815. _formdiv = new U.UF.UI.form(
  5816. "目标管理",
  5817. $$("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 }), {
  5818. "id": "sys",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5825. break;
  5826. case "courseDesign":
  5827. _formdiv = new U.UF.UI.form(
  5828. "项目设计",
  5829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5830. "id": "courseDesign",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5837. break;
  5838. case "program":
  5839. _formdiv = new U.UF.UI.form(
  5840. "编程平台",
  5841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5842. "id": "program",
  5843. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5849. break;
  5850. case "class":
  5851. _formdiv = new U.UF.UI.form(
  5852. "班级管理",
  5853. $$("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 }), {
  5854. "id": "class",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5861. break;
  5862. case "Grade":
  5863. _formdiv = new U.UF.UI.form(
  5864. "年级管理",
  5865. $$("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 }), {
  5866. "id": "Grade",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. break;
  5874. case "teacherOffice":
  5875. _formdiv = new U.UF.UI.form(
  5876. "教研室",
  5877. $$("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 }), {
  5878. "id": "teacherOffice",
  5879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "my":
  5887. _formdiv = new U.UF.UI.form(
  5888. "我的资料",
  5889. $$("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 }), {
  5890. "id": "my",
  5891. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "notice":
  5899. _formdiv = new U.UF.UI.form(
  5900. "通知公告",
  5901. $$("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 }), {
  5902. "id": "notice",
  5903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5909. break;
  5910. case "library":
  5911. _formdiv = new U.UF.UI.form(
  5912. "素材库",
  5913. $$("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 }), {
  5914. "id": "library",
  5915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5916. "onresize": function () { }
  5917. }, {
  5918. closecallback: function () { }
  5919. }, { "style": { "height": "36px" } }).form; //创建窗体
  5920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5921. break;
  5922. case "whiteboard":
  5923. _formdiv = new U.UF.UI.form(
  5924. "电子白板",
  5925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5926. "id": "whiteboard",
  5927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5928. "onresize": function () { }
  5929. }, {
  5930. closecallback: function () { }
  5931. }, { "style": { "height": "36px" } }).form; //创建窗体
  5932. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5933. break;
  5934. case "investigation":
  5935. _formdiv = new U.UF.UI.form(
  5936. "问卷调查",
  5937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5938. "id": "investigation",
  5939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5945. break;
  5946. case "note":
  5947. _formdiv = new U.UF.UI.form(
  5948. "便签分类",
  5949. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5950. "id": "note",
  5951. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //创建窗体
  5956. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5957. break;
  5958. // case "score":
  5959. // _formdiv = new U.UF.UI.form(
  5960. // "量规评分",
  5961. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5962. // "id": "score",
  5963. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. // "onresize": function() {}
  5965. // }, {
  5966. // closecallback: function() {}
  5967. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5969. // break;
  5970. case "mind":
  5971. _formdiv = new U.UF.UI.form(
  5972. "思维导图",
  5973. $$("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"
  5974. "id": "mind",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "doc":
  5983. // U.MD.D.I.isRoom();
  5984. _formdiv = new U.UF.UI.form(
  5985. "协同文档",
  5986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5987. "id": "doc",
  5988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //创建窗体
  5993. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5994. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5995. })
  5996. _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); } }
  5997. break;
  5998. case "study":
  5999. _formdiv = new U.UF.UI.form(
  6000. "课程中心",
  6001. $$("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
  6002. "id": "study",
  6003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "mindNetwork": //好友打开
  6011. _formdiv = new U.UF.UI.form(
  6012. "思维网格",
  6013. $$("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 }), {
  6014. "id": "mindNetwork",
  6015. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. case "train": //好友打开
  6023. _formdiv = new U.UF.UI.form(
  6024. "训练平台",
  6025. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6026. "id": "mindNetwork",
  6027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _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); } }
  6033. break;
  6034. case "teacherClassRoom": //好友打开
  6035. _formdiv = new U.UF.UI.form(
  6036. "实时课堂",
  6037. $$("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 }), {
  6038. "id": "teacherClassRoom",
  6039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. setTimeout(() => {
  6046. U.UF.F.windowZooming(_formdiv)
  6047. }, 0);
  6048. break;
  6049. }
  6050. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6051. switch (str) {
  6052. case "project": //好友打开
  6053. _formdiv = new U.UF.UI.form(
  6054. "课程管理",
  6055. $$("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 }), {
  6056. "id": "project",
  6057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. case "evaluate":
  6065. _formdiv = new U.UF.UI.form(
  6066. "学生评价",
  6067. $$("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 }), {
  6068. "id": "evaluate",
  6069. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. _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); } }
  6075. break;
  6076. case "notice":
  6077. _formdiv = new U.UF.UI.form(
  6078. "通知公告",
  6079. $$("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 }), {
  6080. "id": "notice",
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "stuLibrary":
  6089. _formdiv = new U.UF.UI.form(
  6090. "学习资料",
  6091. $$("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 }), {
  6092. "id": "stuLibrary",
  6093. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "program":
  6101. _formdiv = new U.UF.UI.form(
  6102. "编程平台",
  6103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6104. "id": "program",
  6105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break;
  6112. case "whiteboard":
  6113. _formdiv = new U.UF.UI.form(
  6114. "电子白板",
  6115. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6116. "id": "whiteboard",
  6117. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "investigation":
  6125. _formdiv = new U.UF.UI.form(
  6126. "问卷调查",
  6127. $$("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 }), {
  6128. "id": "investigation",
  6129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "mind":
  6137. _formdiv = new U.UF.UI.form(
  6138. "思维导图",
  6139. $$("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"
  6140. "id": "mind",
  6141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "doc":
  6149. // U.MD.D.I.isRoom();
  6150. _formdiv = new U.UF.UI.form(
  6151. "协同文档",
  6152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6153. "id": "doc",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6160. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6161. })
  6162. _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); } }
  6163. break;
  6164. case "study":
  6165. _formdiv = new U.UF.UI.form(
  6166. "课程中心",
  6167. $$("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
  6168. "id": "study",
  6169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _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); } }
  6175. break;
  6176. case "mindNetwork": //好友打开
  6177. _formdiv = new U.UF.UI.form(
  6178. "思维网格",
  6179. $$("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 }), {
  6180. "id": "mindNetwork",
  6181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _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); } }
  6187. break;
  6188. case "train": //好友打开
  6189. _formdiv = new U.UF.UI.form(
  6190. "训练平台",
  6191. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6192. "id": "train",
  6193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //创建窗体
  6198. _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); } }
  6199. break;
  6200. case "sys":
  6201. _formdiv = new U.UF.UI.form(
  6202. "目标管理",
  6203. $$("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 }), {
  6204. "id": "sys",
  6205. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //创建窗体
  6210. _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); } }
  6211. break;
  6212. case "courseDesign":
  6213. _formdiv = new U.UF.UI.form(
  6214. "项目设计",
  6215. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6216. "id": "courseDesign",
  6217. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6218. "onresize": function () { }
  6219. }, {
  6220. closecallback: function () { }
  6221. }, { "style": { "height": "36px" } }).form; //创建窗体
  6222. _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); } }
  6223. break;
  6224. }
  6225. } else if (!_type) {
  6226. switch (str) {
  6227. case "my":
  6228. _formdiv = new U.UF.UI.form(
  6229. "我的资料",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6231. "id": "my",
  6232. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6238. break;
  6239. }
  6240. }
  6241. switch (str) {
  6242. // AIprogram2 AI体验 aihub.cocorobo.cn
  6243. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6244. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6245. case "formulaEdi": //公式编辑
  6246. _formdiv = new U.UF.UI.form(
  6247. "公式编辑",
  6248. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6249. "id": "formulaEdi",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6256. break;
  6257. case "molStr": //分子结构
  6258. _formdiv = new U.UF.UI.form(
  6259. "分子结构",
  6260. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6261. "id": "molStr",
  6262. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "timeAxis": //时间轴
  6270. _formdiv = new U.UF.UI.form(
  6271. "时间轴",
  6272. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6273. "id": "timeAxis",
  6274. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "AIprogram2": //AI体验
  6282. _formdiv = new U.UF.UI.form(
  6283. "AI体验",
  6284. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6285. "id": "AIprogram2",
  6286. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. case "Pythonprogram": //python编程
  6294. _formdiv = new U.UF.UI.form(
  6295. "Python编程",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6297. "id": "Pythonprogram",
  6298. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _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); } }
  6304. break;
  6305. case "AIprogram": //ai编程
  6306. _formdiv = new U.UF.UI.form(
  6307. "AI编程平台",
  6308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6309. "id": "AIprogram",
  6310. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _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); } }
  6316. break;
  6317. case "CocoPi": //CocoPi
  6318. _formdiv = new U.UF.UI.form(
  6319. "CocoPi",
  6320. $$("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" }), {
  6321. "id": "CocoPi",
  6322. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break;
  6329. case "Wood": //Wood
  6330. _formdiv = new U.UF.UI.form(
  6331. "海龟编程",
  6332. $$("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/" }), {
  6333. "id": "Wood",
  6334. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. case "car": //模拟驾驶
  6342. _formdiv = new U.UF.UI.form(
  6343. "模拟驾驶",
  6344. $$("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/" }), {
  6345. "id": "car",
  6346. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "lineSearch": //路径搜索
  6354. _formdiv = new U.UF.UI.form(
  6355. "路径搜索",
  6356. $$("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/" }), {
  6357. "id": "lineSearch",
  6358. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. case "deepLearning": //深度学习
  6366. _formdiv = new U.UF.UI.form(
  6367. "深度学习",
  6368. $$("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/#" }), {
  6369. "id": "deepLearning",
  6370. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6376. break;
  6377. case "allHistory": //深度学习
  6378. _formdiv = new U.UF.UI.form(
  6379. "全历史",
  6380. $$("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/" }), {
  6381. "id": "allHistory",
  6382. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. case "chatPDF": //ai编程
  6390. _formdiv = new U.UF.UI.form(
  6391. "chatPDF",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6393. "id": "chatPDF",
  6394. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "resources": //国家教育
  6402. _formdiv = new U.UF.UI.form(
  6403. "国家教育",
  6404. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6405. "id": "resources",
  6406. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6412. break;
  6413. case "codeEdit": //源码编辑
  6414. _formdiv = new U.UF.UI.form(
  6415. "源码编辑",
  6416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6417. "id": "codeEdit",
  6418. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break; //
  6425. case "MindMap": //MindMap
  6426. _formdiv = new U.UF.UI.form(
  6427. "MindMap",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6429. "id": "MindMap",
  6430. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _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); } }
  6436. break;
  6437. case "netWorkPanel": //netWorkPanel
  6438. _formdiv = new U.UF.UI.form(
  6439. "netWorkPanel",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6441. "id": "netWorkPanel",
  6442. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _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); } }
  6448. break;
  6449. case "GeoGebra": //GeoGebra
  6450. _formdiv = new U.UF.UI.form(
  6451. "GeoGebra",
  6452. $$("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" }), {
  6453. "id": "GeoGebra",
  6454. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _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); } }
  6460. break;
  6461. case "translation": //翻译
  6462. _formdiv = new U.UF.UI.form(
  6463. "翻译",
  6464. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6465. "id": "translation",
  6466. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //创建窗体
  6471. _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); } }
  6472. break;
  6473. case "mohe": //魔盒
  6474. _formdiv = new U.UF.UI.form(
  6475. "魔盒识字",
  6476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6477. "id": "mohe",
  6478. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. _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); } }
  6484. break;
  6485. case "24game": //24点
  6486. _formdiv = new U.UF.UI.form(
  6487. "24点",
  6488. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6489. "id": "24game",
  6490. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _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); } }
  6496. break;
  6497. case "case":
  6498. _formdiv = new U.UF.UI.form(
  6499. "课程进展",
  6500. $$("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 }), {
  6501. "id": "case",
  6502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _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); } }
  6508. break;
  6509. case "snf":
  6510. _formdiv = new U.UF.UI.form(
  6511. "赛诺梵",
  6512. $$("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" }), {
  6513. "id": "snf",
  6514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. _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); } }
  6520. break;
  6521. case "hanFamily":
  6522. _formdiv = new U.UF.UI.form(
  6523. "汉字家族",
  6524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6525. "id": "hanFamily",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. break;
  6533. case "hanClassics":
  6534. _formdiv = new U.UF.UI.form(
  6535. "国学经典",
  6536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6537. "id": "hanClassics",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. _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); } }
  6544. break;
  6545. case "hanTraining":
  6546. _formdiv = new U.UF.UI.form(
  6547. "笔画训练",
  6548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6549. "id": "hanTraining",
  6550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //创建窗体
  6555. _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); } }
  6556. break;
  6557. case "hanClass":
  6558. _formdiv = new U.UF.UI.form(
  6559. "书法课堂",
  6560. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6561. "id": "hanClass",
  6562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //创建窗体
  6567. _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); } }
  6568. break;
  6569. case "han":
  6570. _formdiv = new U.UF.UI.form(
  6571. "汉字宫",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6573. "id": "han",
  6574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _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); } }
  6580. break;
  6581. case "projectGM": //课程管理
  6582. _formdiv = new U.UF.UI.form(
  6583. "课程管理",
  6584. $$("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 }), {
  6585. "id": "projectGM",
  6586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _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); } }
  6592. break;
  6593. case "studyGM": //课程中心
  6594. _formdiv = new U.UF.UI.form(
  6595. "课程中心",
  6596. $$("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
  6597. "id": "study",
  6598. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _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); } }
  6604. break;
  6605. // studentGM
  6606. case "studentGM": //学生管理
  6607. _formdiv = new U.UF.UI.form(
  6608. "学生管理",
  6609. $$("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 }), {
  6610. "id": "studentGM",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "evaluateGM": //学生评价
  6619. _formdiv = new U.UF.UI.form(
  6620. "学生评价",
  6621. $$("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 }), {
  6622. "id": "evaluateGM",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. // classGM
  6631. case "classGM": //班级管理
  6632. _formdiv = new U.UF.UI.form(
  6633. "班级管理",
  6634. $$("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 }), {
  6635. "id": "classGM",
  6636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6637. "onresize": function () { }
  6638. }, {
  6639. closecallback: function () { }
  6640. }, { "style": { "height": "36px" } }).form; //创建窗体
  6641. _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); } }
  6642. break;
  6643. // dataGM
  6644. case "dataGM":
  6645. _formdiv = new U.UF.UI.form(
  6646. "我的资料",
  6647. $$("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 }), {
  6648. "id": "dataGM",
  6649. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6650. "onresize": function () { }
  6651. }, {
  6652. closecallback: function () { }
  6653. }, { "style": { "height": "36px" } }).form; //创建窗体
  6654. _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); } }
  6655. break;
  6656. // caseGM
  6657. case "caseGM": //课程进展
  6658. _formdiv = new U.UF.UI.form(
  6659. "课程进展",
  6660. $$("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 }), {
  6661. "id": "caseGM",
  6662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _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); } }
  6668. break;
  6669. // meterialGM
  6670. case "meterialGM": //素材库
  6671. _formdiv = new U.UF.UI.form(
  6672. "素材库",
  6673. $$("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 }), {
  6674. "id": "meterialGM",
  6675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6681. break;
  6682. // evaluateSGM
  6683. case "evaluateSGM": //我的评价
  6684. _formdiv = new U.UF.UI.form(
  6685. "我的评价",
  6686. $$("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 }), {
  6687. "id": "evaluateSGM",
  6688. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "jupyter": //jupyter
  6696. _formdiv = new U.UF.UI.form(
  6697. "jupyter",
  6698. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6699. "id": "jupyter",
  6700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "number": //数字实验室
  6708. _formdiv = new U.UF.UI.form(
  6709. "数字实验室",
  6710. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6711. "id": "number",
  6712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "studentCourse": //项目管理 学生
  6720. _formdiv = new U.UF.UI.form(
  6721. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6722. $$("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 }), {
  6723. "id": "studentCourse",
  6724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "studentCourseS": //项目管理 老师
  6732. _formdiv = new U.UF.UI.form(
  6733. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6734. $$("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 }), {
  6735. "id": "studentCourseS",
  6736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. break;
  6743. case "studentIndex": //项目中心
  6744. _formdiv = new U.UF.UI.form(
  6745. "项目中心",
  6746. $$("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 }), {
  6747. "id": "studentIndex",
  6748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _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); } }
  6754. break;
  6755. case "CaseDesignS":
  6756. _formdiv = new U.UF.UI.form(
  6757. "项目进展",
  6758. $$("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 }), {
  6759. "id": "case",
  6760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _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); } }
  6766. break;
  6767. case "tcStudent": //腾讯学生管理
  6768. _formdiv = new U.UF.UI.form(
  6769. "学生管理",
  6770. $$("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 }), {
  6771. "id": "tcStudent",
  6772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "tcSchool": //腾讯学校管理
  6780. _formdiv = new U.UF.UI.form(
  6781. "学校管理",
  6782. $$("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 }), {
  6783. "id": "tcSchool",
  6784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break;
  6791. case "tcTeacher": //腾讯学校管理
  6792. _formdiv = new U.UF.UI.form(
  6793. "教师管理",
  6794. $$("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 }), {
  6795. "id": "tcTeacher",
  6796. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. break;
  6803. case "teacher":
  6804. _formdiv = new U.UF.UI.form(
  6805. "教师管理",
  6806. $$("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 }), {
  6807. "id": "teacher",
  6808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _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); } }
  6814. break;
  6815. case "tcData": //腾讯我的资料
  6816. _formdiv = new U.UF.UI.form(
  6817. "我的资料",
  6818. $$("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 }), {
  6819. "id": "tcData",
  6820. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _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); } }
  6826. break;
  6827. case "tcNotice": //腾讯消息通知
  6828. _formdiv = new U.UF.UI.form(
  6829. "消息通知",
  6830. $$("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 }), {
  6831. "id": "tcNotice",
  6832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _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); } }
  6838. break;
  6839. case "myReport": //好友打开
  6840. _formdiv = new U.UF.UI.form(
  6841. "我的评价",
  6842. $$("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 }), {
  6843. "id": "myReport",
  6844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _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); } }
  6850. break;
  6851. case "learnAna": //好友打开
  6852. _formdiv = new U.UF.UI.form(
  6853. "学习分析",
  6854. $$("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 }), {
  6855. "id": "learnAna",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _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); } }
  6862. break;
  6863. case "AIChat": //AI共创
  6864. _formdiv = new U.UF.UI.form(
  6865. "AI共创",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6867. "id": "AIChat",
  6868. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. istop: true,
  6872. closecallback: function () { $("#aichat_icon").remove(); },
  6873. narrowcallback: function () {
  6874. if (!$("#aichat_icon")[0]) {
  6875. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6876. }
  6877. },
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. case "ainew": //AI共创
  6882. _formdiv = new U.UF.UI.form(
  6883. "AI协同",
  6884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6885. "id": "ainew",
  6886. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _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); } }
  6892. break;
  6893. case "gpt4": //gpt4
  6894. _formdiv = new U.UF.UI.form(
  6895. "AI助手",
  6896. $$("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 }), {
  6897. "id": "gpt4",
  6898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _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); } }
  6904. break;
  6905. case "aigpt": //gpt4
  6906. _formdiv = new U.UF.UI.form(
  6907. "AI助手+",
  6908. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6909. "id": "aigpt",
  6910. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () {
  6914. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6915. }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _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); } }
  6918. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6919. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6920. })
  6921. break;
  6922. case "aiKnowledge": //aiKnowledge
  6923. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6924. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6925. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6926. }
  6927. _formdiv = new U.UF.UI.form(
  6928. "知识建构",
  6929. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6930. "id": "aiKnowledge",
  6931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //创建窗体
  6936. _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); } }
  6937. break;
  6938. case "futureClass": //AI共创
  6939. _formdiv = new U.UF.UI.form(
  6940. "协同建构",
  6941. $$("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
  6942. "id": "synergyCourse",
  6943. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () {
  6947. $("iframe", _formdiv)[0].contentWindow.loginout();
  6948. }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _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); } }
  6951. break;
  6952. case "aiagent": //ai agent
  6953. _formdiv = new U.UF.UI.form(
  6954. "AI Agent",
  6955. $$("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" }), {
  6956. "id": "AIAgent",
  6957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _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); } }
  6963. break;
  6964. case "dataBoard": //数据看板
  6965. _formdiv = new U.UF.UI.form(
  6966. "数据看板",
  6967. $$("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 }), {
  6968. "id": "dataBoard",
  6969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6975. break;
  6976. case "dataBoardSies": //数据融合
  6977. _formdiv = new U.UF.UI.form(
  6978. "数据融合",
  6979. $$("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 }), {
  6980. "id": "dataBoardSies",
  6981. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6987. break;
  6988. case "dataBoardNew": //数据看板
  6989. _formdiv = new U.UF.UI.form(
  6990. "综合看板",
  6991. $$("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 }), {
  6992. "id": "dataBoardNew",
  6993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6999. break;
  7000. case "dataBoardTest": //数据看板
  7001. _formdiv = new U.UF.UI.form(
  7002. "评测看板",
  7003. $$("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 }), {
  7004. "id": "dataBoardTest",
  7005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7011. break;
  7012. case "AIAnalyse": //AI共创
  7013. _formdiv = new U.UF.UI.form(
  7014. "AI分析",
  7015. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7016. "id": "AIAnalyse",
  7017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7023. break;
  7024. case "studioCourse": //AI共创
  7025. _formdiv = new U.UF.UI.form(
  7026. "工作管理",
  7027. $$("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 }), {
  7028. "id": "studioCourse",
  7029. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //创建窗体
  7034. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7035. break;
  7036. case "studioIndex": //AI共创
  7037. _formdiv = new U.UF.UI.form(
  7038. "工作中心",
  7039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7040. "id": "studioIndex",
  7041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7047. break;
  7048. case "source":
  7049. _formdiv = new U.UF.UI.form(
  7050. "教学资源",
  7051. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7052. "id": "source",
  7053. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7059. break;
  7060. case "testTeacher":
  7061. _formdiv = new U.UF.UI.form(
  7062. "智能表单",
  7063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7064. "id": "testTeacher",
  7065. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, { "style": { "height": "36px" } }).form; //创建窗体
  7070. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7071. break;
  7072. case "testStudent":
  7073. _formdiv = new U.UF.UI.form(
  7074. "教师中心",
  7075. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  7076. "id": "testStudent",
  7077. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, { "style": { "height": "36px" } }).form; //创建窗体
  7082. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7083. break;
  7084. case "testTeacherSies":
  7085. _formdiv = new U.UF.UI.form(
  7086. "教师管理",
  7087. $$("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 }), {
  7088. "id": "testTeacherSies",
  7089. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, { "style": { "height": "36px" } }).form; //创建窗体
  7094. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7095. break;
  7096. case "testStudentSies":
  7097. _formdiv = new U.UF.UI.form(
  7098. "教师中心",
  7099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  7100. "id": "testStudentSies",
  7101. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7102. "onresize": function () { }
  7103. }, {
  7104. closecallback: function () { }
  7105. }, { "style": { "height": "36px" } }).form; //创建窗体
  7106. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7107. break;
  7108. case "ytpbl": //消息通知
  7109. _formdiv = new U.UF.UI.form(
  7110. "案例征集",
  7111. $$("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 }), {
  7112. "id": "ytpbl",
  7113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //创建窗体
  7118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7119. // 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");
  7120. break;
  7121. case "aiCourseResource": //人工智能窗体
  7122. _formdiv = new U.UF.UI.form(
  7123. false,
  7124. $$("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 }), {
  7125. "id": "aiCourseResource",
  7126. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7127. "onresize": function () { },
  7128. "isdrag": false,
  7129. }, {
  7130. closecallback: function () { }
  7131. }, { "style": { "height": "36px" } }).form; //创建窗体
  7132. _taskbar = ''
  7133. break;
  7134. case "szdjgCocooroboX": //图形化编程
  7135. _formdiv = new U.UF.UI.form(
  7136. "图形化编程",
  7137. $$("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" }), {
  7138. "id": "szdjgCocooroboX",
  7139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7140. "onresize": function () { }
  7141. }, {
  7142. closecallback: function () { }
  7143. }, { "style": { "height": "36px" } }).form; //创建窗体
  7144. _taskbar = ''
  7145. break;
  7146. case "szdjgPython": //python编程
  7147. _formdiv = new U.UF.UI.form(
  7148. "Python编程",
  7149. $$("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" }), {
  7150. "id": "szdjgPython",
  7151. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, { "style": { "height": "36px" } }).form; //创建窗体
  7156. _taskbar = ''
  7157. break;
  7158. case "Record":
  7159. _formdiv = new U.UF.UI.form(
  7160. "观察记录",
  7161. $$("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 }), {
  7162. "id": "Record",
  7163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, { "style": { "height": "36px" } }).form; //创建窗体
  7168. _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); } }
  7169. break;
  7170. case "aigptCourse":
  7171. _formdiv = new U.UF.UI.form(
  7172. "AI智能体",
  7173. $$("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' }), {
  7174. "id": "aigptCourse",
  7175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7176. "onresize": function () { }
  7177. }, {
  7178. closecallback: function () { }
  7179. }, { "style": { "height": "36px" } }).form; //创建窗体
  7180. _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); } }
  7181. break;
  7182. case "classroomObservation":
  7183. _formdiv = new U.UF.UI.form(
  7184. "课堂观察",
  7185. $$("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 }), {
  7186. "id": "classroomObservation",
  7187. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, { "style": { "height": "36px" } }).form; //创建窗体
  7192. _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); } }
  7193. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7194. break;
  7195. case "pblCourse":
  7196. _formdiv = new U.UF.UI.form(
  7197. "学生PBL",
  7198. $$("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 }), {
  7199. "id": "pblCourse",
  7200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7201. "onresize": function () { }
  7202. }, {
  7203. closecallback: function () { }
  7204. }, { "style": { "height": "36px" } }).form; //创建窗体
  7205. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7206. break;
  7207. case "appStore":
  7208. _formdiv = new U.UF.UI.form(
  7209. "CocoFlow",
  7210. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7211. "id": "appStore",
  7212. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7213. "onresize": function () { }
  7214. }, {
  7215. closecallback: function () { }
  7216. }, { "style": { "height": "36px" } }).form; //创建窗体
  7217. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7218. break;
  7219. case "sassPlatform":
  7220. _formdiv = new U.UF.UI.form(
  7221. "Sass通用后台管理",
  7222. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7223. "id": "sassPlatform",
  7224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7225. "onresize": function () { }
  7226. }, {
  7227. closecallback: function () { }
  7228. }, { "style": { "height": "36px" } }).form; //创建窗体
  7229. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7230. break;
  7231. case "EDU":
  7232. _formdiv = new U.UF.UI.form(
  7233. "EDU",
  7234. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7235. "id": "EDU",
  7236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, { "style": { "height": "36px" } }).form; //创建窗体
  7241. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7242. break;
  7243. case "knowledge":
  7244. _formdiv = new U.UF.UI.form(
  7245. "知识库",
  7246. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7247. "id": "knowledge",
  7248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7249. "onresize": function () { }
  7250. }, {
  7251. closecallback: function () { }
  7252. }, { "style": { "height": "36px" } }).form; //创建窗体
  7253. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7254. break;
  7255. case "userExamine":
  7256. _formdiv = new U.UF.UI.form(
  7257. "账号申请",
  7258. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7259. "id": "userExamine",
  7260. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7261. "onresize": function () { }
  7262. }, {
  7263. closecallback: function () { }
  7264. }, { "style": { "height": "36px" } }).form; //创建窗体
  7265. break;
  7266. }
  7267. //U.MD.D.I.openClick(str);
  7268. //如果有任务栏信息
  7269. if (_taskbar) {
  7270. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7271. }
  7272. if(iframeBool){
  7273. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7274. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7275. // console.log("iframe进入");
  7276. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7277. // };
  7278. setTimeout(() => {
  7279. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7280. }, 2000);
  7281. }
  7282. }
  7283. // U.MD.D.I.openClick = function(str){
  7284. // var click = '';
  7285. // switch(str){
  7286. // case 'friend':
  7287. // click = '我的好友';
  7288. // break;
  7289. // case 'domain':
  7290. // click = '域名管理';
  7291. // break;
  7292. // case 'disk':
  7293. // click = '我的云盘';
  7294. // break;
  7295. // case 'word':
  7296. // click = 'Word';
  7297. // break;
  7298. // case 'excel':
  7299. // click = 'Execl';
  7300. // break;
  7301. // case 'txt':
  7302. // click = '文本文件';
  7303. // break;
  7304. // case 'lookupFriend':
  7305. // click = '查找好友';
  7306. // break;
  7307. // case 'ftp':
  7308. // click = 'FTP';
  7309. // break;
  7310. // case 'group':
  7311. // click = '群组';
  7312. // break;
  7313. // case 'set':
  7314. // click = '我的设置';
  7315. // break;
  7316. // case 'systemSet':
  7317. // click = '系统设置';
  7318. // break;
  7319. // case 'boomYun':
  7320. // click = '互联办公';
  7321. // break;
  7322. // case 'xz':
  7323. // click = '云端下载';
  7324. // break;
  7325. // case 'client':
  7326. // click = '有思浏览器';
  7327. // break;
  7328. // case 'backEndProgramming':
  7329. // click = '在线后台编程';
  7330. // break;
  7331. // case 'frontEndProgramming':
  7332. // click = '在线前端编程';
  7333. // break;
  7334. // default: break;
  7335. // }
  7336. // if(U.MD.D.I.Ip && click){
  7337. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7338. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7339. // })
  7340. // }
  7341. // }
  7342. /**
  7343. *函数作用:ajax简易函数,使用post格式
  7344. *@param url {data} 后台地址
  7345. *@param data {data} 参数json
  7346. *@param fn {data} 回调函数
  7347. *
  7348. */
  7349. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7350. // var xhr = new XMLHttpRequest();
  7351. // xhr.open("GET",url,true);
  7352. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7353. // xhr.onreadystatechange = function(){
  7354. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7355. // fn.call(this,xhr.responseText);
  7356. // }
  7357. // };
  7358. // xhr.send();
  7359. // }
  7360. /*判断是否是内网IP*/
  7361. // U.MD.D.I.isInnerIPFn = function(str){
  7362. // var curPageUrl = str;
  7363. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7364. // curPageUrl =curPageUrl.replace(reg1,'');
  7365. // // console.log('curPageUrl-1 '+curPageUrl);
  7366. // var reg2 = /\:+/g;//替换冒号为一点
  7367. // curPageUrl =curPageUrl.replace(reg2,'.');
  7368. // // console.log('curPageUrl-2 '+curPageUrl);
  7369. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7370. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7371. // if(curPageUrl[2] != '16'){
  7372. // return ipAddress;
  7373. // }else{
  7374. // return false;
  7375. // }
  7376. // }
  7377. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7378. // //compatibility for firefox and chrome
  7379. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7380. // var pc = new myPeerConnection({
  7381. // iceServers: []
  7382. // }),
  7383. // noop = function() {},
  7384. // localIPs = {},
  7385. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7386. // key;
  7387. // function iterateIP(ip) {
  7388. // if (!localIPs[ip]) onNewIP(ip);
  7389. // localIPs[ip] = true;
  7390. // }
  7391. // //create a bogus data channel
  7392. // pc.createDataChannel("");
  7393. // // create offer and set local description
  7394. // pc.createOffer().then(function(sdp) {
  7395. // sdp.sdp.split('\n').forEach(function(line) {
  7396. // if (line.indexOf('candidate') < 0) return;
  7397. // line.match(ipRegex).forEach(iterateIP);
  7398. // });
  7399. // pc.setLocalDescription(sdp, noop, noop);
  7400. // }).catch(function(reason) {
  7401. // // An error occurred, so handle the failure to connect
  7402. // });
  7403. // //sten for candidate events
  7404. // pc.onicecandidate = function(ice) {
  7405. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7406. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7407. // };
  7408. // }
  7409. // U.MD.D.I.getUserIpBool = function(callback){
  7410. // U.MD.D.I.getUserIP(function(ip){
  7411. // alert("Got IP! :" + ip);
  7412. // });
  7413. //}
  7414. //#endregion
  7415. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7416. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7417. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7418. _userinfo = US.userInfo, //登录用户信息
  7419. _userid = US.userInfo.userid //登录用户id
  7420. let _iframe;
  7421. let _cid = cid,
  7422. _stage = stage,
  7423. _task = task,
  7424. _tool = tool;
  7425. var _jie = $$("div", {
  7426. "style": {
  7427. "position": "absolute",
  7428. "bottom": "50px",
  7429. "right": "50px",
  7430. "zIndex": "9999",
  7431. "backgroundColor": "#2268bc",
  7432. "color": "#fff",
  7433. "padding": "12px 20px",
  7434. "cursor": "pointer",
  7435. "borderRadius": "4px",
  7436. },
  7437. "innerHTML": "提交作业"
  7438. })
  7439. let aTool = ''
  7440. let _loading = document.createElement('div')
  7441. _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;"
  7442. // _loading.id = "";
  7443. let _lchild = document.createElement('div')
  7444. let _limg = document.createElement('img')
  7445. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7446. _limg.style = "width: 26px;margin-right: 10px;"
  7447. _lchild.appendChild(_limg)
  7448. let _lspan = document.createElement('span')
  7449. _lspan.innerHTML = "上传中..."
  7450. _lchild.appendChild(_lspan)
  7451. _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%);"
  7452. _loading.appendChild(_lchild)
  7453. var _box = $$('div', {
  7454. "style": {
  7455. "position": "relative",
  7456. "width": "100%",
  7457. "height": "100%",
  7458. },
  7459. })
  7460. _box.appendChild(_loading)
  7461. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7462. switch (str) {
  7463. case "whiteboard":
  7464. aTool = 1;
  7465. _iframe = $$("iframe", {
  7466. "frameborder": "no",
  7467. "border": "0",
  7468. "scrolling ": "no",
  7469. "style": {
  7470. "cssText": "border:0;width:100%;height:100%"
  7471. },
  7472. "src": "https://beta.iwb.cocorobo.cn/"
  7473. })
  7474. _box.appendChild(_iframe);
  7475. _box.appendChild(_jie);
  7476. _formdiv = new U.UF.UI.form(
  7477. "电子白板",
  7478. _box, {
  7479. "id": "whiteboard" + cid + stage + task + tool,
  7480. "style": {
  7481. "width": "90%",
  7482. "height": "90%",
  7483. "overflow": 'hidden'
  7484. },
  7485. "onresize": function () { }
  7486. }, {
  7487. closecallback: function () { }
  7488. }, {
  7489. "style": {
  7490. "height": "36px"
  7491. }
  7492. }).form; //创建窗体
  7493. _taskbar = {
  7494. "id": str + _formdiv.id,
  7495. "style": {
  7496. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7497. },
  7498. "name": "电子白板",
  7499. "forms": _formdiv,
  7500. "click": function () {
  7501. U.MD.D.I.openApplication(str, obj, info);
  7502. }
  7503. }
  7504. break;
  7505. case "mind":
  7506. aTool = 3;
  7507. _iframe = $$("iframe", {
  7508. "frameborder": "no",
  7509. "border": "0",
  7510. "scrolling ": "no",
  7511. "style": {
  7512. "cssText": "border:0;width:100%;height:100%"
  7513. },
  7514. "src": "/kityminder-editor/dist/index.html"
  7515. })
  7516. _box.appendChild(_iframe);
  7517. _box.appendChild(_jie);
  7518. _formdiv = new U.UF.UI.form(
  7519. "思维导图",
  7520. _box, { //"/jsmind/example/demo.html"
  7521. "id": "mind" + cid + stage + task + tool,
  7522. "style": {
  7523. "width": "90%",
  7524. "height": "90%",
  7525. "overflow": 'hidden'
  7526. },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, {
  7531. "style": {
  7532. "height": "36px"
  7533. }
  7534. }).form; //创建窗体
  7535. _taskbar = {
  7536. "id": str + _formdiv.id,
  7537. "style": {
  7538. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7539. },
  7540. "name": "思维导图",
  7541. "forms": _formdiv,
  7542. "click": function () {
  7543. U.MD.D.I.openApplication(str, obj, info);
  7544. }
  7545. }
  7546. break;
  7547. case "MindMap":
  7548. aTool = 3;
  7549. _iframe = $$("iframe", {
  7550. "frameborder": "no",
  7551. "border": "0",
  7552. "scrolling ": "no",
  7553. "style": {
  7554. "cssText": "border:0;width:100%;height:100%"
  7555. },
  7556. "src": "//cloud.cocorobo.cn/mind/"
  7557. })
  7558. _box.appendChild(_iframe);
  7559. _box.appendChild(_jie);
  7560. _formdiv = new U.UF.UI.form(
  7561. "思维导图",
  7562. _box, { //"/jsmind/example/demo.html"
  7563. "id": "mind" + cid + stage + task + tool,
  7564. "style": {
  7565. "width": "90%",
  7566. "height": "90%",
  7567. "overflow": 'hidden'
  7568. },
  7569. "onresize": function () { }
  7570. }, {
  7571. closecallback: function () { }
  7572. }, {
  7573. "style": {
  7574. "height": "36px"
  7575. }
  7576. }).form; //创建窗体
  7577. _taskbar = {
  7578. "id": str + _formdiv.id,
  7579. "style": {
  7580. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7581. },
  7582. "name": "思维导图",
  7583. "forms": _formdiv,
  7584. "click": function () {
  7585. U.MD.D.I.openApplication(str, obj, info);
  7586. }
  7587. }
  7588. break;
  7589. case "doc":
  7590. aTool = 6;
  7591. _iframe = $$("iframe", {
  7592. "frameborder": "no",
  7593. "border": "0",
  7594. "scrolling ": "no",
  7595. "style": {
  7596. "cssText": "border:0;width:100%;height:100%"
  7597. },
  7598. "src": "/Office/Word/WordEditArea.htm"
  7599. })
  7600. _box.appendChild(_iframe);
  7601. _box.appendChild(_jie);
  7602. _formdiv = new U.UF.UI.form(
  7603. "协同文档",
  7604. _box, {
  7605. "id": "doc" + cid + stage + task + tool,
  7606. "style": {
  7607. "width": "90%",
  7608. "height": "90%",
  7609. "overflow": 'hidden'
  7610. },
  7611. "onresize": function () { }
  7612. }, {
  7613. closecallback: function () { }
  7614. }, {
  7615. "style": {
  7616. "height": "36px"
  7617. }
  7618. }).form; //创建窗体
  7619. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7620. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7621. })
  7622. _taskbar = {
  7623. "id": str + _formdiv.id,
  7624. "style": {
  7625. "backgroundImage": "url(/img/icon/doc.png)"
  7626. },
  7627. "name": "协同文档",
  7628. "forms": _formdiv,
  7629. "click": function () {
  7630. U.MD.D.I.openApplication(str, obj, info);
  7631. }
  7632. }
  7633. break;
  7634. case "mindNetwork": //好友打开
  7635. aTool = 7;
  7636. _iframe = $$("iframe", {
  7637. "webkitallowfullscreen": "",
  7638. "mozallowfullscreen": "",
  7639. "allowfullscreen": "",
  7640. "frameborder": "no",
  7641. "border": "0",
  7642. "scrolling ": "no",
  7643. "style": {
  7644. "cssText": "border:0; width:100%; height:100%;"
  7645. },
  7646. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7647. })
  7648. _box.appendChild(_iframe);
  7649. _box.appendChild(_jie);
  7650. _formdiv = new U.UF.UI.form(
  7651. "思维网格",
  7652. _box, {
  7653. "id": "mindNetwork" + cid + stage + task + tool,
  7654. "style": {
  7655. "width": "90%",
  7656. "height": "90%",
  7657. "overflow": 'hidden'
  7658. },
  7659. "onresize": function () { }
  7660. }, {
  7661. closecallback: function () { }
  7662. }, {
  7663. "style": {
  7664. "height": "36px"
  7665. }
  7666. }).form; //创建窗体
  7667. _taskbar = {
  7668. "id": str + _formdiv.id,
  7669. "style": {
  7670. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7671. },
  7672. "name": "思维网格",
  7673. "forms": _formdiv,
  7674. "click": function () {
  7675. U.MD.D.I.openApplication(str, obj, info);
  7676. }
  7677. }
  7678. break;
  7679. case "courseDesign":
  7680. _iframe = $$("iframe", {
  7681. "webkitallowfullscreen": "",
  7682. "mozallowfullscreen": "",
  7683. "allowfullscreen": "",
  7684. "frameborder": "no",
  7685. "border": "0",
  7686. "scrolling ": "no",
  7687. "style": {
  7688. "cssText": "border:0; width:100%; height:100%;"
  7689. },
  7690. "src": "/course-design-vue"
  7691. })
  7692. _box.appendChild(_iframe);
  7693. _box.appendChild(_jie);
  7694. _formdiv = new U.UF.UI.form(
  7695. "项目设计",
  7696. _box, {
  7697. "id": "courseDesign" + cid + stage + task + tool,
  7698. "style": {
  7699. "width": "90%",
  7700. "height": "90%",
  7701. "overflow": 'hidden'
  7702. },
  7703. "onresize": function () { }
  7704. }, {
  7705. closecallback: function () { }
  7706. }, {
  7707. "style": {
  7708. "height": "36px"
  7709. }
  7710. }).form; //创建窗体
  7711. _taskbar = {
  7712. "id": str + _formdiv.id,
  7713. "style": {
  7714. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7715. },
  7716. "name": "项目设计",
  7717. "forms": _formdiv,
  7718. "click": function () {
  7719. U.MD.D.I.openApplication(str, obj, info);
  7720. }
  7721. }
  7722. break;
  7723. }
  7724. const script1 = document.createElement("script");
  7725. script1.type = "text/javascript";
  7726. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7727. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7728. const script2 = document.createElement("script");
  7729. script2.type = "text/javascript";
  7730. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7731. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7732. const script3 = document.createElement("script");
  7733. script3.type = "text/javascript";
  7734. script3.charset = "UTF-8";
  7735. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7736. const script4 = document.createElement("script");
  7737. script4.type = "text/javascript";
  7738. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7739. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7740. if (_iframe) {
  7741. if (str == 'doc') {
  7742. _iframe = _formdiv.querySelector('iframe')
  7743. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7744. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7745. _iframe.contentWindow.document.body.appendChild(script1);
  7746. _iframe.contentWindow.document.body.appendChild(script2);
  7747. // _iframe.contentWindow.document.body.appendChild(script3);
  7748. _iframe.contentWindow.document.body.appendChild(script4);
  7749. })
  7750. if (onloadListener) {
  7751. _iframe.contentDocument.location.reload()
  7752. } else {
  7753. _iframe.contentDocument.location.reload()
  7754. }
  7755. } else if (str == 'courseDesign') {
  7756. U.UF.DL.iframeLoad(_iframe, function () {
  7757. // _iframe.contentWindow.U.MD.O.W.load();
  7758. // _iframe.contentWindow.document.body.appendChild(script1);
  7759. _iframe.contentWindow.document.body.appendChild(script2);
  7760. _iframe.contentWindow.document.body.appendChild(script4);
  7761. })
  7762. } else if (str == 'mind') {
  7763. _iframe = _formdiv.querySelector('iframe')
  7764. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7765. //
  7766. _iframe.contentWindow.document.body.appendChild(script1);
  7767. _iframe.contentWindow.document.body.appendChild(script2);
  7768. _iframe.contentWindow.document.body.appendChild(script4);
  7769. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7770. })
  7771. if (onloadListener) {
  7772. _iframe.contentDocument.location.reload()
  7773. } else {
  7774. _iframe.contentDocument.location.reload()
  7775. }
  7776. } else if (str == 'whiteboard') {
  7777. _iframe = _formdiv.querySelector('iframe')
  7778. let onloadListener = _iframe.onload = () => {
  7779. _iframe.contentWindow.document.body.appendChild(script1);
  7780. _iframe.contentWindow.document.body.appendChild(script2);
  7781. _iframe.contentWindow.document.body.appendChild(script4);
  7782. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7783. };
  7784. // if (onloadListener) {
  7785. // try {
  7786. // _iframe.src += "?cocorobo="+new Date().getTime()
  7787. // _iframe.contentWindow.document.location.reload()
  7788. // } catch (error) {
  7789. // }
  7790. // } else {
  7791. // _iframe.contentDocument.location.reload()
  7792. // }
  7793. } else {
  7794. _iframe.onload = () => {
  7795. _iframe.contentWindow.document.body.appendChild(script1);
  7796. _iframe.contentWindow.document.body.appendChild(script2);
  7797. // _iframe.contentWindow.document.body.appendChild(script3);
  7798. _iframe.contentWindow.document.body.appendChild(script4);
  7799. };
  7800. }
  7801. _jie.onclick = async () => {
  7802. let text = ''
  7803. if (aTool == 1) {
  7804. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7805. } else if (aTool == 6) {
  7806. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7807. } else if (aTool == 3) {
  7808. text = await U.MD.D.I.getEditorContent(_iframe);
  7809. }
  7810. _loading.style.display = 'flex'
  7811. console.log(_loading);
  7812. var _ajs = _iframe.contentWindow.document.createElement("script");
  7813. _ajs.type = "text/javascript";
  7814. _ajs.innerHTML =
  7815. // 'console.log(' + _loading + ');\n' +
  7816. 'var _js = document.createElement("script");\n' +
  7817. '_js.type="text/javascript";\n' +
  7818. '_js.charset="UTF-8";\n' +
  7819. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7820. "_js.onload = function(){\n" +
  7821. ' var a = document.getElementsByTagName("img")\n' +
  7822. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7823. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7824. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7825. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7826. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7827. "beforeUpload_shishi(file," +
  7828. "'" +
  7829. _userid +
  7830. "'" +
  7831. ", " +
  7832. "'" +
  7833. _cid +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _stage +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _task +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. _tool +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. aTool +
  7854. "'" +
  7855. ", " +
  7856. "`" +
  7857. text +
  7858. "`" +
  7859. ")\n" +
  7860. " });\n" +
  7861. "}\n" +
  7862. "document.head.appendChild(_js);\n";
  7863. _iframe.contentWindow.document.head.appendChild(_ajs);
  7864. }
  7865. }
  7866. //U.MD.D.I.openClick(str);
  7867. //如果有任务栏信息
  7868. // if (_taskbar) {
  7869. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7870. // }
  7871. }
  7872. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7873. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7874. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7875. _userinfo = US.userInfo, //登录用户信息
  7876. _userid = US.userInfo.userid //登录用户id
  7877. let _iframe;
  7878. let _cid = cid,
  7879. _stage = stage,
  7880. _task = task,
  7881. _tool = tool;
  7882. var _jie = $$("div", {
  7883. "style": {
  7884. "position": "absolute",
  7885. "bottom": "50px",
  7886. "right": "50px",
  7887. "zIndex": "9999",
  7888. "backgroundColor": "#2268bc",
  7889. "color": "#fff",
  7890. "padding": "12px 20px",
  7891. "cursor": "pointer",
  7892. "borderRadius": "4px",
  7893. },
  7894. "innerHTML": "提交作业"
  7895. })
  7896. let aTool = ''
  7897. let _loading = document.createElement('div')
  7898. _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;"
  7899. // _loading.id = "";
  7900. let _lchild = document.createElement('div')
  7901. let _limg = document.createElement('img')
  7902. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7903. _limg.style = "width: 26px;margin-right: 10px;"
  7904. _lchild.appendChild(_limg)
  7905. let _lspan = document.createElement('span')
  7906. _lspan.innerHTML = "上传中..."
  7907. _lchild.appendChild(_lspan)
  7908. _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%);"
  7909. _loading.appendChild(_lchild)
  7910. let _box = $$('div', {
  7911. "style": {
  7912. "position": "relative",
  7913. "width": "100%",
  7914. "height": "100%",
  7915. },
  7916. })
  7917. _box.appendChild(_loading)
  7918. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7919. switch (str) {
  7920. case "whiteboard":
  7921. aTool = 1;
  7922. _iframe = $$("iframe", {
  7923. "frameborder": "no",
  7924. "border": "0",
  7925. "scrolling ": "no",
  7926. "style": {
  7927. "cssText": "border:0;width:100%;height:100%"
  7928. },
  7929. "src": "https://beta.iwb.cocorobo.cn/"
  7930. })
  7931. _box.appendChild(_iframe);
  7932. _box.appendChild(_jie);
  7933. _formdiv = new U.UF.UI.form(
  7934. "电子白板",
  7935. _box, {
  7936. "id": "whiteboard" + cid + stage + task + tool,
  7937. "style": {
  7938. "width": "90%",
  7939. "height": "90%",
  7940. "overflow": 'hidden'
  7941. },
  7942. "onresize": function () { }
  7943. }, {
  7944. closecallback: function () { }
  7945. }, {
  7946. "style": {
  7947. "height": "36px"
  7948. }
  7949. }).form; //创建窗体
  7950. _taskbar = {
  7951. "id": str + _formdiv.id,
  7952. "style": {
  7953. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7954. },
  7955. "name": "电子白板",
  7956. "forms": _formdiv,
  7957. "click": function () {
  7958. U.MD.D.I.openApplication(str, obj, info);
  7959. }
  7960. }
  7961. break;
  7962. case "mind":
  7963. aTool = 3;
  7964. _iframe = $$("iframe", {
  7965. "frameborder": "no",
  7966. "border": "0",
  7967. "scrolling ": "no",
  7968. "style": {
  7969. "cssText": "border:0;width:100%;height:100%"
  7970. },
  7971. "src": "/kityminder-editor/dist/index.html"
  7972. })
  7973. _box.appendChild(_iframe);
  7974. _box.appendChild(_jie);
  7975. _formdiv = new U.UF.UI.form(
  7976. "思维导图",
  7977. _box, { //"/jsmind/example/demo.html"
  7978. "id": "mind" + cid + stage + task + tool,
  7979. "style": {
  7980. "width": "90%",
  7981. "height": "90%",
  7982. "overflow": 'hidden'
  7983. },
  7984. "onresize": function () { }
  7985. }, {
  7986. closecallback: function () { }
  7987. }, {
  7988. "style": {
  7989. "height": "36px"
  7990. }
  7991. }).form; //创建窗体
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7996. },
  7997. "name": "思维导图",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "MindMap":
  8005. aTool = 3;
  8006. _iframe = $$("iframe", {
  8007. "frameborder": "no",
  8008. "border": "0",
  8009. "scrolling ": "no",
  8010. "style": {
  8011. "cssText": "border:0;width:100%;height:100%"
  8012. },
  8013. "src": "//cloud.cocorobo.cn/mind/"
  8014. })
  8015. _box.appendChild(_iframe);
  8016. _box.appendChild(_jie);
  8017. _formdiv = new U.UF.UI.form(
  8018. "思维导图",
  8019. _box, { //"/jsmind/example/demo.html"
  8020. "id": "mind" + cid + stage + task + tool,
  8021. "style": {
  8022. "width": "90%",
  8023. "height": "90%",
  8024. "overflow": 'hidden'
  8025. },
  8026. "onresize": function () { }
  8027. }, {
  8028. closecallback: function () { }
  8029. }, {
  8030. "style": {
  8031. "height": "36px"
  8032. }
  8033. }).form; //创建窗体
  8034. _taskbar = {
  8035. "id": str + _formdiv.id,
  8036. "style": {
  8037. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8038. },
  8039. "name": "思维导图",
  8040. "forms": _formdiv,
  8041. "click": function () {
  8042. U.MD.D.I.openApplication(str, obj, info);
  8043. }
  8044. }
  8045. break;
  8046. case "doc":
  8047. aTool = 6;
  8048. _iframe = $$("iframe", {
  8049. "frameborder": "no",
  8050. "border": "0",
  8051. "scrolling ": "no",
  8052. "style": {
  8053. "cssText": "border:0;width:100%;height:100%"
  8054. },
  8055. "src": "/Office/Word/WordEditArea.htm"
  8056. })
  8057. _box.appendChild(_iframe);
  8058. _box.appendChild(_jie);
  8059. _formdiv = new U.UF.UI.form(
  8060. "协同文档",
  8061. _box, {
  8062. "id": "doc" + cid + stage + task + tool,
  8063. "style": {
  8064. "width": "90%",
  8065. "height": "90%",
  8066. "overflow": 'hidden'
  8067. },
  8068. "onresize": function () { }
  8069. }, {
  8070. closecallback: function () { }
  8071. }, {
  8072. "style": {
  8073. "height": "36px"
  8074. }
  8075. }).form; //创建窗体
  8076. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8077. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8078. })
  8079. _taskbar = {
  8080. "id": str + _formdiv.id,
  8081. "style": {
  8082. "backgroundImage": "url(/img/icon/doc.png)"
  8083. },
  8084. "name": "协同文档",
  8085. "forms": _formdiv,
  8086. "click": function () {
  8087. U.MD.D.I.openApplication(str, obj, info);
  8088. }
  8089. }
  8090. break;
  8091. case "mindNetwork": //好友打开
  8092. aTool = 7;
  8093. _iframe = $$("iframe", {
  8094. "webkitallowfullscreen": "",
  8095. "mozallowfullscreen": "",
  8096. "allowfullscreen": "",
  8097. "frameborder": "no",
  8098. "border": "0",
  8099. "scrolling ": "no",
  8100. "style": {
  8101. "cssText": "border:0; width:100%; height:100%;"
  8102. },
  8103. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8104. })
  8105. _box.appendChild(_iframe);
  8106. _box.appendChild(_jie);
  8107. _formdiv = new U.UF.UI.form(
  8108. "思维网格",
  8109. _box, {
  8110. "id": "mindNetwork" + cid + stage + task + tool,
  8111. "style": {
  8112. "width": "90%",
  8113. "height": "90%",
  8114. "overflow": 'hidden'
  8115. },
  8116. "onresize": function () { }
  8117. }, {
  8118. closecallback: function () { }
  8119. }, {
  8120. "style": {
  8121. "height": "36px"
  8122. }
  8123. }).form; //创建窗体
  8124. _taskbar = {
  8125. "id": str + _formdiv.id,
  8126. "style": {
  8127. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8128. },
  8129. "name": "思维网格",
  8130. "forms": _formdiv,
  8131. "click": function () {
  8132. U.MD.D.I.openApplication(str, obj, info);
  8133. }
  8134. }
  8135. break;
  8136. case "courseDesign":
  8137. _iframe = $$("iframe", {
  8138. "webkitallowfullscreen": "",
  8139. "mozallowfullscreen": "",
  8140. "allowfullscreen": "",
  8141. "frameborder": "no",
  8142. "border": "0",
  8143. "scrolling ": "no",
  8144. "style": {
  8145. "cssText": "border:0; width:100%; height:100%;"
  8146. },
  8147. "src": "/course-design-vue"
  8148. })
  8149. _box.appendChild(_iframe);
  8150. _box.appendChild(_jie);
  8151. _formdiv = new U.UF.UI.form(
  8152. "项目设计",
  8153. _box, {
  8154. "id": "courseDesign" + cid + stage + task + tool,
  8155. "style": {
  8156. "width": "90%",
  8157. "height": "90%",
  8158. "overflow": 'hidden'
  8159. },
  8160. "onresize": function () { }
  8161. }, {
  8162. closecallback: function () { }
  8163. }, {
  8164. "style": {
  8165. "height": "36px"
  8166. }
  8167. }).form; //创建窗体
  8168. _taskbar = {
  8169. "id": str + _formdiv.id,
  8170. "style": {
  8171. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8172. },
  8173. "name": "项目设计",
  8174. "forms": _formdiv,
  8175. "click": function () {
  8176. U.MD.D.I.openApplication(str, obj, info);
  8177. }
  8178. }
  8179. break;
  8180. }
  8181. const script1 = document.createElement("script");
  8182. script1.type = "text/javascript";
  8183. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8184. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8185. const script2 = document.createElement("script");
  8186. script2.type = "text/javascript";
  8187. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8188. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8189. const script3 = document.createElement("script");
  8190. script3.type = "text/javascript";
  8191. script3.charset = "UTF-8";
  8192. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8193. const script4 = document.createElement("script");
  8194. script4.type = "text/javascript";
  8195. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8196. script4.src = window.origin + "/js/Common/jietu2E.js";
  8197. if (_iframe) {
  8198. if (str == 'doc') {
  8199. _iframe = _formdiv.querySelector('iframe')
  8200. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8201. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8202. _iframe.contentWindow.document.body.appendChild(script1);
  8203. _iframe.contentWindow.document.body.appendChild(script2);
  8204. // _iframe.contentWindow.document.body.appendChild(script3);
  8205. _iframe.contentWindow.document.body.appendChild(script4);
  8206. })
  8207. if (onloadListener) {
  8208. _iframe.contentDocument.location.reload()
  8209. } else {
  8210. _iframe.contentDocument.location.reload()
  8211. }
  8212. } else if (str == 'courseDesign') {
  8213. U.UF.DL.iframeLoad(_iframe, function () {
  8214. // _iframe.contentWindow.U.MD.O.W.load();
  8215. // _iframe.contentWindow.document.body.appendChild(script1);
  8216. _iframe.contentWindow.document.body.appendChild(script2);
  8217. _iframe.contentWindow.document.body.appendChild(script4);
  8218. })
  8219. } else if (str == 'mind') {
  8220. _iframe = _formdiv.querySelector('iframe')
  8221. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8222. //
  8223. _iframe.contentWindow.document.body.appendChild(script1);
  8224. _iframe.contentWindow.document.body.appendChild(script2);
  8225. _iframe.contentWindow.document.body.appendChild(script4);
  8226. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8227. })
  8228. if (onloadListener) {
  8229. _iframe.contentDocument.location.reload()
  8230. } else {
  8231. _iframe.contentDocument.location.reload()
  8232. }
  8233. } else if (str == 'whiteboard') {
  8234. _iframe = _formdiv.querySelector('iframe')
  8235. let onloadListener = _iframe.onload = () => {
  8236. _iframe.contentWindow.document.body.appendChild(script1);
  8237. _iframe.contentWindow.document.body.appendChild(script2);
  8238. _iframe.contentWindow.document.body.appendChild(script4);
  8239. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8240. };
  8241. // if (onloadListener) {
  8242. // try {
  8243. // _iframe.src += "?cocorobo="+new Date().getTime()
  8244. // _iframe.contentWindow.document.location.reload()
  8245. // } catch (error) {
  8246. // }
  8247. // } else {
  8248. // _iframe.contentDocument.location.reload()
  8249. // }
  8250. } else {
  8251. _iframe.onload = () => {
  8252. _iframe.contentWindow.document.body.appendChild(script1);
  8253. _iframe.contentWindow.document.body.appendChild(script2);
  8254. // _iframe.contentWindow.document.body.appendChild(script3);
  8255. _iframe.contentWindow.document.body.appendChild(script4);
  8256. };
  8257. }
  8258. _jie.onclick = async () => {
  8259. let text = ''
  8260. if (aTool == 1) {
  8261. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8262. } else if (aTool == 6) {
  8263. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8264. } else if (aTool == 3) {
  8265. text = await U.MD.D.I.getEditorContent(_iframe);
  8266. }
  8267. _loading.style.display = 'flex'
  8268. console.log(_loading);
  8269. var _ajs = _iframe.contentWindow.document.createElement("script");
  8270. _ajs.type = "text/javascript";
  8271. _ajs.innerHTML =
  8272. // 'console.log(' + _loading + ');\n' +
  8273. 'var _js = document.createElement("script");\n' +
  8274. '_js.type="text/javascript";\n' +
  8275. '_js.charset="UTF-8";\n' +
  8276. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8277. "_js.onload = function(){\n" +
  8278. ' var a = document.getElementsByTagName("img")\n' +
  8279. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8280. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8281. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8282. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8283. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8284. "beforeUpload_shishi(file," +
  8285. "'" +
  8286. _userid +
  8287. "'" +
  8288. ", " +
  8289. "'" +
  8290. _cid +
  8291. "'" +
  8292. ", " +
  8293. "'" +
  8294. _stage +
  8295. "'" +
  8296. ", " +
  8297. "'" +
  8298. _task +
  8299. "'" +
  8300. ", " +
  8301. "'" +
  8302. _tool +
  8303. "'" +
  8304. ", " +
  8305. "'" +
  8306. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8307. "'" +
  8308. ", " +
  8309. "'" +
  8310. aTool +
  8311. "'" +
  8312. ", " +
  8313. "`" +
  8314. text +
  8315. "`" +
  8316. ")\n" +
  8317. " });\n" +
  8318. "}\n" +
  8319. "document.head.appendChild(_js);\n";
  8320. _iframe.contentWindow.document.head.appendChild(_ajs);
  8321. }
  8322. }
  8323. //U.MD.D.I.openClick(str);
  8324. //如果有任务栏信息
  8325. // if (_taskbar) {
  8326. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8327. // }
  8328. }
  8329. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8330. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8331. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8332. _userid = student.userid, //登录用户id
  8333. _username = student.student //用户名字
  8334. let _iframe;
  8335. let _cid = cid,
  8336. _stage = stage,
  8337. _task = task,
  8338. _tool = tool;
  8339. var _jie = $$("div", {
  8340. "style": {
  8341. "position": "absolute",
  8342. "bottom": "50px",
  8343. "right": "50px",
  8344. "zIndex": "9999",
  8345. "backgroundColor": "#2268bc",
  8346. "color": "#fff",
  8347. "padding": "12px 20px",
  8348. "cursor": "pointer",
  8349. "borderRadius": "4px",
  8350. },
  8351. "innerHTML": "提交作业"
  8352. })
  8353. let aTool = ''
  8354. let _loading = document.createElement('div')
  8355. _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;"
  8356. // _loading.id = "";
  8357. let _lchild = document.createElement('div')
  8358. let _limg = document.createElement('img')
  8359. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8360. _limg.style = "width: 26px;margin-right: 10px;"
  8361. _lchild.appendChild(_limg)
  8362. let _lspan = document.createElement('span')
  8363. _lspan.innerHTML = "上传中..."
  8364. _lchild.appendChild(_lspan)
  8365. _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%);"
  8366. _loading.appendChild(_lchild)
  8367. var _box = $$('div', {
  8368. "style": {
  8369. "position": "relative",
  8370. "width": "100%",
  8371. "height": "100%",
  8372. },
  8373. })
  8374. _box.appendChild(_loading)
  8375. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8376. switch (str) {
  8377. case "whiteboard":
  8378. aTool = 1;
  8379. _iframe = $$("iframe", {
  8380. "frameborder": "no",
  8381. "border": "0",
  8382. "scrolling ": "no",
  8383. "style": {
  8384. "cssText": "border:0;width:100%;height:100%"
  8385. },
  8386. "src": "https://beta.iwb.cocorobo.cn/"
  8387. })
  8388. _box.appendChild(_iframe);
  8389. _box.appendChild(_jie);
  8390. _formdiv = new U.UF.UI.form(
  8391. "电子白板-" + _username,
  8392. _box, {
  8393. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8394. "style": {
  8395. "width": "90%",
  8396. "height": "90%",
  8397. "overflow": 'hidden'
  8398. },
  8399. "onresize": function () { }
  8400. }, {
  8401. closecallback: function () { }
  8402. }, {
  8403. "style": {
  8404. "height": "36px"
  8405. }
  8406. }).form; //创建窗体
  8407. _taskbar = {
  8408. "id": str + _formdiv.id,
  8409. "style": {
  8410. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8411. },
  8412. "name": "电子白板",
  8413. "forms": _formdiv,
  8414. "click": function () {
  8415. U.MD.D.I.openApplication(str, obj, info);
  8416. }
  8417. }
  8418. break;
  8419. case "mind":
  8420. aTool = 3;
  8421. _iframe = $$("iframe", {
  8422. "frameborder": "no",
  8423. "border": "0",
  8424. "scrolling ": "no",
  8425. "style": {
  8426. "cssText": "border:0;width:100%;height:100%"
  8427. },
  8428. "src": "/kityminder-editor/dist/index.html"
  8429. })
  8430. _box.appendChild(_iframe);
  8431. _box.appendChild(_jie);
  8432. _formdiv = new U.UF.UI.form(
  8433. "思维导图-" + _username,
  8434. _box, { //"/jsmind/example/demo.html"
  8435. "id": "mind" + cid + stage + task + tool + _userid,
  8436. "style": {
  8437. "width": "90%",
  8438. "height": "90%",
  8439. "overflow": 'hidden'
  8440. },
  8441. "onresize": function () { }
  8442. }, {
  8443. closecallback: function () { }
  8444. }, {
  8445. "style": {
  8446. "height": "36px"
  8447. }
  8448. }).form; //创建窗体
  8449. _taskbar = {
  8450. "id": str + _formdiv.id,
  8451. "style": {
  8452. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8453. },
  8454. "name": "思维导图",
  8455. "forms": _formdiv,
  8456. "click": function () {
  8457. U.MD.D.I.openApplication(str, obj, info);
  8458. }
  8459. }
  8460. break;
  8461. case "MindMap":
  8462. aTool = 3;
  8463. _iframe = $$("iframe", {
  8464. "frameborder": "no",
  8465. "border": "0",
  8466. "scrolling ": "no",
  8467. "style": {
  8468. "cssText": "border:0;width:100%;height:100%"
  8469. },
  8470. "src": "//cloud.cocorobo.cn/mind/"
  8471. })
  8472. _box.appendChild(_iframe);
  8473. _box.appendChild(_jie);
  8474. _formdiv = new U.UF.UI.form(
  8475. "思维导图-" + _username,
  8476. _box, { //"/jsmind/example/demo.html"
  8477. "id": "mind" + cid + stage + task + tool + _userid,
  8478. "style": {
  8479. "width": "90%",
  8480. "height": "90%",
  8481. "overflow": 'hidden'
  8482. },
  8483. "onresize": function () { }
  8484. }, {
  8485. closecallback: function () { }
  8486. }, {
  8487. "style": {
  8488. "height": "36px"
  8489. }
  8490. }).form; //创建窗体
  8491. _taskbar = {
  8492. "id": str + _formdiv.id,
  8493. "style": {
  8494. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8495. },
  8496. "name": "思维导图",
  8497. "forms": _formdiv,
  8498. "click": function () {
  8499. U.MD.D.I.openApplication(str, obj, info);
  8500. }
  8501. }
  8502. break;
  8503. case "doc":
  8504. aTool = 6;
  8505. _iframe = $$("iframe", {
  8506. "frameborder": "no",
  8507. "border": "0",
  8508. "scrolling ": "no",
  8509. "style": {
  8510. "cssText": "border:0;width:100%;height:100%"
  8511. },
  8512. "src": "/Office/Word/WordEditArea.htm"
  8513. })
  8514. _box.appendChild(_iframe);
  8515. _box.appendChild(_jie);
  8516. _formdiv = new U.UF.UI.form(
  8517. "协同文档-" + _username,
  8518. _box, {
  8519. "id": "doc" + cid + stage + task + tool + _userid,
  8520. "style": {
  8521. "width": "90%",
  8522. "height": "90%",
  8523. "overflow": 'hidden'
  8524. },
  8525. "onresize": function () { }
  8526. }, {
  8527. closecallback: function () { }
  8528. }, {
  8529. "style": {
  8530. "height": "36px"
  8531. }
  8532. }).form; //创建窗体
  8533. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8534. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8535. })
  8536. _taskbar = {
  8537. "id": str + _formdiv.id,
  8538. "style": {
  8539. "backgroundImage": "url(/img/icon/doc.png)"
  8540. },
  8541. "name": "协同文档",
  8542. "forms": _formdiv,
  8543. "click": function () {
  8544. U.MD.D.I.openApplication(str, obj, info);
  8545. }
  8546. }
  8547. break;
  8548. case "mindNetwork": //好友打开
  8549. aTool = 7;
  8550. _iframe = $$("iframe", {
  8551. "webkitallowfullscreen": "",
  8552. "mozallowfullscreen": "",
  8553. "allowfullscreen": "",
  8554. "frameborder": "no",
  8555. "border": "0",
  8556. "scrolling ": "no",
  8557. "style": {
  8558. "cssText": "border:0; width:100%; height:100%;"
  8559. },
  8560. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8561. })
  8562. _box.appendChild(_iframe);
  8563. _box.appendChild(_jie);
  8564. _formdiv = new U.UF.UI.form(
  8565. "思维网格-" + _username,
  8566. _box, {
  8567. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8568. "style": {
  8569. "width": "90%",
  8570. "height": "90%",
  8571. "overflow": 'hidden'
  8572. },
  8573. "onresize": function () { }
  8574. }, {
  8575. closecallback: function () { }
  8576. }, {
  8577. "style": {
  8578. "height": "36px"
  8579. }
  8580. }).form; //创建窗体
  8581. _taskbar = {
  8582. "id": str + _formdiv.id,
  8583. "style": {
  8584. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8585. },
  8586. "name": "思维网格",
  8587. "forms": _formdiv,
  8588. "click": function () {
  8589. U.MD.D.I.openApplication(str, obj, info);
  8590. }
  8591. }
  8592. break;
  8593. case "courseDesign":
  8594. _iframe = $$("iframe", {
  8595. "webkitallowfullscreen": "",
  8596. "mozallowfullscreen": "",
  8597. "allowfullscreen": "",
  8598. "frameborder": "no",
  8599. "border": "0",
  8600. "scrolling ": "no",
  8601. "style": {
  8602. "cssText": "border:0; width:100%; height:100%;"
  8603. },
  8604. "src": "/course-design-vue"
  8605. })
  8606. _box.appendChild(_iframe);
  8607. _box.appendChild(_jie);
  8608. _formdiv = new U.UF.UI.form(
  8609. "项目设计-" + _username,
  8610. _box, {
  8611. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8612. "style": {
  8613. "width": "90%",
  8614. "height": "90%",
  8615. "overflow": 'hidden'
  8616. },
  8617. "onresize": function () { }
  8618. }, {
  8619. closecallback: function () { }
  8620. }, {
  8621. "style": {
  8622. "height": "36px"
  8623. }
  8624. }).form; //创建窗体
  8625. _taskbar = {
  8626. "id": str + _formdiv.id,
  8627. "style": {
  8628. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8629. },
  8630. "name": "项目设计",
  8631. "forms": _formdiv,
  8632. "click": function () {
  8633. U.MD.D.I.openApplication(str, obj, info);
  8634. }
  8635. }
  8636. break;
  8637. }
  8638. const script1 = document.createElement("script");
  8639. script1.type = "text/javascript";
  8640. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8641. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8642. const script2 = document.createElement("script");
  8643. script2.type = "text/javascript";
  8644. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8645. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8646. const script3 = document.createElement("script");
  8647. script3.type = "text/javascript";
  8648. script3.charset = "UTF-8";
  8649. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8650. const script4 = document.createElement("script");
  8651. script4.type = "text/javascript";
  8652. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8653. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8654. if (_iframe) {
  8655. if (str == 'doc') {
  8656. _iframe = _formdiv.querySelector('iframe')
  8657. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8658. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8659. _iframe.contentWindow.document.body.appendChild(script1);
  8660. _iframe.contentWindow.document.body.appendChild(script2);
  8661. // _iframe.contentWindow.document.body.appendChild(script3);
  8662. _iframe.contentWindow.document.body.appendChild(script4);
  8663. })
  8664. if (onloadListener) {
  8665. _iframe.contentDocument.location.reload()
  8666. } else {
  8667. _iframe.contentDocument.location.reload()
  8668. }
  8669. } else if (str == 'courseDesign') {
  8670. U.UF.DL.iframeLoad(_iframe, function () {
  8671. // _iframe.contentWindow.U.MD.O.W.load();
  8672. // _iframe.contentWindow.document.body.appendChild(script1);
  8673. _iframe.contentWindow.document.body.appendChild(script2);
  8674. _iframe.contentWindow.document.body.appendChild(script4);
  8675. })
  8676. } else if (str == 'mind') {
  8677. _iframe = _formdiv.querySelector('iframe')
  8678. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8679. //
  8680. _iframe.contentWindow.document.body.appendChild(script1);
  8681. _iframe.contentWindow.document.body.appendChild(script2);
  8682. _iframe.contentWindow.document.body.appendChild(script4);
  8683. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8684. })
  8685. if (onloadListener) {
  8686. _iframe.contentDocument.location.reload()
  8687. } else {
  8688. _iframe.contentDocument.location.reload()
  8689. }
  8690. } else if (str == 'whiteboard') {
  8691. _iframe = _formdiv.querySelector('iframe')
  8692. let onloadListener = _iframe.onload = () => {
  8693. _iframe.contentWindow.document.body.appendChild(script1);
  8694. _iframe.contentWindow.document.body.appendChild(script2);
  8695. _iframe.contentWindow.document.body.appendChild(script4);
  8696. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8697. };
  8698. // if (onloadListener) {
  8699. // try {
  8700. // _iframe.src += "?cocorobo="+new Date().getTime()
  8701. // _iframe.contentWindow.document.location.reload()
  8702. // } catch (error) {
  8703. // }
  8704. // } else {
  8705. // _iframe.contentDocument.location.reload()
  8706. // }
  8707. } else {
  8708. _iframe.onload = () => {
  8709. _iframe.contentWindow.document.body.appendChild(script1);
  8710. _iframe.contentWindow.document.body.appendChild(script2);
  8711. // _iframe.contentWindow.document.body.appendChild(script3);
  8712. _iframe.contentWindow.document.body.appendChild(script4);
  8713. };
  8714. }
  8715. _jie.onclick = async () => {
  8716. let text = ''
  8717. if (aTool == 1) {
  8718. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8719. } else if (aTool == 6) {
  8720. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8721. } else if (aTool == 3) {
  8722. text = await U.MD.D.I.getEditorContent(_iframe);
  8723. }
  8724. _loading.style.display = 'flex'
  8725. console.log(_loading);
  8726. var _ajs = _iframe.contentWindow.document.createElement("script");
  8727. _ajs.type = "text/javascript";
  8728. _ajs.innerHTML =
  8729. // 'console.log(' + _loading + ');\n' +
  8730. 'var _js = document.createElement("script");\n' +
  8731. '_js.type="text/javascript";\n' +
  8732. '_js.charset="UTF-8";\n' +
  8733. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8734. "_js.onload = function(){\n" +
  8735. ' var a = document.getElementsByTagName("img")\n' +
  8736. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8737. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8738. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8739. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8740. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8741. "beforeUpload_shishi(file," +
  8742. "'" +
  8743. _userid +
  8744. "'" +
  8745. ", " +
  8746. "'" +
  8747. _cid +
  8748. "'" +
  8749. ", " +
  8750. "'" +
  8751. _stage +
  8752. "'" +
  8753. ", " +
  8754. "'" +
  8755. _task +
  8756. "'" +
  8757. ", " +
  8758. "'" +
  8759. _tool +
  8760. "'" +
  8761. ", " +
  8762. "'" +
  8763. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8764. "'" +
  8765. ", " +
  8766. "'" +
  8767. aTool +
  8768. "'" +
  8769. ", " +
  8770. "`" +
  8771. text +
  8772. "`" +
  8773. ")\n" +
  8774. " });\n" +
  8775. "}\n" +
  8776. "document.head.appendChild(_js);\n";
  8777. _iframe.contentWindow.document.head.appendChild(_ajs);
  8778. }
  8779. }
  8780. }
  8781. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8782. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8783. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8784. _userid = student.userid, //登录用户id
  8785. _username = student.student //用户名字
  8786. let _iframe;
  8787. let _cid = cid,
  8788. _stage = stage,
  8789. _task = task,
  8790. _tool = tool;
  8791. var _jie = $$("div", {
  8792. "style": {
  8793. "position": "absolute",
  8794. "bottom": "50px",
  8795. "right": "50px",
  8796. "zIndex": "9999",
  8797. "backgroundColor": "#2268bc",
  8798. "color": "#fff",
  8799. "padding": "12px 20px",
  8800. "cursor": "pointer",
  8801. "borderRadius": "4px",
  8802. },
  8803. "innerHTML": "提交作业"
  8804. })
  8805. let aTool = ''
  8806. let _loading = document.createElement('div')
  8807. _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;"
  8808. // _loading.id = "";
  8809. let _lchild = document.createElement('div')
  8810. let _limg = document.createElement('img')
  8811. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8812. _limg.style = "width: 26px;margin-right: 10px;"
  8813. _lchild.appendChild(_limg)
  8814. let _lspan = document.createElement('span')
  8815. _lspan.innerHTML = "上传中..."
  8816. _lchild.appendChild(_lspan)
  8817. _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%);"
  8818. _loading.appendChild(_lchild)
  8819. var _box = $$('div', {
  8820. "style": {
  8821. "position": "relative",
  8822. "width": "100%",
  8823. "height": "100%",
  8824. },
  8825. })
  8826. _box.appendChild(_loading)
  8827. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8828. switch (str) {
  8829. case "whiteboard":
  8830. aTool = 1;
  8831. _iframe = $$("iframe", {
  8832. "frameborder": "no",
  8833. "border": "0",
  8834. "scrolling ": "no",
  8835. "style": {
  8836. "cssText": "border:0;width:100%;height:100%"
  8837. },
  8838. "src": "https://beta.iwb.cocorobo.cn/"
  8839. })
  8840. _box.appendChild(_iframe);
  8841. _box.appendChild(_jie);
  8842. _formdiv = new U.UF.UI.form(
  8843. "电子白板-" + _username,
  8844. _box, {
  8845. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8846. "style": {
  8847. "width": "90%",
  8848. "height": "90%",
  8849. "overflow": 'hidden'
  8850. },
  8851. "onresize": function () { }
  8852. }, {
  8853. closecallback: function () { }
  8854. }, {
  8855. "style": {
  8856. "height": "36px"
  8857. }
  8858. }).form; //创建窗体
  8859. _taskbar = {
  8860. "id": str + _formdiv.id,
  8861. "style": {
  8862. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8863. },
  8864. "name": "电子白板",
  8865. "forms": _formdiv,
  8866. "click": function () {
  8867. U.MD.D.I.openApplication(str, obj, info);
  8868. }
  8869. }
  8870. break;
  8871. case "mind":
  8872. aTool = 3;
  8873. _iframe = $$("iframe", {
  8874. "frameborder": "no",
  8875. "border": "0",
  8876. "scrolling ": "no",
  8877. "style": {
  8878. "cssText": "border:0;width:100%;height:100%"
  8879. },
  8880. "src": "/kityminder-editor/dist/index.html"
  8881. })
  8882. _box.appendChild(_iframe);
  8883. _box.appendChild(_jie);
  8884. _formdiv = new U.UF.UI.form(
  8885. "思维导图-" + _username,
  8886. _box, { //"/jsmind/example/demo.html"
  8887. "id": "mind" + cid + stage + task + tool + _userid,
  8888. "style": {
  8889. "width": "90%",
  8890. "height": "90%",
  8891. "overflow": 'hidden'
  8892. },
  8893. "onresize": function () { }
  8894. }, {
  8895. closecallback: function () { }
  8896. }, {
  8897. "style": {
  8898. "height": "36px"
  8899. }
  8900. }).form; //创建窗体
  8901. _taskbar = {
  8902. "id": str + _formdiv.id,
  8903. "style": {
  8904. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8905. },
  8906. "name": "思维导图",
  8907. "forms": _formdiv,
  8908. "click": function () {
  8909. U.MD.D.I.openApplication(str, obj, info);
  8910. }
  8911. }
  8912. break;
  8913. case "MindMap":
  8914. aTool = 3;
  8915. _iframe = $$("iframe", {
  8916. "frameborder": "no",
  8917. "border": "0",
  8918. "scrolling ": "no",
  8919. "style": {
  8920. "cssText": "border:0;width:100%;height:100%"
  8921. },
  8922. "src": "//cloud.cocorobo.cn/mind/"
  8923. })
  8924. _box.appendChild(_iframe);
  8925. _box.appendChild(_jie);
  8926. _formdiv = new U.UF.UI.form(
  8927. "思维导图-" + _username,
  8928. _box, { //"/jsmind/example/demo.html"
  8929. "id": "mind" + cid + stage + task + tool + _userid,
  8930. "style": {
  8931. "width": "90%",
  8932. "height": "90%",
  8933. "overflow": 'hidden'
  8934. },
  8935. "onresize": function () { }
  8936. }, {
  8937. closecallback: function () { }
  8938. }, {
  8939. "style": {
  8940. "height": "36px"
  8941. }
  8942. }).form; //创建窗体
  8943. _taskbar = {
  8944. "id": str + _formdiv.id,
  8945. "style": {
  8946. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8947. },
  8948. "name": "思维导图",
  8949. "forms": _formdiv,
  8950. "click": function () {
  8951. U.MD.D.I.openApplication(str, obj, info);
  8952. }
  8953. }
  8954. break;
  8955. case "doc":
  8956. aTool = 6;
  8957. _iframe = $$("iframe", {
  8958. "frameborder": "no",
  8959. "border": "0",
  8960. "scrolling ": "no",
  8961. "style": {
  8962. "cssText": "border:0;width:100%;height:100%"
  8963. },
  8964. "src": "/Office/Word/WordEditArea.htm"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "协同文档-" + _username,
  8970. _box, {
  8971. "id": "doc" + cid + stage + task + tool + _userid,
  8972. "style": {
  8973. "width": "90%",
  8974. "height": "90%",
  8975. "overflow": 'hidden'
  8976. },
  8977. "onresize": function () { }
  8978. }, {
  8979. closecallback: function () { }
  8980. }, {
  8981. "style": {
  8982. "height": "36px"
  8983. }
  8984. }).form; //创建窗体
  8985. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8986. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8987. })
  8988. _taskbar = {
  8989. "id": str + _formdiv.id,
  8990. "style": {
  8991. "backgroundImage": "url(/img/icon/doc.png)"
  8992. },
  8993. "name": "协同文档",
  8994. "forms": _formdiv,
  8995. "click": function () {
  8996. U.MD.D.I.openApplication(str, obj, info);
  8997. }
  8998. }
  8999. break;
  9000. case "mindNetwork": //好友打开
  9001. aTool = 7;
  9002. _iframe = $$("iframe", {
  9003. "webkitallowfullscreen": "",
  9004. "mozallowfullscreen": "",
  9005. "allowfullscreen": "",
  9006. "frameborder": "no",
  9007. "border": "0",
  9008. "scrolling ": "no",
  9009. "style": {
  9010. "cssText": "border:0; width:100%; height:100%;"
  9011. },
  9012. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9013. })
  9014. _box.appendChild(_iframe);
  9015. _box.appendChild(_jie);
  9016. _formdiv = new U.UF.UI.form(
  9017. "思维网格-" + _username,
  9018. _box, {
  9019. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9020. "style": {
  9021. "width": "90%",
  9022. "height": "90%",
  9023. "overflow": 'hidden'
  9024. },
  9025. "onresize": function () { }
  9026. }, {
  9027. closecallback: function () { }
  9028. }, {
  9029. "style": {
  9030. "height": "36px"
  9031. }
  9032. }).form; //创建窗体
  9033. _taskbar = {
  9034. "id": str + _formdiv.id,
  9035. "style": {
  9036. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9037. },
  9038. "name": "思维网格",
  9039. "forms": _formdiv,
  9040. "click": function () {
  9041. U.MD.D.I.openApplication(str, obj, info);
  9042. }
  9043. }
  9044. break;
  9045. case "courseDesign":
  9046. _iframe = $$("iframe", {
  9047. "webkitallowfullscreen": "",
  9048. "mozallowfullscreen": "",
  9049. "allowfullscreen": "",
  9050. "frameborder": "no",
  9051. "border": "0",
  9052. "scrolling ": "no",
  9053. "style": {
  9054. "cssText": "border:0; width:100%; height:100%;"
  9055. },
  9056. "src": "/course-design-vue"
  9057. })
  9058. _box.appendChild(_iframe);
  9059. _box.appendChild(_jie);
  9060. _formdiv = new U.UF.UI.form(
  9061. "项目设计-" + _username,
  9062. _box, {
  9063. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9064. "style": {
  9065. "width": "90%",
  9066. "height": "90%",
  9067. "overflow": 'hidden'
  9068. },
  9069. "onresize": function () { }
  9070. }, {
  9071. closecallback: function () { }
  9072. }, {
  9073. "style": {
  9074. "height": "36px"
  9075. }
  9076. }).form; //创建窗体
  9077. _taskbar = {
  9078. "id": str + _formdiv.id,
  9079. "style": {
  9080. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9081. },
  9082. "name": "项目设计",
  9083. "forms": _formdiv,
  9084. "click": function () {
  9085. U.MD.D.I.openApplication(str, obj, info);
  9086. }
  9087. }
  9088. break;
  9089. }
  9090. const script1 = document.createElement("script");
  9091. script1.type = "text/javascript";
  9092. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9093. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9094. const script2 = document.createElement("script");
  9095. script2.type = "text/javascript";
  9096. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9097. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9098. const script3 = document.createElement("script");
  9099. script3.type = "text/javascript";
  9100. script3.charset = "UTF-8";
  9101. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9102. const script4 = document.createElement("script");
  9103. script4.type = "text/javascript";
  9104. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9105. script4.src = window.origin + "/js/Common/jietu2E.js";
  9106. if (_iframe) {
  9107. if (str == 'doc') {
  9108. _iframe = _formdiv.querySelector('iframe')
  9109. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9110. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9111. _iframe.contentWindow.document.body.appendChild(script1);
  9112. _iframe.contentWindow.document.body.appendChild(script2);
  9113. // _iframe.contentWindow.document.body.appendChild(script3);
  9114. _iframe.contentWindow.document.body.appendChild(script4);
  9115. })
  9116. if (onloadListener) {
  9117. _iframe.contentDocument.location.reload()
  9118. } else {
  9119. _iframe.contentDocument.location.reload()
  9120. }
  9121. } else if (str == 'courseDesign') {
  9122. U.UF.DL.iframeLoad(_iframe, function () {
  9123. // _iframe.contentWindow.U.MD.O.W.load();
  9124. // _iframe.contentWindow.document.body.appendChild(script1);
  9125. _iframe.contentWindow.document.body.appendChild(script2);
  9126. _iframe.contentWindow.document.body.appendChild(script4);
  9127. })
  9128. } else if (str == 'mind') {
  9129. _iframe = _formdiv.querySelector('iframe')
  9130. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9131. //
  9132. _iframe.contentWindow.document.body.appendChild(script1);
  9133. _iframe.contentWindow.document.body.appendChild(script2);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9136. })
  9137. if (onloadListener) {
  9138. _iframe.contentDocument.location.reload()
  9139. } else {
  9140. _iframe.contentDocument.location.reload()
  9141. }
  9142. } else if (str == 'whiteboard') {
  9143. _iframe = _formdiv.querySelector('iframe')
  9144. let onloadListener = _iframe.onload = () => {
  9145. _iframe.contentWindow.document.body.appendChild(script1);
  9146. _iframe.contentWindow.document.body.appendChild(script2);
  9147. _iframe.contentWindow.document.body.appendChild(script4);
  9148. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9149. };
  9150. // if (onloadListener) {
  9151. // try {
  9152. // _iframe.src += "?cocorobo="+new Date().getTime()
  9153. // _iframe.contentWindow.document.location.reload()
  9154. // } catch (error) {
  9155. // }
  9156. // } else {
  9157. // _iframe.contentDocument.location.reload()
  9158. // }
  9159. } else {
  9160. _iframe.onload = () => {
  9161. _iframe.contentWindow.document.body.appendChild(script1);
  9162. _iframe.contentWindow.document.body.appendChild(script2);
  9163. // _iframe.contentWindow.document.body.appendChild(script3);
  9164. _iframe.contentWindow.document.body.appendChild(script4);
  9165. };
  9166. }
  9167. _jie.onclick = async () => {
  9168. let text = ''
  9169. if (aTool == 1) {
  9170. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9171. } else if (aTool == 6) {
  9172. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9173. } else if (aTool == 3) {
  9174. text = await U.MD.D.I.getEditorContent(_iframe);
  9175. }
  9176. _loading.style.display = 'flex'
  9177. console.log(_loading);
  9178. var _ajs = _iframe.contentWindow.document.createElement("script");
  9179. _ajs.type = "text/javascript";
  9180. _ajs.innerHTML =
  9181. // 'console.log(' + _loading + ');\n' +
  9182. 'var _js = document.createElement("script");\n' +
  9183. '_js.type="text/javascript";\n' +
  9184. '_js.charset="UTF-8";\n' +
  9185. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9186. "_js.onload = function(){\n" +
  9187. ' var a = document.getElementsByTagName("img")\n' +
  9188. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9189. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9190. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9191. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9192. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9193. "beforeUpload_shishi(file," +
  9194. "'" +
  9195. _userid +
  9196. "'" +
  9197. ", " +
  9198. "'" +
  9199. _cid +
  9200. "'" +
  9201. ", " +
  9202. "'" +
  9203. _stage +
  9204. "'" +
  9205. ", " +
  9206. "'" +
  9207. _task +
  9208. "'" +
  9209. ", " +
  9210. "'" +
  9211. _tool +
  9212. "'" +
  9213. ", " +
  9214. "'" +
  9215. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. aTool +
  9220. "'" +
  9221. ", " +
  9222. "`" +
  9223. text +
  9224. "`" +
  9225. ")\n" +
  9226. " });\n" +
  9227. "}\n" +
  9228. "document.head.appendChild(_js);\n";
  9229. _iframe.contentWindow.document.head.appendChild(_ajs);
  9230. }
  9231. }
  9232. }
  9233. U.MD.D.I.getEditorContent = function (iframe) {
  9234. return new Promise((resolve, reject) => {
  9235. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9236. console.log(content);
  9237. resolve(content)
  9238. });
  9239. });
  9240. }
  9241. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9242. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9243. // if (res.value[0].length > 0) {
  9244. // // resolve(res.value[0][0].text);
  9245. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9246. // $(fileInput).val('');
  9247. // });
  9248. // }
  9249. // }, [], { "type": "GET", "withCredentials": true });
  9250. var xmlhttp;
  9251. var Mac, Sn, DeviceId
  9252. if (window.XMLHttpRequest) {
  9253. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9254. xmlhttp = new XMLHttpRequest();
  9255. } else {
  9256. // IE6, IE5 浏览器执行代码
  9257. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9258. }
  9259. xmlhttp.onreadystatechange = function () {
  9260. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9261. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9262. // resolve(res.value[0][0].text);
  9263. if (type == '2') {
  9264. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9265. } else if (type == '3') {
  9266. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9267. }
  9268. } else {
  9269. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9270. }
  9271. }
  9272. }
  9273. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9274. xmlhttp.send();
  9275. }
  9276. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9277. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9278. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9279. _userinfo = US.userInfo, //登录用户信息
  9280. _userid = US.userInfo.userid //登录用户id
  9281. let _iframe;
  9282. let _cid = cid,
  9283. _stage = stage,
  9284. _task = task,
  9285. _tool = tool;
  9286. var _jie = $$("div", {
  9287. "style": {
  9288. "position": "absolute",
  9289. "bottom": "50px",
  9290. "right": "50px",
  9291. "zIndex": "9999",
  9292. "backgroundColor": "#2268bc",
  9293. "color": "#fff",
  9294. "padding": "12px 20px",
  9295. "cursor": "pointer",
  9296. "borderRadius": "4px",
  9297. },
  9298. "innerHTML": "确认并提交"
  9299. })
  9300. let aTool = ''
  9301. let _loading = document.createElement('div')
  9302. _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;"
  9303. // _loading.id = "";
  9304. let _lchild = document.createElement('div')
  9305. let _limg = document.createElement('img')
  9306. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9307. _limg.style = "width: 26px;margin-right: 10px;"
  9308. _lchild.appendChild(_limg)
  9309. let _lspan = document.createElement('span')
  9310. _lspan.innerHTML = "上传中..."
  9311. _lchild.appendChild(_lspan)
  9312. _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%);"
  9313. _loading.appendChild(_lchild)
  9314. var _box = $$('div', {
  9315. "style": {
  9316. "position": "relative",
  9317. "width": "100%",
  9318. "height": "100%",
  9319. },
  9320. })
  9321. _box.appendChild(_loading)
  9322. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9323. switch (str) {
  9324. case "whiteboard":
  9325. aTool = 1;
  9326. _iframe = $$("iframe", {
  9327. "frameborder": "no",
  9328. "border": "0",
  9329. "scrolling ": "no",
  9330. "style": {
  9331. "cssText": "border:0;width:100%;height:100%"
  9332. },
  9333. "src": "https://beta.iwb.cocorobo.cn/"
  9334. })
  9335. _box.appendChild(_iframe);
  9336. _box.appendChild(_jie);
  9337. _formdiv = new U.UF.UI.form(
  9338. "电子白板",
  9339. _box, {
  9340. "id": "whiteboards" + cid + stage + task + tool,
  9341. "style": {
  9342. "width": "90%",
  9343. "height": "90%",
  9344. "overflow": 'hidden'
  9345. },
  9346. "onresize": function () { }
  9347. }, {
  9348. closecallback: function () { }
  9349. }, {
  9350. "style": {
  9351. "height": "36px"
  9352. }
  9353. }).form; //创建窗体
  9354. _taskbar = {
  9355. "id": str + _formdiv.id,
  9356. "style": {
  9357. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9358. },
  9359. "name": "电子白板",
  9360. "forms": _formdiv,
  9361. "click": function () {
  9362. U.MD.D.I.openApplication(str, obj, info);
  9363. }
  9364. }
  9365. break;
  9366. case "mind":
  9367. aTool = 3;
  9368. _iframe = $$("iframe", {
  9369. "frameborder": "no",
  9370. "border": "0",
  9371. "scrolling ": "no",
  9372. "style": {
  9373. "cssText": "border:0;width:100%;height:100%"
  9374. },
  9375. "src": "/kityminder-editor/dist/index.html"
  9376. });
  9377. _box.appendChild(_iframe);
  9378. _box.appendChild(_jie);
  9379. _formdiv = new U.UF.UI.form(
  9380. "思维导图",
  9381. _box, { //"/jsmind/example/demo.html"
  9382. "id": "minds" + cid + stage + task + tool,
  9383. "style": {
  9384. "width": "90%",
  9385. "height": "90%",
  9386. "overflow": 'hidden'
  9387. },
  9388. "onresize": function () { }
  9389. }, {
  9390. closecallback: function () { }
  9391. }, {
  9392. "style": {
  9393. "height": "36px"
  9394. }
  9395. }).form; //创建窗体
  9396. _taskbar = {
  9397. "id": str + _formdiv.id,
  9398. "style": {
  9399. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9400. },
  9401. "name": "思维导图",
  9402. "forms": _formdiv,
  9403. "click": function () {
  9404. U.MD.D.I.openApplication(str, obj, info);
  9405. }
  9406. }
  9407. break;
  9408. case "doc":
  9409. aTool = 6;
  9410. _iframe = $$("iframe", {
  9411. "frameborder": "no",
  9412. "border": "0",
  9413. "scrolling ": "no",
  9414. "style": {
  9415. "cssText": "border:0;width:100%;height:100%"
  9416. },
  9417. "src": "/Office/Word/WordEditArea.htm"
  9418. })
  9419. _box.appendChild(_iframe);
  9420. _box.appendChild(_jie);
  9421. _formdiv = new U.UF.UI.form(
  9422. "协同文档",
  9423. _box, {
  9424. "id": "docs" + cid + stage + task + tool,
  9425. "style": {
  9426. "width": "90%",
  9427. "height": "90%",
  9428. "overflow": 'hidden'
  9429. },
  9430. "onresize": function () { }
  9431. }, {
  9432. closecallback: function () { }
  9433. }, {
  9434. "style": {
  9435. "height": "36px"
  9436. }
  9437. }).form; //创建窗体
  9438. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9439. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9440. })
  9441. _taskbar = {
  9442. "id": str + _formdiv.id,
  9443. "style": {
  9444. "backgroundImage": "url(/img/icon/doc.png)"
  9445. },
  9446. "name": "协同文档",
  9447. "forms": _formdiv,
  9448. "click": function () {
  9449. U.MD.D.I.openApplication(str, obj, info);
  9450. }
  9451. }
  9452. break;
  9453. }
  9454. const script1 = document.createElement("script");
  9455. script1.type = "text/javascript";
  9456. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9457. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9458. const script2 = document.createElement("script");
  9459. script2.type = "text/javascript";
  9460. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9461. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9462. const script3 = document.createElement("script");
  9463. script3.type = "text/javascript";
  9464. script3.charset = "UTF-8";
  9465. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9466. const script4 = document.createElement("script");
  9467. script4.type = "text/javascript";
  9468. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9469. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9470. if (_iframe) {
  9471. if (str == 'doc') {
  9472. _iframe = _formdiv.querySelector('iframe')
  9473. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9474. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9475. _iframe.contentWindow.document.body.appendChild(script1);
  9476. _iframe.contentWindow.document.body.appendChild(script2);
  9477. // _iframe.contentWindow.document.body.appendChild(script3);
  9478. _iframe.contentWindow.document.body.appendChild(script4);
  9479. })
  9480. if (onloadListener) {
  9481. _iframe.contentDocument.location.reload()
  9482. } else {
  9483. _iframe.contentDocument.location.reload()
  9484. }
  9485. } else if (str == 'mind') {
  9486. _iframe = _formdiv.querySelector('iframe')
  9487. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9488. _iframe.contentWindow.document.body.appendChild(script1);
  9489. _iframe.contentWindow.document.body.appendChild(script2);
  9490. _iframe.contentWindow.document.body.appendChild(script4);
  9491. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9492. })
  9493. if (onloadListener) {
  9494. _iframe.contentDocument.location.reload()
  9495. } else {
  9496. _iframe.contentDocument.location.reload()
  9497. }
  9498. } else {
  9499. _iframe.onload = () => {
  9500. _iframe.contentWindow.document.body.appendChild(script1);
  9501. _iframe.contentWindow.document.body.appendChild(script2);
  9502. // _iframe.contentWindow.document.body.appendChild(script3);
  9503. _iframe.contentWindow.document.body.appendChild(script4);
  9504. };
  9505. }
  9506. _jie.onclick = async () => {
  9507. let text = ''
  9508. if (aTool == 6) {
  9509. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9510. } else if (aTool == 3) {
  9511. text = await U.MD.D.I.getEditorContent(_iframe);
  9512. }
  9513. _loading.style.display = 'flex'
  9514. console.log(_loading);
  9515. var _ajs = _iframe.contentWindow.document.createElement("script");
  9516. _ajs.type = "text/javascript";
  9517. _ajs.innerHTML =
  9518. // 'console.log(' + _loading + ');\n' +
  9519. 'var _js = document.createElement("script");\n' +
  9520. '_js.type="text/javascript";\n' +
  9521. '_js.charset="UTF-8";\n' +
  9522. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9523. "_js.onload = function(){\n" +
  9524. ' var a = document.getElementsByTagName("img")\n' +
  9525. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9526. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9527. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9528. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9529. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9530. "beforeUpload_shishi(file," +
  9531. "'" +
  9532. _userid +
  9533. "'" +
  9534. ", " +
  9535. "'" +
  9536. _cid +
  9537. "'" +
  9538. ", " +
  9539. "'" +
  9540. _stage +
  9541. "'" +
  9542. ", " +
  9543. "'" +
  9544. _task +
  9545. "'" +
  9546. ", " +
  9547. "'" +
  9548. _tool +
  9549. "'" +
  9550. ", " +
  9551. "'" +
  9552. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9553. "'" +
  9554. ", " +
  9555. "'" +
  9556. aTool +
  9557. "'" +
  9558. ", " +
  9559. "`" +
  9560. text +
  9561. "`" +
  9562. ")\n" +
  9563. " });\n" +
  9564. "}\n" +
  9565. "document.head.appendChild(_js);\n";
  9566. _iframe.contentWindow.document.head.appendChild(_ajs);
  9567. }
  9568. }
  9569. //U.MD.D.I.openClick(str);
  9570. //如果有任务栏信息
  9571. // if (_taskbar) {
  9572. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9573. // }
  9574. }
  9575. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9576. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9577. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9578. _userinfo = US.userInfo, //登录用户信息
  9579. _userid = US.userInfo.userid //登录用户id
  9580. let _iframe;
  9581. let _cid = cid,
  9582. _stage = stage,
  9583. _task = task,
  9584. _tool = tool;
  9585. var _jie = $$("div", {
  9586. "style": {
  9587. "position": "absolute",
  9588. "bottom": "50px",
  9589. "right": "50px",
  9590. "zIndex": "9999",
  9591. "backgroundColor": "#2268bc",
  9592. "color": "#fff",
  9593. "padding": "12px 20px",
  9594. "cursor": "pointer",
  9595. "borderRadius": "4px",
  9596. },
  9597. "innerHTML": "确认并提交"
  9598. })
  9599. let aTool = ''
  9600. let _loading = document.createElement('div')
  9601. _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;"
  9602. // _loading.id = "";
  9603. let _lchild = document.createElement('div')
  9604. let _limg = document.createElement('img')
  9605. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9606. _limg.style = "width: 26px;margin-right: 10px;"
  9607. _lchild.appendChild(_limg)
  9608. let _lspan = document.createElement('span')
  9609. _lspan.innerHTML = "上传中..."
  9610. _lchild.appendChild(_lspan)
  9611. _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%);"
  9612. _loading.appendChild(_lchild)
  9613. var _box = $$('div', {
  9614. "style": {
  9615. "position": "relative",
  9616. "width": "100%",
  9617. "height": "100%",
  9618. },
  9619. })
  9620. _box.appendChild(_loading)
  9621. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9622. switch (str) {
  9623. case "whiteboard":
  9624. aTool = 1;
  9625. _iframe = $$("iframe", {
  9626. "frameborder": "no",
  9627. "border": "0",
  9628. "scrolling ": "no",
  9629. "style": {
  9630. "cssText": "border:0;width:100%;height:100%"
  9631. },
  9632. "src": "https://beta.iwb.cocorobo.cn/"
  9633. })
  9634. _box.appendChild(_iframe);
  9635. _box.appendChild(_jie);
  9636. _formdiv = new U.UF.UI.form(
  9637. "电子白板",
  9638. _box, {
  9639. "id": "whiteboards" + cid + stage + task + tool,
  9640. "style": {
  9641. "width": "90%",
  9642. "height": "90%",
  9643. "overflow": 'hidden'
  9644. },
  9645. "onresize": function () { }
  9646. }, {
  9647. closecallback: function () { }
  9648. }, {
  9649. "style": {
  9650. "height": "36px"
  9651. }
  9652. }).form; //创建窗体
  9653. _taskbar = {
  9654. "id": str + _formdiv.id,
  9655. "style": {
  9656. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9657. },
  9658. "name": "电子白板",
  9659. "forms": _formdiv,
  9660. "click": function () {
  9661. U.MD.D.I.openApplication(str, obj, info);
  9662. }
  9663. }
  9664. break;
  9665. case "mind":
  9666. aTool = 3;
  9667. _iframe = $$("iframe", {
  9668. "frameborder": "no",
  9669. "border": "0",
  9670. "scrolling ": "no",
  9671. "style": {
  9672. "cssText": "border:0;width:100%;height:100%"
  9673. },
  9674. "src": "/kityminder-editor/dist/index.html"
  9675. });
  9676. _box.appendChild(_iframe);
  9677. _box.appendChild(_jie);
  9678. _formdiv = new U.UF.UI.form(
  9679. "思维导图",
  9680. _box, { //"/jsmind/example/demo.html"
  9681. "id": "minds" + cid + stage + task + tool,
  9682. "style": {
  9683. "width": "90%",
  9684. "height": "90%",
  9685. "overflow": 'hidden'
  9686. },
  9687. "onresize": function () { }
  9688. }, {
  9689. closecallback: function () { }
  9690. }, {
  9691. "style": {
  9692. "height": "36px"
  9693. }
  9694. }).form; //创建窗体
  9695. _taskbar = {
  9696. "id": str + _formdiv.id,
  9697. "style": {
  9698. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9699. },
  9700. "name": "思维导图",
  9701. "forms": _formdiv,
  9702. "click": function () {
  9703. U.MD.D.I.openApplication(str, obj, info);
  9704. }
  9705. }
  9706. break;
  9707. case "doc":
  9708. aTool = 6;
  9709. _iframe = $$("iframe", {
  9710. "frameborder": "no",
  9711. "border": "0",
  9712. "scrolling ": "no",
  9713. "style": {
  9714. "cssText": "border:0;width:100%;height:100%"
  9715. },
  9716. "src": "/Office/Word/WordEditArea.htm"
  9717. })
  9718. _box.appendChild(_iframe);
  9719. _box.appendChild(_jie);
  9720. _formdiv = new U.UF.UI.form(
  9721. "协同文档",
  9722. _box, {
  9723. "id": "docs" + cid + stage + task + tool,
  9724. "style": {
  9725. "width": "90%",
  9726. "height": "90%",
  9727. "overflow": 'hidden'
  9728. },
  9729. "onresize": function () { }
  9730. }, {
  9731. closecallback: function () { }
  9732. }, {
  9733. "style": {
  9734. "height": "36px"
  9735. }
  9736. }).form; //创建窗体
  9737. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9738. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9739. })
  9740. _taskbar = {
  9741. "id": str + _formdiv.id,
  9742. "style": {
  9743. "backgroundImage": "url(/img/icon/doc.png)"
  9744. },
  9745. "name": "协同文档",
  9746. "forms": _formdiv,
  9747. "click": function () {
  9748. U.MD.D.I.openApplication(str, obj, info);
  9749. }
  9750. }
  9751. break;
  9752. }
  9753. const script1 = document.createElement("script");
  9754. script1.type = "text/javascript";
  9755. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9756. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9757. const script2 = document.createElement("script");
  9758. script2.type = "text/javascript";
  9759. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9760. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9761. const script3 = document.createElement("script");
  9762. script3.type = "text/javascript";
  9763. script3.charset = "UTF-8";
  9764. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9765. const script4 = document.createElement("script");
  9766. script4.type = "text/javascript";
  9767. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9768. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9769. if (_iframe) {
  9770. if (str == 'doc') {
  9771. _iframe = _formdiv.querySelector('iframe')
  9772. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9773. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9774. _iframe.contentWindow.document.body.appendChild(script1);
  9775. _iframe.contentWindow.document.body.appendChild(script2);
  9776. // _iframe.contentWindow.document.body.appendChild(script3);
  9777. _iframe.contentWindow.document.body.appendChild(script4);
  9778. })
  9779. if (onloadListener) {
  9780. _iframe.contentDocument.location.reload()
  9781. } else {
  9782. _iframe.contentDocument.location.reload()
  9783. }
  9784. } else if (str == 'mind') {
  9785. _iframe = _formdiv.querySelector('iframe')
  9786. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9787. _iframe.contentWindow.document.body.appendChild(script1);
  9788. _iframe.contentWindow.document.body.appendChild(script2);
  9789. _iframe.contentWindow.document.body.appendChild(script4);
  9790. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9791. })
  9792. if (onloadListener) {
  9793. _iframe.contentDocument.location.reload()
  9794. } else {
  9795. _iframe.contentDocument.location.reload()
  9796. }
  9797. } else {
  9798. _iframe.onload = () => {
  9799. _iframe.contentWindow.document.body.appendChild(script1);
  9800. _iframe.contentWindow.document.body.appendChild(script2);
  9801. // _iframe.contentWindow.document.body.appendChild(script3);
  9802. _iframe.contentWindow.document.body.appendChild(script4);
  9803. };
  9804. }
  9805. _jie.onclick = async () => {
  9806. let text = ''
  9807. if (aTool == 6) {
  9808. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9809. } else if (aTool == 3) {
  9810. text = await U.MD.D.I.getEditorContent(_iframe);
  9811. }
  9812. _loading.style.display = 'flex'
  9813. console.log(_loading);
  9814. var _ajs = _iframe.contentWindow.document.createElement("script");
  9815. _ajs.type = "text/javascript";
  9816. _ajs.innerHTML =
  9817. // 'console.log(' + _loading + ');\n' +
  9818. 'var _js = document.createElement("script");\n' +
  9819. '_js.type="text/javascript";\n' +
  9820. '_js.charset="UTF-8";\n' +
  9821. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9822. "_js.onload = function(){\n" +
  9823. ' var a = document.getElementsByTagName("img")\n' +
  9824. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9825. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9826. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9827. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9828. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9829. "beforeUpload_shishi(file," +
  9830. "'" +
  9831. _userid +
  9832. "'" +
  9833. ", " +
  9834. "'" +
  9835. _cid +
  9836. "'" +
  9837. ", " +
  9838. "'" +
  9839. _stage +
  9840. "'" +
  9841. ", " +
  9842. "'" +
  9843. _task +
  9844. "'" +
  9845. ", " +
  9846. "'" +
  9847. _tool +
  9848. "'" +
  9849. ", " +
  9850. "'" +
  9851. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9852. "'" +
  9853. ", " +
  9854. "'" +
  9855. aTool +
  9856. "'" +
  9857. ", " +
  9858. "`" +
  9859. text +
  9860. "`" +
  9861. ")\n" +
  9862. " });\n" +
  9863. "}\n" +
  9864. "document.head.appendChild(_js);\n";
  9865. _iframe.contentWindow.document.head.appendChild(_ajs);
  9866. }
  9867. }
  9868. //U.MD.D.I.openClick(str);
  9869. //如果有任务栏信息
  9870. // if (_taskbar) {
  9871. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9872. // }
  9873. }
  9874. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9875. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9876. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9877. _userinfo = US.userInfo, //登录用户信息
  9878. _userid = US.userInfo.userid //登录用户id
  9879. let _iframe;
  9880. let _cid = cid,
  9881. _stage = stage,
  9882. _task = task,
  9883. _tool = tool;
  9884. var _jie = $$("div", {
  9885. "style": {
  9886. "position": "absolute",
  9887. "bottom": "50px",
  9888. "right": "50px",
  9889. "zIndex": "9999",
  9890. "backgroundColor": "#2268bc",
  9891. "color": "#fff",
  9892. "padding": "12px 20px",
  9893. "cursor": "pointer",
  9894. "borderRadius": "4px",
  9895. },
  9896. "innerHTML": "上传模板"
  9897. })
  9898. let aTool = ''
  9899. let _loading = document.createElement('div')
  9900. _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;"
  9901. // _loading.id = "";
  9902. let _lchild = document.createElement('div')
  9903. let _limg = document.createElement('img')
  9904. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9905. _limg.style = "width: 26px;margin-right: 10px;"
  9906. _lchild.appendChild(_limg)
  9907. let _lspan = document.createElement('span')
  9908. _lspan.innerHTML = "上传中..."
  9909. _lchild.appendChild(_lspan)
  9910. _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%);"
  9911. _loading.appendChild(_lchild)
  9912. var _box = $$('div', {
  9913. "style": {
  9914. "position": "relative",
  9915. "width": "100%",
  9916. "height": "100%",
  9917. },
  9918. })
  9919. _box.appendChild(_loading)
  9920. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9921. switch (str) {
  9922. case "whiteboard":
  9923. aTool = 1;
  9924. _iframe = $$("iframe", {
  9925. "frameborder": "no",
  9926. "border": "0",
  9927. "scrolling ": "no",
  9928. "style": {
  9929. "cssText": "border:0;width:100%;height:100%"
  9930. },
  9931. "src": "https://beta.iwb.cocorobo.cn/"
  9932. })
  9933. _box.appendChild(_iframe);
  9934. _box.appendChild(_jie);
  9935. _formdiv = new U.UF.UI.form(
  9936. "电子白板",
  9937. _box, {
  9938. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9939. "style": {
  9940. "width": "90%",
  9941. "height": "90%",
  9942. "overflow": 'hidden'
  9943. },
  9944. "onresize": function () { }
  9945. }, {
  9946. closecallback: function () { }
  9947. }, {
  9948. "style": {
  9949. "height": "36px"
  9950. }
  9951. }).form; //创建窗体
  9952. _taskbar = {
  9953. "id": str + _formdiv.id,
  9954. "style": {
  9955. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9956. },
  9957. "name": "电子白板",
  9958. "forms": _formdiv,
  9959. "click": function () {
  9960. U.MD.D.I.openApplication(str, obj, info);
  9961. }
  9962. }
  9963. break;
  9964. case "mind":
  9965. aTool = 3;
  9966. _iframe = $$("iframe", {
  9967. "frameborder": "no",
  9968. "border": "0",
  9969. "scrolling ": "no",
  9970. "style": {
  9971. "cssText": "border:0;width:100%;height:100%"
  9972. },
  9973. "src": "/kityminder-editor/dist/index.html"
  9974. });
  9975. _box.appendChild(_iframe);
  9976. _box.appendChild(_jie);
  9977. _formdiv = new U.UF.UI.form(
  9978. "思维导图",
  9979. _box, { //"/jsmind/example/demo.html"
  9980. "id": "minds_Yu" + cid + stage + task + tool,
  9981. "style": {
  9982. "width": "90%",
  9983. "height": "90%",
  9984. "overflow": 'hidden'
  9985. },
  9986. "onresize": function () { }
  9987. }, {
  9988. closecallback: function () { }
  9989. }, {
  9990. "style": {
  9991. "height": "36px"
  9992. }
  9993. }).form; //创建窗体
  9994. _taskbar = {
  9995. "id": str + _formdiv.id,
  9996. "style": {
  9997. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9998. },
  9999. "name": "思维导图",
  10000. "forms": _formdiv,
  10001. "click": function () {
  10002. U.MD.D.I.openApplication(str, obj, info);
  10003. }
  10004. }
  10005. break;
  10006. case "doc":
  10007. aTool = 6;
  10008. _iframe = $$("iframe", {
  10009. "frameborder": "no",
  10010. "border": "0",
  10011. "scrolling ": "no",
  10012. "style": {
  10013. "cssText": "border:0;width:100%;height:100%"
  10014. },
  10015. "src": "/Office/Word/WordEditArea.htm"
  10016. })
  10017. _box.appendChild(_iframe);
  10018. _box.appendChild(_jie);
  10019. _formdiv = new U.UF.UI.form(
  10020. "协同文档",
  10021. _box, {
  10022. "id": "docs_Yu" + cid + stage + task + tool,
  10023. "style": {
  10024. "width": "90%",
  10025. "height": "90%",
  10026. "overflow": 'hidden'
  10027. },
  10028. "onresize": function () { }
  10029. }, {
  10030. closecallback: function () { }
  10031. }, {
  10032. "style": {
  10033. "height": "36px"
  10034. }
  10035. }).form; //创建窗体
  10036. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10037. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10038. })
  10039. _taskbar = {
  10040. "id": str + _formdiv.id,
  10041. "style": {
  10042. "backgroundImage": "url(/img/icon/doc.png)"
  10043. },
  10044. "name": "协同文档",
  10045. "forms": _formdiv,
  10046. "click": function () {
  10047. U.MD.D.I.openApplication(str, obj, info);
  10048. }
  10049. }
  10050. break;
  10051. case "CocoPi":
  10052. aTool = 57;
  10053. _iframe = $$("iframe", {
  10054. "allowpaymentrequest": "allowpaymentrequest",
  10055. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10056. "webkitallowfullscreen": "",
  10057. "mozallowfullscreen": "",
  10058. "frameborder": "no",
  10059. "border": "0",
  10060. "scrolling ": "no",
  10061. "style": {
  10062. "cssText": "border:0;width:100%;height:100%"
  10063. },
  10064. "src": "https://pi.cocorobo.cn/"
  10065. })
  10066. _box.appendChild(_iframe);
  10067. _box.appendChild(_jie);
  10068. _formdiv = new U.UF.UI.form(
  10069. "CocoPi",
  10070. _box, {
  10071. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10072. "style": {
  10073. "width": "90%",
  10074. "height": "90%",
  10075. "overflow": 'hidden'
  10076. },
  10077. "onresize": function () { }
  10078. }, {
  10079. closecallback: function () { }
  10080. }, {
  10081. "style": {
  10082. "height": "36px"
  10083. }
  10084. }).form; //创建窗体
  10085. _taskbar = {
  10086. "id": str + _formdiv.id,
  10087. "style": {
  10088. "backgroundImage": "url(/img/icon/cocopi.png)"
  10089. },
  10090. "name": "CocoPi",
  10091. "forms": _formdiv,
  10092. "click": function () {
  10093. U.MD.D.I.openApplication(str, obj, info);
  10094. }
  10095. }
  10096. break;
  10097. }
  10098. if (_iframe) {
  10099. if (str == 'doc') {
  10100. _iframe = _formdiv.querySelector('iframe')
  10101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10102. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10103. })
  10104. if (onloadListener) {
  10105. _iframe.contentDocument.location.reload()
  10106. } else {
  10107. _iframe.contentDocument.location.reload()
  10108. }
  10109. } else if (str == 'mind') {
  10110. _iframe = _formdiv.querySelector('iframe')
  10111. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10112. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10113. })
  10114. if (onloadListener) {
  10115. _iframe.contentDocument.location.reload()
  10116. } else {
  10117. _iframe.contentDocument.location.reload()
  10118. }
  10119. } else if (str == 'whiteboard') {
  10120. _iframe = _formdiv.querySelector('iframe')
  10121. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10122. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10123. })
  10124. // if (onloadListener) {
  10125. // try {
  10126. // _iframe.src += "?cocorobo="+new Date().getTime()
  10127. // _iframe.contentWindow.document.location.reload()
  10128. // } catch (error) {
  10129. // }
  10130. // } else {
  10131. // _iframe.contentDocument.location.reload()
  10132. // }
  10133. } else if (str == 'CocoPi') {
  10134. _iframe = _formdiv.querySelector('iframe')
  10135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10136. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10137. })
  10138. if (onloadListener) {
  10139. _iframe.contentDocument.location.reload()
  10140. } else {
  10141. _iframe.contentDocument.location.reload()
  10142. }
  10143. } else {
  10144. _iframe.onload = () => { };
  10145. }
  10146. _jie.onclick = async () => {
  10147. let text = ''
  10148. let type = '2'
  10149. if (aTool == 1) {
  10150. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10151. type = '3'
  10152. } else if (aTool == 6) {
  10153. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10154. type = '1'
  10155. } else if (aTool == 3) {
  10156. text = await U.MD.D.I.getEditorContent(_iframe);
  10157. type = '2'
  10158. } else if (aTool == 57) {
  10159. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10160. type = '4'
  10161. }
  10162. _loading.style.display = 'flex'
  10163. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10164. }
  10165. }
  10166. //U.MD.D.I.openClick(str);
  10167. //如果有任务栏信息
  10168. // if (_taskbar) {
  10169. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10170. // }
  10171. }
  10172. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10173. var xmlhttp;
  10174. var Mac, Sn, DeviceId
  10175. if (window.XMLHttpRequest) {
  10176. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10177. xmlhttp = new XMLHttpRequest();
  10178. } else {
  10179. // IE6, IE5 浏览器执行代码
  10180. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10181. }
  10182. xmlhttp.onreadystatechange = function () {
  10183. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10184. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10185. // resolve(res.value[0][0].text);
  10186. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10187. }
  10188. }
  10189. }
  10190. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10191. xmlhttp.send();
  10192. }
  10193. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10194. var xmlhttp;
  10195. var Mac, Sn, DeviceId
  10196. if (window.XMLHttpRequest) {
  10197. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10198. xmlhttp = new XMLHttpRequest();
  10199. } else {
  10200. // IE6, IE5 浏览器执行代码
  10201. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10202. }
  10203. xmlhttp.onreadystatechange = function () {
  10204. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10205. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10206. // resolve(res.value[0][0].text);
  10207. if (type == '2') {
  10208. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10209. } else if (type == '3') {
  10210. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10211. } else if (type == '4') {
  10212. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10213. }
  10214. } else {
  10215. if (type == '2') {
  10216. iframe.contentWindow.editor.minder.importData('json', '')
  10217. } else if (type == '3') {
  10218. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10219. } else if (type == '4') {
  10220. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10221. }
  10222. }
  10223. }
  10224. }
  10225. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10226. xmlhttp.send();
  10227. }
  10228. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10229. var xmlhttp;
  10230. var Mac, Sn, DeviceId
  10231. if (window.XMLHttpRequest) {
  10232. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10233. xmlhttp = new XMLHttpRequest();
  10234. } else {
  10235. // IE6, IE5 浏览器执行代码
  10236. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10237. }
  10238. xmlhttp.onreadystatechange = function () {
  10239. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10240. if (xmlhttp.response) {
  10241. // resolve(res.value[0][0].text);
  10242. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10243. // $(fileInput).val('');
  10244. // });
  10245. span.innerHTML = '上传成功'
  10246. setTimeout(() => {
  10247. loading.style.display = 'none'
  10248. }, 1000);
  10249. }
  10250. }
  10251. }
  10252. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10253. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10254. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10255. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10256. // 设置请求头,表示请求体的编码格式
  10257. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10258. // 设置请求体,使用url-encoded格式的数据
  10259. }
  10260. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10261. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10262. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10263. _userinfo = US.userInfo, //登录用户信息
  10264. _userid = US.userInfo.userid //登录用户id
  10265. let _iframe;
  10266. let _cid = cid,
  10267. _stage = stage,
  10268. _task = task,
  10269. _tool = tool;
  10270. var _jie = $$("div", {
  10271. "style": {
  10272. "position": "absolute",
  10273. "bottom": "50px",
  10274. "right": "50px",
  10275. "zIndex": "9999",
  10276. "backgroundColor": "#2268bc",
  10277. "color": "#fff",
  10278. "padding": "12px 20px",
  10279. "cursor": "pointer",
  10280. "borderRadius": "4px",
  10281. },
  10282. "innerHTML": "提交作业"
  10283. })
  10284. let aTool = ''
  10285. let _loading = document.createElement('div')
  10286. _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;"
  10287. // _loading.id = "";
  10288. let _lchild = document.createElement('div')
  10289. let _limg = document.createElement('img')
  10290. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10291. _limg.style = "width: 26px;margin-right: 10px;"
  10292. _lchild.appendChild(_limg)
  10293. let _lspan = document.createElement('span')
  10294. _lspan.innerHTML = "上传中..."
  10295. _lchild.appendChild(_lspan)
  10296. _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%);"
  10297. _loading.appendChild(_lchild)
  10298. var _box = $$('div', {
  10299. "style": {
  10300. "position": "relative",
  10301. "width": "100%",
  10302. "height": "100%",
  10303. },
  10304. })
  10305. _box.appendChild(_loading)
  10306. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10307. switch (str) {
  10308. case "CocoPi":
  10309. aTool = 57;
  10310. _iframe = $$("iframe", {
  10311. "allowpaymentrequest": "allowpaymentrequest",
  10312. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10313. "webkitallowfullscreen": "",
  10314. "mozallowfullscreen": "",
  10315. "frameborder": "no",
  10316. "border": "0",
  10317. "scrolling ": "no",
  10318. "style": {
  10319. "cssText": "border:0;width:100%;height:100%"
  10320. },
  10321. "src": "https://pi.cocorobo.cn/"
  10322. })
  10323. _box.appendChild(_iframe);
  10324. _box.appendChild(_jie);
  10325. _formdiv = new U.UF.UI.form(
  10326. "CocoPi",
  10327. _box, {
  10328. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10329. "style": {
  10330. "width": "90%",
  10331. "height": "90%",
  10332. "overflow": 'hidden'
  10333. },
  10334. "onresize": function () { }
  10335. }, {
  10336. closecallback: function () { }
  10337. }, {
  10338. "style": {
  10339. "height": "36px"
  10340. }
  10341. }).form; //创建窗体
  10342. _taskbar = {
  10343. "id": str + _formdiv.id,
  10344. "style": {
  10345. "backgroundImage": "url(/img/icon/cocopi.png)"
  10346. },
  10347. "name": "CocoPi",
  10348. "forms": _formdiv,
  10349. "click": function () {
  10350. U.MD.D.I.openApplication(str, obj, info);
  10351. }
  10352. }
  10353. break;
  10354. }
  10355. if (_iframe) {
  10356. if (str == 'CocoPi') {
  10357. _iframe = _formdiv.querySelector('iframe')
  10358. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10359. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10360. })
  10361. if (onloadListener) {
  10362. _iframe.contentDocument.location.reload()
  10363. } else {
  10364. _iframe.contentDocument.location.reload()
  10365. }
  10366. }
  10367. _jie.onclick = async () => {
  10368. let text = ''
  10369. if (aTool == 57) {
  10370. text = _iframe.contentWindow.getLoadXmlStr()
  10371. }
  10372. _loading.style.display = 'flex'
  10373. console.log(_loading);
  10374. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10375. _loading.style.display = 'none'
  10376. let _div = document.createElement('div')
  10377. _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;"
  10378. let _inner = document.createElement('div')
  10379. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10380. _inner.innerHTML = "上传成功"
  10381. _div.appendChild(_inner)
  10382. _iframe.contentWindow.window.document.body.appendChild(_div)
  10383. _div.onclick = () => {
  10384. _iframe.contentWindow.window.document.body.removeChild(_div)
  10385. }
  10386. setTimeout(() => {
  10387. _iframe.contentWindow.window.document.body.removeChild(_div)
  10388. }, 1000);
  10389. }, [], { "type": "POST", "withCredentials": true });
  10390. }
  10391. }
  10392. }
  10393. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10394. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10395. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10396. _userid = student.userid, //登录用户id
  10397. _username = student.student //用户名字
  10398. let _iframe;
  10399. let _cid = cid,
  10400. _stage = stage,
  10401. _task = task,
  10402. _tool = tool;
  10403. var _jie = $$("div", {
  10404. "style": {
  10405. "position": "absolute",
  10406. "bottom": "50px",
  10407. "right": "50px",
  10408. "zIndex": "9999",
  10409. "backgroundColor": "#2268bc",
  10410. "color": "#fff",
  10411. "padding": "12px 20px",
  10412. "cursor": "pointer",
  10413. "borderRadius": "4px",
  10414. },
  10415. "innerHTML": "提交作业"
  10416. })
  10417. let aTool = ''
  10418. let _loading = document.createElement('div')
  10419. _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;"
  10420. // _loading.id = "";
  10421. let _lchild = document.createElement('div')
  10422. let _limg = document.createElement('img')
  10423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10424. _limg.style = "width: 26px;margin-right: 10px;"
  10425. _lchild.appendChild(_limg)
  10426. let _lspan = document.createElement('span')
  10427. _lspan.innerHTML = "上传中..."
  10428. _lchild.appendChild(_lspan)
  10429. _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%);"
  10430. _loading.appendChild(_lchild)
  10431. var _box = $$('div', {
  10432. "style": {
  10433. "position": "relative",
  10434. "width": "100%",
  10435. "height": "100%",
  10436. },
  10437. })
  10438. _box.appendChild(_loading)
  10439. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10440. switch (str) {
  10441. case "CocoPi":
  10442. aTool = 57;
  10443. _iframe = $$("iframe", {
  10444. "allowpaymentrequest": "allowpaymentrequest",
  10445. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10446. "webkitallowfullscreen": "",
  10447. "mozallowfullscreen": "",
  10448. "frameborder": "no",
  10449. "border": "0",
  10450. "scrolling ": "no",
  10451. "style": {
  10452. "cssText": "border:0;width:100%;height:100%"
  10453. },
  10454. "src": "https://pi.cocorobo.cn/"
  10455. })
  10456. _box.appendChild(_iframe);
  10457. _box.appendChild(_jie);
  10458. _formdiv = new U.UF.UI.form(
  10459. "CocoPi-" + _username,
  10460. _box, {
  10461. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10462. "style": {
  10463. "width": "90%",
  10464. "height": "90%",
  10465. "overflow": 'hidden'
  10466. },
  10467. "onresize": function () { }
  10468. }, {
  10469. closecallback: function () { }
  10470. }, {
  10471. "style": {
  10472. "height": "36px"
  10473. }
  10474. }).form; //创建窗体
  10475. _taskbar = {
  10476. "id": str + _formdiv.id,
  10477. "style": {
  10478. "backgroundImage": "url(/img/icon/cocopi.png)"
  10479. },
  10480. "name": "CocoPi",
  10481. "forms": _formdiv,
  10482. "click": function () {
  10483. U.MD.D.I.openApplication(str, obj, info);
  10484. }
  10485. }
  10486. break;
  10487. }
  10488. if (_iframe) {
  10489. if (str == 'CocoPi') {
  10490. _iframe = _formdiv.querySelector('iframe')
  10491. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10492. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10493. })
  10494. if (onloadListener) {
  10495. _iframe.contentDocument.location.reload()
  10496. } else {
  10497. _iframe.contentDocument.location.reload()
  10498. }
  10499. }
  10500. _jie.onclick = async () => {
  10501. let text = ''
  10502. if (aTool == 57) {
  10503. text = _iframe.contentWindow.getLoadXmlStr()
  10504. }
  10505. _loading.style.display = 'flex'
  10506. console.log(_loading);
  10507. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10508. _loading.style.display = 'none'
  10509. let _div = document.createElement('div')
  10510. _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;"
  10511. let _inner = document.createElement('div')
  10512. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10513. _inner.innerHTML = "上传成功"
  10514. _div.appendChild(_inner)
  10515. _iframe.contentWindow.window.document.body.appendChild(_div)
  10516. _div.onclick = () => {
  10517. _iframe.contentWindow.window.document.body.removeChild(_div)
  10518. }
  10519. setTimeout(() => {
  10520. _iframe.contentWindow.window.document.body.removeChild(_div)
  10521. }, 1000);
  10522. }, [], { "type": "POST", "withCredentials": true });
  10523. }
  10524. }
  10525. }
  10526. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10527. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10528. if (res.value[0].length > 0) {
  10529. if (atool == 57) {
  10530. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10531. }
  10532. } else {
  10533. if (atool == 57) {
  10534. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10535. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10536. }
  10537. }
  10538. }, [], { "type": "POST", "withCredentials": true });
  10539. }