DeskTop.js 579 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.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": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  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": "PBL项目", "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": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. ];
  986. //未来教育基地
  987. U.MD.D.I.szjkyAdminDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1000. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1006. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1007. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1009. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1010. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1011. ];
  1012. //未来教育基地
  1013. U.MD.D.I.szjkyStudentDeskIcon = [
  1014. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1015. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. ];
  1019. //成华教育局
  1020. U.MD.D.I.chjyjTeacherDeskIcon = [
  1021. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1022. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1026. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1027. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1028. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1029. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1030. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1031. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1032. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1035. ];
  1036. //成华教育局chjyj
  1037. U.MD.D.I.chjyjAdminDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1043. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1044. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1045. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1046. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1047. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1048. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //成华教育局chjyj
  1055. U.MD.D.I.chjyjStudentDeskIcon = [
  1056. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1060. ];
  1061. //tpc
  1062. U.MD.D.I.tpcStudentDeskIcon = [
  1063. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1067. ];
  1068. //tpc
  1069. U.MD.D.I.tpcTeacherDeskIcon = [
  1070. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1071. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1072. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1073. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1077. ];
  1078. //tpc
  1079. U.MD.D.I.tpcAdminDeskIcon = [
  1080. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1081. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1082. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1085. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1086. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1087. ];
  1088. //THU-IOE
  1089. U.MD.D.I.thuioeTeacherDeskIcon = [
  1090. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1091. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1092. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1093. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1094. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1095. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1096. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1097. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1098. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1099. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1100. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1101. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1102. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1103. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1104. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1105. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1106. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1107. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1108. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1109. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1110. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1111. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1112. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1113. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1114. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1115. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1116. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1117. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1118. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1119. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1120. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1121. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1122. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1123. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. ];
  1130. //THU-IOE
  1131. U.MD.D.I.thuioeStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //jccssyl
  1138. U.MD.D.I.jccssylTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //jccssyl
  1160. U.MD.D.I.jccssylStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //cale
  1167. U.MD.D.I.caleTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1175. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1180. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1181. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1182. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1184. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1186. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1187. ];
  1188. //cale
  1189. U.MD.D.I.caleStudentDeskIcon = [
  1190. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1191. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1192. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1197. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1198. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1204. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1205. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1206. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1207. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1208. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1209. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1210. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1211. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1212. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1213. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1214. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1215. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1216. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1217. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1218. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1219. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1220. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1221. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1222. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1223. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1224. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1225. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1226. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1227. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1228. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1229. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1230. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1233. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1234. ];
  1235. //lqwmsgzs
  1236. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1237. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. ];
  1242. //盐田区幼儿园
  1243. U.MD.D.I.ytyTeacherDeskIcon = [
  1244. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1245. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1246. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1250. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1251. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1256. ];
  1257. //盐田区幼儿园
  1258. U.MD.D.I.ytyStudentDeskIcon = [
  1259. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiAdminDeskIcon = [
  1291. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1292. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1309. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1310. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1312. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1313. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1314. ];
  1315. //scnuai
  1316. U.MD.D.I.scnuaiStudentDeskIcon = [
  1317. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. ];
  1322. //cocobiz
  1323. U.MD.D.I.cocobizteacherDeskIcon = [
  1324. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1325. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1326. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1327. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1328. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1329. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1330. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1331. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1332. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1333. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1334. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1335. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1336. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1337. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1340. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1341. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1342. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1343. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1344. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1345. ];
  1346. //cocobiz
  1347. U.MD.D.I.cocobizStudentDeskIcon = [
  1348. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. ];
  1355. //xxzjky
  1356. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1357. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1358. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1359. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1360. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1361. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1362. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1363. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1364. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1365. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1366. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1367. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1368. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1370. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1371. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1377. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1378. ];
  1379. //xxzjky
  1380. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1381. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //nsfx
  1389. U.MD.D.I.nsfxTeacherDeskIcon = [
  1390. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1392. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1393. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1394. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1395. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1396. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1397. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1398. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1399. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1400. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1403. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1405. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1406. ];
  1407. //nsfx
  1408. U.MD.D.I.nsfxStudentDeskIcon = [
  1409. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. ];
  1414. //#region 桌面初始化a
  1415. /**
  1416. * 初始化桌面的起始函数
  1417. *
  1418. */
  1419. U.MD.D.I.init = function () {
  1420. if ($("#U_MD_D_K")[0]) {
  1421. //初始化桌面图标
  1422. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1423. // var clickUrl = ':12588/requestIp.php';
  1424. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1425. // U.MD.D.I.Ip = data;
  1426. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1427. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1428. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1429. // })
  1430. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1431. // })
  1432. }
  1433. }
  1434. /**
  1435. * 模式切换
  1436. *
  1437. */
  1438. U.MD.D.I.ModeCheck = function (type) {
  1439. if (US.Config.type == type) {
  1440. return
  1441. }
  1442. US.Config.type = type
  1443. $('.U_PBL_Check .active')[0].className = ''
  1444. if (type == 1) {
  1445. $('.U_PBL_Check div')[0].className = 'active'
  1446. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1447. } else {
  1448. $('.U_PBL_Check div')[1].className = 'active'
  1449. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1450. }
  1451. //初始化桌面图标
  1452. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1453. if (type == 2) {
  1454. U.MD.D.I.openApplication("project")
  1455. }
  1456. }
  1457. /**
  1458. * 隐藏任务栏
  1459. *
  1460. * @param {element} 桌面元素
  1461. */
  1462. U.MD.D.I.hiddenTaskbar = function (el) {
  1463. //任务栏位置变小
  1464. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1465. //桌面的位置变大
  1466. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1467. }
  1468. /**
  1469. * 隐藏任务栏
  1470. *
  1471. * @param {element} 桌面元素
  1472. */
  1473. U.MD.D.I.hiddenTaskbarout = function (el) {
  1474. //任务栏位置变小
  1475. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1476. //任务栏位置变化
  1477. U.selectEl(el).css({ "bottom": "-60px" });
  1478. //桌面的位置变大
  1479. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1480. }
  1481. }
  1482. /**
  1483. * 初始化打印桌面图标
  1484. *
  1485. * @param {element} 桌面元素
  1486. */
  1487. U.MD.D.I.initDesktopIcons = function (el, type) {
  1488. var i, //用于循环
  1489. _content, //桌面图标元素
  1490. _iconcontent, //桌面图标元素
  1491. _frag = $$("frag"), //定义一个碎片元素
  1492. _type = US.userInfo.type,
  1493. _org = US.userInfo.org,
  1494. _oid = US.userInfo.organizeid,
  1495. _role = US.userInfo.role,
  1496. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1497. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1498. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1499. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1500. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1501. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1502. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1503. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1504. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1505. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1506. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1507. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1508. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1509. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1510. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1511. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1512. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1513. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1514. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1515. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1516. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1517. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1518. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1519. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1520. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1521. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1522. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1523. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1524. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1525. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1526. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1527. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1528. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1529. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1530. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1531. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1532. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1533. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1534. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1535. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1536. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1537. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1538. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1539. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1540. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1541. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1542. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1543. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1544. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1545. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1546. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1547. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1548. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1549. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1550. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1551. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1552. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1553. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1554. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1555. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1556. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1557. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1558. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1559. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1560. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1561. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1562. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1563. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1564. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1565. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1566. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1567. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1568. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1569. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1570. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1571. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1572. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1573. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1574. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5'];
  1575. 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'];
  1576. //清楚桌面图标
  1577. el.innerHTML = "";
  1578. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1579. _teacherDesktopIconInfo.push(
  1580. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1581. { "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)" } },
  1582. )
  1583. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1584. }
  1585. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1588. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1589. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1590. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1591. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1592. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1593. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1594. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1595. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1596. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1597. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1598. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1599. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1600. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1601. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1602. )
  1603. }
  1604. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1605. _teacherDesktopIconInfo.push(
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. )
  1608. }
  1609. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1610. // _teacherDesktopIconInfo.push(
  1611. // )
  1612. // }
  1613. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1614. _teacherDesktopIconInfo.push(
  1615. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1616. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. )
  1618. }
  1619. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1620. _teacherDesktopIconInfo.push(
  1621. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1622. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1623. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1624. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1625. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1626. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1627. )
  1628. _studentDesktopIconInfo.push(
  1629. )
  1630. }
  1631. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1632. _teacherDesktopIconInfo.push(
  1633. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1634. )
  1635. _studentDesktopIconInfo.push(
  1636. )
  1637. }
  1638. //010606 组织
  1639. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1640. _teacherDesktopIconInfo.push(
  1641. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1642. )
  1643. _studentDesktopIconInfo.push(
  1644. )
  1645. }
  1646. //麒麟二中 和 民新小学
  1647. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1648. _teacherDesktopIconInfo.push(
  1649. )
  1650. }
  1651. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1652. _teacherDesktopIconInfo.push(
  1653. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1654. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1655. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1656. )
  1657. }
  1658. //北师大附中(010601)
  1659. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1660. _teacherDesktopIconInfo.push(
  1661. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1662. )
  1663. _studentDesktopIconInfo.push(
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. )
  1666. }
  1667. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1668. _teacherDesktopIconInfo.push(
  1669. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1670. )
  1671. }
  1672. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1673. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1674. _teacherDesktopIconInfo.push(
  1675. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1676. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1677. )
  1678. }
  1679. //麒麟二中
  1680. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1681. _studentDesktopIconInfo.push(
  1682. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1683. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1684. )
  1685. }
  1686. //万科双语
  1687. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1688. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1689. if (el.Name == '项目管理') {
  1690. el.Name = 'PBL项目'
  1691. }
  1692. return el
  1693. })
  1694. _studentDesktopIconInfo3.push(
  1695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1696. )
  1697. }
  1698. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1699. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1700. return el.Name != '魔盒识字' && el.Name != '24点'
  1701. })
  1702. }
  1703. 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) {
  1704. _studentDesktopIconInfo.push(
  1705. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1706. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. )
  1708. }
  1709. //循环创建桌面图标
  1710. if (type == 1) {
  1711. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1712. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1713. _content = $$("div", {
  1714. className: "U_MD_D_KO",
  1715. "onmousedown": U.UF.C.closure(function (obj) {
  1716. //防止拖动图标即打开了桌面应用
  1717. U.MD.D.click(this, obj);
  1718. }, [_studentDesktopIconInfo[i]]),
  1719. "onclick": U.UF.C.closure(function (obj) {
  1720. //防止拖动图标即打开了桌面应用
  1721. U.MD.D.click(this, obj);
  1722. }, [_studentDesktopIconInfo[i]])
  1723. }, _frag); //
  1724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1727. }
  1728. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1729. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1730. _content = $$("div", {
  1731. className: "U_MD_D_KO",
  1732. "onmousedown": U.UF.C.closure(function (obj) {
  1733. //防止拖动图标即打开了桌面应用
  1734. U.MD.D.click(this, obj);
  1735. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1736. "onclick": U.UF.C.closure(function (obj) {
  1737. //防止拖动图标即打开了桌面应用
  1738. U.MD.D.click(this, obj);
  1739. }, [_hkZJLSStudentDeskIconInfo[i]])
  1740. }, _frag); //
  1741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1744. } //
  1745. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1746. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1747. _content = $$("div", {
  1748. className: "U_MD_D_KO",
  1749. "onmousedown": U.UF.C.closure(function (obj) {
  1750. //防止拖动图标即打开了桌面应用
  1751. U.MD.D.click(this, obj);
  1752. }, [_ytyStudentDeskIconInfo[i]]),
  1753. "onclick": U.UF.C.closure(function (obj) {
  1754. //防止拖动图标即打开了桌面应用
  1755. U.MD.D.click(this, obj);
  1756. }, [_ytyStudentDeskIconInfo[i]])
  1757. }, _frag); //
  1758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1761. } //
  1762. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1763. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1764. _content = $$("div", {
  1765. className: "U_MD_D_KO",
  1766. "onmousedown": U.UF.C.closure(function (obj) {
  1767. //防止拖动图标即打开了桌面应用
  1768. U.MD.D.click(this, obj);
  1769. }, [_jccssylStudentDeskIconInfo[i]]),
  1770. "onclick": U.UF.C.closure(function (obj) {
  1771. //防止拖动图标即打开了桌面应用
  1772. U.MD.D.click(this, obj);
  1773. }, [_jccssylStudentDeskIconInfo[i]])
  1774. }, _frag); //
  1775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1778. }
  1779. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1780. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1781. _content = $$("div", {
  1782. className: "U_MD_D_KO",
  1783. "onmousedown": U.UF.C.closure(function (obj) {
  1784. //防止拖动图标即打开了桌面应用
  1785. U.MD.D.click(this, obj);
  1786. }, [_scnuaiStudentDeskIconInfo[i]]),
  1787. "onclick": U.UF.C.closure(function (obj) {
  1788. //防止拖动图标即打开了桌面应用
  1789. U.MD.D.click(this, obj);
  1790. }, [_scnuaiStudentDeskIconInfo[i]])
  1791. }, _frag); //
  1792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1795. }
  1796. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1797. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1798. _content = $$("div", {
  1799. className: "U_MD_D_KO",
  1800. "onmousedown": U.UF.C.closure(function (obj) {
  1801. //防止拖动图标即打开了桌面应用
  1802. U.MD.D.click(this, obj);
  1803. }, [_caleStudentDeskIconInfo[i]]),
  1804. "onclick": U.UF.C.closure(function (obj) {
  1805. //防止拖动图标即打开了桌面应用
  1806. U.MD.D.click(this, obj);
  1807. }, [_caleStudentDeskIconInfo[i]])
  1808. }, _frag); //
  1809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1812. }
  1813. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1814. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1815. _content = $$("div", {
  1816. className: "U_MD_D_KO",
  1817. "onmousedown": U.UF.C.closure(function (obj) {
  1818. //防止拖动图标即打开了桌面应用
  1819. U.MD.D.click(this, obj);
  1820. }, [_thuioeStudentDeskIconInfo[i]]),
  1821. "onclick": U.UF.C.closure(function (obj) {
  1822. //防止拖动图标即打开了桌面应用
  1823. U.MD.D.click(this, obj);
  1824. }, [_thuioeStudentDeskIconInfo[i]])
  1825. }, _frag); //
  1826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1829. }
  1830. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1831. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1832. _content = $$("div", {
  1833. className: "U_MD_D_KO",
  1834. "onmousedown": U.UF.C.closure(function (obj) {
  1835. //防止拖动图标即打开了桌面应用
  1836. U.MD.D.click(this, obj);
  1837. }, [_tpcStudentDeskIconInfo[i]]),
  1838. "onclick": U.UF.C.closure(function (obj) {
  1839. //防止拖动图标即打开了桌面应用
  1840. U.MD.D.click(this, obj);
  1841. }, [_tpcStudentDeskIconInfo[i]])
  1842. }, _frag); //
  1843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1846. } //
  1847. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1848. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1849. _content = $$("div", {
  1850. className: "U_MD_D_KO",
  1851. "onmousedown": U.UF.C.closure(function (obj) {
  1852. //防止拖动图标即打开了桌面应用
  1853. U.MD.D.click(this, obj);
  1854. }, [_chjyjStudentDeskIconInfo[i]]),
  1855. "onclick": U.UF.C.closure(function (obj) {
  1856. //防止拖动图标即打开了桌面应用
  1857. U.MD.D.click(this, obj);
  1858. }, [_chjyjStudentDeskIconInfo[i]])
  1859. }, _frag); //
  1860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1863. }
  1864. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1865. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1866. _content = $$("div", {
  1867. className: "U_MD_D_KO",
  1868. "onmousedown": U.UF.C.closure(function (obj) {
  1869. //防止拖动图标即打开了桌面应用
  1870. U.MD.D.click(this, obj);
  1871. }, [_szjkyStudentDeskIconInfo[i]]),
  1872. "onclick": U.UF.C.closure(function (obj) {
  1873. //防止拖动图标即打开了桌面应用
  1874. U.MD.D.click(this, obj);
  1875. }, [_szjkyStudentDeskIconInfo[i]])
  1876. }, _frag); //
  1877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1880. }
  1881. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1882. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1883. _content = $$("div", {
  1884. className: "U_MD_D_KO",
  1885. "onmousedown": U.UF.C.closure(function (obj) {
  1886. //防止拖动图标即打开了桌面应用
  1887. U.MD.D.click(this, obj);
  1888. }, [_dseiStudentDeskIconInfo[i]]),
  1889. "onclick": U.UF.C.closure(function (obj) {
  1890. //防止拖动图标即打开了桌面应用
  1891. U.MD.D.click(this, obj);
  1892. }, [_dseiStudentDeskIconInfo[i]])
  1893. }, _frag); //
  1894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1897. }
  1898. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1899. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1900. _content = $$("div", {
  1901. className: "U_MD_D_KO",
  1902. "onmousedown": U.UF.C.closure(function (obj) {
  1903. //防止拖动图标即打开了桌面应用
  1904. U.MD.D.click(this, obj);
  1905. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1906. "onclick": U.UF.C.closure(function (obj) {
  1907. //防止拖动图标即打开了桌面应用
  1908. U.MD.D.click(this, obj);
  1909. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1910. }, _frag); //
  1911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1914. }
  1915. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1916. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1917. _content = $$("div", {
  1918. className: "U_MD_D_KO",
  1919. "onmousedown": U.UF.C.closure(function (obj) {
  1920. //防止拖动图标即打开了桌面应用
  1921. U.MD.D.click(this, obj);
  1922. }, [_nsfxStudentDeskIconInfo[i]]),
  1923. "onclick": U.UF.C.closure(function (obj) {
  1924. //防止拖动图标即打开了桌面应用
  1925. U.MD.D.click(this, obj);
  1926. }, [_nsfxStudentDeskIconInfo[i]])
  1927. }, _frag); //
  1928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1931. }
  1932. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1933. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1934. _content = $$("div", {
  1935. className: "U_MD_D_KO",
  1936. "onmousedown": U.UF.C.closure(function (obj) {
  1937. //防止拖动图标即打开了桌面应用
  1938. U.MD.D.click(this, obj);
  1939. }, [_siesStudentDeskIconInfo[i]]),
  1940. "onclick": U.UF.C.closure(function (obj) {
  1941. //防止拖动图标即打开了桌面应用
  1942. U.MD.D.click(this, obj);
  1943. }, [_siesStudentDeskIconInfo[i]])
  1944. }, _frag); //
  1945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1948. }
  1949. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1950. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1951. _content = $$("div", {
  1952. className: "U_MD_D_KO",
  1953. "onmousedown": U.UF.C.closure(function (obj) {
  1954. //防止拖动图标即打开了桌面应用
  1955. U.MD.D.click(this, obj);
  1956. }, [_guzmsStudentDeskIconInfo[i]]),
  1957. "onclick": U.UF.C.closure(function (obj) {
  1958. //防止拖动图标即打开了桌面应用
  1959. U.MD.D.click(this, obj);
  1960. }, [_guzmsStudentDeskIconInfo[i]])
  1961. }, _frag); //
  1962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1965. }
  1966. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1967. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1968. _content = $$("div", {
  1969. className: "U_MD_D_KO",
  1970. "onmousedown": U.UF.C.closure(function (obj) {
  1971. //防止拖动图标即打开了桌面应用
  1972. U.MD.D.click(this, obj);
  1973. }, [_hkStudentDeskIconInfo[i]]),
  1974. "onclick": U.UF.C.closure(function (obj) {
  1975. //防止拖动图标即打开了桌面应用
  1976. U.MD.D.click(this, obj);
  1977. }, [_hkStudentDeskIconInfo[i]])
  1978. }, _frag); //
  1979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1982. }
  1983. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1984. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1985. _content = $$("div", {
  1986. className: "U_MD_D_KO",
  1987. "onmousedown": U.UF.C.closure(function (obj) {
  1988. //防止拖动图标即打开了桌面应用
  1989. U.MD.D.click(this, obj);
  1990. }, [_hkaceStudentDeskIconInfo[i]]),
  1991. "onclick": U.UF.C.closure(function (obj) {
  1992. //防止拖动图标即打开了桌面应用
  1993. U.MD.D.click(this, obj);
  1994. }, [_hkaceStudentDeskIconInfo[i]])
  1995. }, _frag); //
  1996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1999. }
  2000. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2001. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2002. _content = $$("div", {
  2003. className: "U_MD_D_KO",
  2004. "onmousedown": U.UF.C.closure(function (obj) {
  2005. //防止拖动图标即打开了桌面应用
  2006. U.MD.D.click(this, obj);
  2007. }, [_cocobizStudentDeskIconInfo[i]]),
  2008. "onclick": U.UF.C.closure(function (obj) {
  2009. //防止拖动图标即打开了桌面应用
  2010. U.MD.D.click(this, obj);
  2011. }, [_cocobizStudentDeskIconInfo[i]])
  2012. }, _frag); //
  2013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2016. }
  2017. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2018. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2019. _content = $$("div", {
  2020. className: "U_MD_D_KO",
  2021. "onmousedown": U.UF.C.closure(function (obj) {
  2022. //防止拖动图标即打开了桌面应用
  2023. U.MD.D.click(this, obj);
  2024. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2025. "onclick": U.UF.C.closure(function (obj) {
  2026. //防止拖动图标即打开了桌面应用
  2027. U.MD.D.click(this, obj);
  2028. }, [_xxzjkyStudentDeskIconInfo[i]])
  2029. }, _frag); //
  2030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2033. }
  2034. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2035. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2036. _content = $$("div", {
  2037. className: "U_MD_D_KO",
  2038. "onmousedown": U.UF.C.closure(function (obj) {
  2039. //防止拖动图标即打开了桌面应用
  2040. U.MD.D.click(this, obj);
  2041. }, [_studentDesktopIconInfo[i]]),
  2042. "onclick": U.UF.C.closure(function (obj) {
  2043. //防止拖动图标即打开了桌面应用
  2044. U.MD.D.click(this, obj);
  2045. }, [_studentDesktopIconInfo[i]])
  2046. }, _frag); //
  2047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2050. }
  2051. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2052. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2053. _content = $$("div", {
  2054. className: "U_MD_D_KO",
  2055. "onmousedown": U.UF.C.closure(function (obj) {
  2056. //防止拖动图标即打开了桌面应用
  2057. U.MD.D.click(this, obj);
  2058. }, [_tcStudentDeskIconInfo[i]]),
  2059. "onclick": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_tcStudentDeskIconInfo[i]])
  2063. }, _frag); //
  2064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2067. }
  2068. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2069. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2070. _content = $$("div", {
  2071. className: "U_MD_D_KO",
  2072. "onmousedown": U.UF.C.closure(function (obj) {
  2073. //防止拖动图标即打开了桌面应用
  2074. U.MD.D.click(this, obj);
  2075. }, [_szscStudentDeskIconInfo[i]]),
  2076. "onclick": U.UF.C.closure(function (obj) {
  2077. //防止拖动图标即打开了桌面应用
  2078. U.MD.D.click(this, obj);
  2079. }, [_szscStudentDeskIconInfo[i]])
  2080. }, _frag); //
  2081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2084. }
  2085. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2086. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2087. _content = $$("div", {
  2088. className: "U_MD_D_KO",
  2089. "onmousedown": U.UF.C.closure(function (obj) {
  2090. //防止拖动图标即打开了桌面应用
  2091. U.MD.D.click(this, obj);
  2092. }, [_studentDesktopIconInfo3[i]]),
  2093. "onclick": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_studentDesktopIconInfo3[i]])
  2097. }, _frag); //
  2098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2101. }
  2102. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2103. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2104. _content = $$("div", {
  2105. className: "U_MD_D_KO",
  2106. "onmousedown": U.UF.C.closure(function (obj) {
  2107. //防止拖动图标即打开了桌面应用
  2108. U.MD.D.click(this, obj);
  2109. }, [_studentDesktopIconInfo2[i]]),
  2110. "onclick": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_studentDesktopIconInfo2[i]])
  2114. }, _frag); //
  2115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2118. }
  2119. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2120. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2121. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2122. continue
  2123. }
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_wanketeacherDesktopIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_wanketeacherDesktopIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2138. }
  2139. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2140. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_wankeAdminDesktopIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_wankeAdminDesktopIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2155. }
  2156. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2157. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2158. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2159. continue
  2160. }
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_scnuaiTeacherDeskIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2177. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2178. _content = $$("div", {
  2179. className: "U_MD_D_KO",
  2180. "onmousedown": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_scnuaiAdminDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_scnuaiAdminDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2192. }
  2193. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2194. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2195. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2196. continue
  2197. }
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_jccssylTeacherDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_jccssylTeacherDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2214. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2215. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2216. continue
  2217. }
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_caleTeacherDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_caleTeacherDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2232. }
  2233. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2234. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_tpcOrganizerDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_tpcOrganizerDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2251. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2252. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2253. continue
  2254. }
  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. }, [_tpcTeacherDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_tpcTeacherDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2269. }
  2270. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2271. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2272. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2273. continue
  2274. }
  2275. _content = $$("div", {
  2276. className: "U_MD_D_KO",
  2277. "onmousedown": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_teacherDesktopIconInfo2[i]]),
  2281. "onclick": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_teacherDesktopIconInfo2[i]])
  2285. }, _frag); //
  2286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2289. }
  2290. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2291. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2292. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2293. continue
  2294. }
  2295. _content = $$("div", {
  2296. className: "U_MD_D_KO",
  2297. "onmousedown": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_thuioeTeacherDeskIconInfo[i]]),
  2301. "onclick": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_thuioeTeacherDeskIconInfo[i]])
  2305. }, _frag); //
  2306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2309. }
  2310. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2311. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2312. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2313. continue
  2314. }
  2315. _content = $$("div", {
  2316. className: "U_MD_D_KO",
  2317. "onmousedown": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_lotechTeacherDeskIconInfo[i]]),
  2321. "onclick": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_lotechTeacherDeskIconInfo[i]])
  2325. }, _frag); //
  2326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2329. }//
  2330. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2331. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2332. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2333. continue
  2334. }
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2351. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2352. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2353. continue
  2354. }
  2355. _content = $$("div", {
  2356. className: "U_MD_D_KO",
  2357. "onmousedown": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_siesTeacherDeskIconInfo[i]]),
  2361. "onclick": U.UF.C.closure(function (obj) {
  2362. //防止拖动图标即打开了桌面应用
  2363. U.MD.D.click(this, obj);
  2364. }, [_siesTeacherDeskIconInfo[i]])
  2365. }, _frag); //
  2366. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2367. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2368. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2369. }
  2370. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2371. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2372. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2373. continue
  2374. }
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_guzmsTeacherDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_guzmsTeacherDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2391. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2392. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2393. continue
  2394. }
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_longhuaTeacherDeskIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_longhuaTeacherDeskIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2411. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2412. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2413. continue
  2414. }
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_ytyTeacherDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_ytyTeacherDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2431. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2432. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2433. continue
  2434. }
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_yunhaiTeacherDeskIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2449. } //_hkStudentDeskIconInfo
  2450. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2451. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2452. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2453. continue
  2454. }
  2455. _content = $$("div", {
  2456. className: "U_MD_D_KO",
  2457. "onmousedown": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2461. "onclick": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2465. }, _frag); //
  2466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2469. }
  2470. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2471. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2472. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2473. continue
  2474. }
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_hkTeacherDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_hkTeacherDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2491. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2492. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2493. continue
  2494. }
  2495. _content = $$("div", {
  2496. className: "U_MD_D_KO",
  2497. "onmousedown": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_hkaceTeacherDeskIconInfo[i]]),
  2501. "onclick": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_hkaceTeacherDeskIconInfo[i]])
  2505. }, _frag); //
  2506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2509. }
  2510. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2511. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2512. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2513. continue
  2514. }
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_cocobizTeacherDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_cocobizTeacherDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2531. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2532. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2533. continue
  2534. }
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2551. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_gdjgAdminDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_gdjgAdminDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2568. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2569. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2570. continue
  2571. }
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_gdjgTeacherDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_gdjgTeacherDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2588. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2589. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2590. continue
  2591. }
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_szherTeacherDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_szherTeacherDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2608. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_heyuannAdminDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_heyuannAdminDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2625. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2626. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2627. continue
  2628. }
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_heyuanTeacherDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2643. } //
  2644. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2645. for (i = 0; i < _dseiAdminDeskIconInfo.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. }, [_dseiAdminDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_dseiAdminDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2662. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2663. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2664. continue
  2665. }
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_dseiTeacherDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_dseiTeacherDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2680. } //
  2681. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2682. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_chjyjAdminDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_chjyjAdminDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2697. }//
  2698. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2699. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2700. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2701. continue
  2702. }
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_chjyjTeacherDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_chjyjTeacherDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2719. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_szjkyAdminDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_szjkyAdminDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2734. }//
  2735. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2736. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2737. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2738. continue
  2739. }
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_szjkyTeacherDeskIconInfo[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_szjkyTeacherDeskIconInfo[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2754. }
  2755. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2756. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_futianAdminDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_futianAdminDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2773. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2774. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2775. continue
  2776. }
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_futianTeacherDeskIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_futianTeacherDeskIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2793. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2794. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2795. continue
  2796. }
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_MingdeTeacherDeskIcon[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_MingdeTeacherDeskIcon[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2811. }
  2812. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2813. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2814. _content = $$("div", {
  2815. className: "U_MD_D_KO",
  2816. "onmousedown": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_lhsAdminDesktopIconInfo[i]]),
  2820. "onclick": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_lhsAdminDesktopIconInfo[i]])
  2824. }, _frag); //
  2825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2828. }
  2829. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2830. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2831. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2832. continue
  2833. }
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_lhsteacherDesktopIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_lhsteacherDesktopIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2850. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2851. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2852. continue
  2853. }
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_zhoujiateacherDesktopIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2868. }
  2869. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2870. for (i = 0; i < _hanDeskIcon.length; i++) {
  2871. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2872. continue
  2873. }
  2874. _content = $$("div", {
  2875. className: "U_MD_D_KO",
  2876. "onmousedown": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_hanDeskIcon[i]]),
  2880. "onclick": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_hanDeskIcon[i]])
  2884. }, _frag); //
  2885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2888. }
  2889. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2890. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2891. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2892. continue
  2893. }
  2894. _content = $$("div", {
  2895. className: "U_MD_D_KO",
  2896. "onmousedown": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_orgStemDeskIcon[i]]),
  2900. "onclick": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_orgStemDeskIcon[i]])
  2904. }, _frag); //
  2905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2908. }
  2909. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2910. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2911. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2912. continue
  2913. }
  2914. _content = $$("div", {
  2915. className: "U_MD_D_KO",
  2916. "onmousedown": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_szulsDeskIcon[i]]),
  2920. "onclick": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_szulsDeskIcon[i]])
  2924. }, _frag); //
  2925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2928. }
  2929. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2930. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2931. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2932. continue
  2933. }
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_orgDesktopIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_orgDesktopIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2950. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2951. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2952. continue
  2953. }
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_schoolDesktopIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_schoolDesktopIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2970. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2971. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2972. continue
  2973. }
  2974. _content = $$("div", {
  2975. className: "U_MD_D_KO",
  2976. "onmousedown": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_GMteacherDesktopIconInfo[i]]),
  2980. "onclick": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_GMteacherDesktopIconInfo[i]])
  2984. }, _frag); //
  2985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2988. }
  2989. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2990. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2991. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2992. continue
  2993. }
  2994. _content = $$("div", {
  2995. className: "U_MD_D_KO",
  2996. "onmousedown": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_SONGteacherDesktopIconInfo[i]]),
  3000. "onclick": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_SONGteacherDesktopIconInfo[i]])
  3004. }, _frag); //
  3005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3008. }
  3009. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3010. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_GMstudentDesktopIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_GMstudentDesktopIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3027. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3028. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_tcTeacherDeskIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_tcTeacherDeskIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3047. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3048. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3049. continue
  3050. }
  3051. _content = $$("div", {
  3052. className: "U_MD_D_KO",
  3053. "onmousedown": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_tcOrganizerDeskIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_tcOrganizerDeskIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3065. }
  3066. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3067. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3068. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3069. continue
  3070. }
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_szscTeacherDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_szscTeacherDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3087. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3088. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3089. continue
  3090. }
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_szscOrganizerDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_szscOrganizerDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3107. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3108. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3109. continue
  3110. }
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_nsfxTeacherDeskIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_nsfxTeacherDeskIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3125. }
  3126. } else {
  3127. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3128. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3129. continue
  3130. }
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_teacherDesktopIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_teacherDesktopIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. }
  3147. } else {
  3148. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. style: { 'width': '124px', 'height': '145px' },
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_easyDesktopIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_easyDesktopIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3164. }
  3165. }
  3166. if (type == 1) {
  3167. //加载好后给图标定位
  3168. U.MD.D.iconPostion($(_frag).Child());
  3169. } else {
  3170. //加载好后给图标定位
  3171. U.MD.D.iconPostion2($(_frag).Child());
  3172. }
  3173. //把图标加载到页面
  3174. el.appendChild(_frag);
  3175. }
  3176. /**
  3177. * 显示任务栏
  3178. *
  3179. * @param {element} 桌面元素
  3180. */
  3181. U.MD.D.I.displayTaskbar = function (el) {
  3182. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3183. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3184. //任务栏位置变化
  3185. U.selectEl(el).css({ "bottom": "0px" });
  3186. //桌面位置变话
  3187. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3188. }
  3189. }
  3190. //#region 桌面图标拖动逻辑
  3191. /**
  3192. * 桌面排列图标
  3193. *
  3194. * @param {element} 桌面元素
  3195. * @param {object} 上下相距的距离
  3196. * @param {object} 左右相距的距离
  3197. * @return {object} 命名空间
  3198. */
  3199. U.MD.D.iconPostion = function (childs, top, left) {
  3200. var i; //用于循环处理
  3201. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3202. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3203. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3204. for (i = 0; i < childs.length; i++) {
  3205. //如果竖排top超过了范围处理
  3206. if (top + 95 > US.height - 10) {
  3207. //left超过了页面范围处理,则向上重叠打印处理
  3208. if ((left + 180) > US.width) {
  3209. top -= 110;
  3210. left -= 90;
  3211. }
  3212. //没有超过范围,那么left+90添加到下一个竖排打印
  3213. else {
  3214. left += 90;
  3215. top = 15;
  3216. };
  3217. }
  3218. //给图标的位置赋值
  3219. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3220. if (i < childs.length - 1) {
  3221. //页面图标每次向下加95
  3222. top += 95;
  3223. }
  3224. }
  3225. //返回最后调用的图标的位置
  3226. return [top, left];
  3227. }
  3228. /**
  3229. * 桌面排列图标
  3230. *
  3231. * @param {element} 桌面元素
  3232. * @param {object} 上下相距的距离
  3233. * @param {object} 左右相距的距离
  3234. * @return {object} 命名空间
  3235. */
  3236. U.MD.D.iconPostion2 = function (childs, top, left) {
  3237. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3238. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3239. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3240. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3241. for (i = 0; i < childs.length; i++) {
  3242. //如果竖排top超过了范围处理
  3243. if (left + 150 > US.width - 10) {
  3244. //left超过了页面范围处理,则向上重叠打印处理
  3245. if ((top + 180) > US.Height) {
  3246. top -= 150;
  3247. left -= 150;
  3248. }
  3249. //没有超过范围,那么left+90添加到下一个竖排打印
  3250. else {
  3251. top += 150;
  3252. left = ol;
  3253. };
  3254. }
  3255. //给图标的位置赋值
  3256. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3257. if (i < childs.length - 1) {
  3258. //页面图标每次向下加95
  3259. left += 150;
  3260. }
  3261. }
  3262. //返回最后调用的图标的位置
  3263. return [top, left];
  3264. }
  3265. /**
  3266. * 桌面点击事件逻辑
  3267. *
  3268. * @param {element} 桌面元素
  3269. * @param {object} 上下相距的距离
  3270. * @param {object} 左右相距的距离
  3271. * @return {object} 命名空间
  3272. */
  3273. U.MD.D.click = function (el, obj) {
  3274. var _buttonnumber = event.button; //点击的按钮的事件值
  3275. var _userinfo = US.userInfo;
  3276. U.UF.EV.stopBubble(); //阻止向上冒泡
  3277. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3278. if (_buttonnumber < 2) {
  3279. //如果是click事件的处理
  3280. if (event.type == "click") {
  3281. //如果元素在mousemove事件中没有移动则出发click事件
  3282. if (!U.MD.D.I.IsDrag) {
  3283. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3284. U.alert("请先登录您的账号!");
  3285. setTimeout(() => {
  3286. U.MD.U.L.login();
  3287. }, 2000);
  3288. } else {
  3289. //打开应用处理
  3290. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3291. }
  3292. }
  3293. }
  3294. //如果是mouse事件的处理
  3295. else {
  3296. if (US.Config.type == '1') {
  3297. //拖动处理,添加拖动和拖动结束事件
  3298. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3299. }
  3300. }
  3301. U.MD.D.I.IsDrag = false;
  3302. }
  3303. }
  3304. /**
  3305. * 拖动的处理
  3306. *
  3307. */
  3308. U.MD.D.iconMove = function () {
  3309. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3310. U.MD.D.I.IsDrag = true;
  3311. }
  3312. /**
  3313. * 拖动结束后,这里是定位处理,以网状的形式定位
  3314. *
  3315. * @param {element} 拖动的元素
  3316. * @return {object} 命名空间
  3317. */
  3318. U.MD.D.iconUp = function (el) {
  3319. var _top = 15,
  3320. _left = 20,
  3321. _margin,
  3322. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3323. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3324. if (_positioninfo["OT"] > 15) {
  3325. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3326. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3327. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3328. }
  3329. if (_positioninfo["OL"] > 20) {
  3330. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3331. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3332. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3333. }
  3334. //while循环判断么一个重叠的元素
  3335. do {
  3336. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3337. _top = _positioninfo[0] + 95; //得到定位后的top
  3338. _left = _positioninfo[1]; //得到定位后的left
  3339. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3340. }
  3341. /**
  3342. * 判断拖动后图标是否重叠
  3343. *
  3344. * @param {element} 拖动的元素
  3345. * @param {element} 桌面所有的元素
  3346. * @param {array} 拖动元素的位置
  3347. ----------[0] 上 top
  3348. ----------[1] 左 left
  3349. * @return {object} 命名空间
  3350. */
  3351. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3352. //循环所有的图标
  3353. for (var i = 0; i < childs.length; i++) {
  3354. //判断有没有和该图标诶子重叠的元素
  3355. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3356. return childs[i]; //如果有返回
  3357. }
  3358. }
  3359. }
  3360. //#endregion
  3361. //#endregion
  3362. //#region 桌面应用
  3363. /**
  3364. * 打开应用
  3365. *
  3366. * @param {string} 类型
  3367. -----------------Disk 网盘系统
  3368. -----------------PDisk 学习系统网盘
  3369. -----------------Poto 图片
  3370. -----------------Video 视频
  3371. -----------------Music 音乐
  3372. -----------------Word word
  3373. -----------------Excel excel
  3374. -----------------Txt 记事本
  3375. -----------------PB 学习系统
  3376. -----------------Blog 朋友圈系统
  3377. -----------------FTP ftp系统
  3378. -----------------Group 好友群
  3379. -----------------SY 首页系统
  3380. -----------------Set 个人设置
  3381. -----------------XSet 系统设置
  3382. -----------------App 我们所有的app
  3383. -----------------BC c.1473.cn 平台
  3384. -----------------CWeb d.1473.cn 变成平台
  3385. -----------------其他的外联系统 我们统一用iframe打开
  3386. * @param {array} 类型
  3387. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3388. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3389. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3390. 如果第一个参数为其他,则无第二个参数
  3391. * @returns {array}
  3392. */
  3393. window.addEventListener('message', function (e) { // 监听 message 事件
  3394. // alert(e.data.type);
  3395. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3396. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3397. //3是展示全部阶段 2学生 1老师 4专家
  3398. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3399. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3400. //3是展示全部阶段 2学生 1老师 4专家
  3401. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3402. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3403. //3是展示全部阶段 2学生 1老师 4专家
  3404. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3405. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3406. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3407. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3408. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3409. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3410. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3411. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3412. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3413. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3414. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3415. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3416. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3417. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3418. //3是展示全部阶段 2学生 1老师 4专家
  3419. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3420. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3421. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3422. U.MD.D.I.selectUser();
  3423. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3424. var _formel = document.getElementById("study");
  3425. U.UF.F.windowZooming(_formel);
  3426. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3427. var _formel = document.getElementById("studyDetail");
  3428. U.UF.F.windowZooming(_formel);
  3429. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3430. var _formel = document.getElementById("studyDetail");
  3431. U.UF.F.windowZooming(_formel);
  3432. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3433. var _formel = document.getElementById("studentStudy");
  3434. U.UF.F.windowZooming(_formel);
  3435. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3436. // var _formel = document.getElementById("study");
  3437. //如果最大化了,那么就把他缩小
  3438. // if (_formel.ismaximize) {
  3439. // return;
  3440. // }
  3441. // U.UF.F.windowZooming(_formel);
  3442. // U.UF.F.topWindow(_formel);
  3443. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3444. // var _formel = document.getElementById("studyDetail");
  3445. //如果最大化了,那么就把他缩小
  3446. // if (_formel.ismaximize) {
  3447. // return;
  3448. // }
  3449. // U.UF.F.windowZooming(_formel);
  3450. // U.UF.F.topWindow(_formel);
  3451. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3452. // var _formel = document.getElementById("studentStudy");
  3453. // if (_formel.ismaximize) {
  3454. // return;
  3455. // }
  3456. // U.UF.F.windowZooming(_formel);
  3457. // U.UF.F.topWindow(_formel);
  3458. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3459. var _formel = document.getElementById("study");
  3460. // if (_formel.ismaximize) {
  3461. // return;
  3462. // }
  3463. // U.UF.F.windowZooming(_formel);
  3464. U.UF.F.topWindow(_formel);
  3465. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3466. var _formel = document.getElementById("studentIndex");
  3467. U.UF.F.windowZooming(_formel);
  3468. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3469. var _formel = document.getElementById("studyDetailS");
  3470. U.UF.F.windowZooming(_formel);
  3471. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3472. var _formel = document.getElementById("studioIndex");
  3473. U.UF.F.windowZooming(_formel);
  3474. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3475. var _formel = document.getElementById("studyDetailStudio");
  3476. U.UF.F.windowZooming(_formel);
  3477. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3478. var _formel = document.getElementById("studyDetailStudio");
  3479. U.UF.F.windowZooming(_formel);
  3480. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3481. var _formel = document.getElementById("studyDetailNT");
  3482. U.UF.F.windowZooming(_formel);
  3483. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3484. var _formel = document.getElementById("studyDetailS");
  3485. U.UF.F.windowZooming(_formel);
  3486. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3487. var _formel = document.getElementById("studyDetailS");
  3488. U.UF.F.topWindow(_formel);
  3489. } else if (e.data.tools && e.data.tools == "1") {
  3490. // U.MD.D.I.openApplication("whiteboard")
  3491. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3492. } else if (e.data.tools && e.data.tools == "2") {
  3493. U.MD.D.I.openApplication("note")
  3494. } else if (e.data.tools && e.data.tools == "3") {
  3495. // U.MD.D.I.openApplication("mind")
  3496. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3497. } else if (e.data.tools && e.data.tools == "4") {
  3498. U.MD.D.I.openApplication("investigation")
  3499. } else if (e.data.tools && e.data.tools == "6") {
  3500. // U.MD.D.I.openApplication("doc")
  3501. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3502. } else if (e.data.tools && e.data.tools == "7") {
  3503. // U.MD.D.I.openApplication("mindNetwork")
  3504. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3505. } else if (e.data.tools && e.data.tools == "8") {
  3506. U.MD.D.I.openApplication("library")
  3507. } else if (e.data.tools && e.data.tools == "17") {
  3508. U.MD.D.I.openApplication("stuLibrary")
  3509. } else if (e.data.tools && e.data.tools == "18") {
  3510. U.MD.D.I.openApplication("train")
  3511. } else if (e.data.tools && e.data.tools == "21") {
  3512. U.MD.D.I.openApplication("program")
  3513. } else if (e.data.tools && e.data.tools == "22") {
  3514. U.MD.D.I.openApplication("AIprogram2")
  3515. } else if (e.data.tools && e.data.tools == "23") {
  3516. U.MD.D.I.openApplication("Pythonprogram")
  3517. } else if (e.data.tools && e.data.tools == "24") {
  3518. U.MD.D.I.openApplication("AIprogram")
  3519. } else if (e.data.tools && e.data.tools == "25") {
  3520. U.MD.D.I.openApplication("sys")
  3521. } else if (e.data.tools && e.data.tools == "26") {
  3522. // U.MD.D.I.openApplication("courseDesign")
  3523. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3524. } else if (e.data.tools && e.data.tools == "31") {
  3525. U.MD.D.I.openApplication("netWorkPanel")
  3526. } else if (e.data.tools && e.data.tools == "32") {
  3527. U.MD.D.I.openApplication("codeEdit")
  3528. } else if (e.data.tools && e.data.tools == "57") {
  3529. U.MD.D.I.openApplication("CocoPi")
  3530. } else if (e.data.tools && e.data.tools == "63") {
  3531. U.MD.D.I.openApplication("Wood")
  3532. } else if (e.data.tools && e.data.tools == "58") {
  3533. U.MD.D.I.openApplication("car")
  3534. } else if (e.data.tools && e.data.tools == "59") {
  3535. U.MD.D.I.openApplication("lineSearch")
  3536. } else if (e.data.tools && e.data.tools == "60") {
  3537. U.MD.D.I.openApplication("deepLearning")
  3538. } else if (e.data.tools && e.data.tools == "61") {
  3539. U.MD.D.I.openApplication("allHistory")
  3540. } else if (e.data.tools && e.data.tools == "28") {
  3541. U.MD.D.I.openApplication("translation")
  3542. } else if (e.data.tools && e.data.tools == "37") {
  3543. U.MD.D.I.openApplication("mohe")
  3544. } else if (e.data.tools && e.data.tools == "38") {
  3545. U.MD.D.I.openApplication("24game")
  3546. } else if (e.data.tools && e.data.tools == "39") {
  3547. U.MD.D.I.openApplication("GeoGebra")
  3548. } else if (e.data.tools && e.data.tools == "43") {
  3549. U.MD.D.I.openApplication("studentEvaluate")
  3550. } else if (e.data.tools && e.data.tools == "44") {
  3551. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3552. } else if (e.data.tools && e.data.tools == "46") {
  3553. U.MD.D.I.openApplication("project")
  3554. } else if (e.data.tools && e.data.tools == "71") {
  3555. U.MD.D.I.openApplication("aigptCourse")
  3556. } else if (e.data.tools && e.data.tools == "1s") {
  3557. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3558. } else if (e.data.tools && e.data.tools == "3s") {
  3559. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3560. } else if (e.data.tools && e.data.tools == "6s") {
  3561. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3562. } else if (e.data.tools && e.data.tools == "1studio") {
  3563. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3564. } else if (e.data.tools && e.data.tools == "3studio") {
  3565. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3566. } else if (e.data.tools && e.data.tools == "6studio") {
  3567. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3568. } else if (e.data.tools && e.data.tools == "3y") {
  3569. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3570. } else if (e.data.tools && e.data.tools == "1y") {
  3571. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3572. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3573. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3574. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3575. U.MD.D.I.openApplication("AIAnalyse")
  3576. } else if (e.data.tools && e.data.tools == "1teacher") {
  3577. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3578. } else if (e.data.tools && e.data.tools == "3teacher") {
  3579. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3580. } else if (e.data.tools && e.data.tools == "7teacher") {
  3581. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3582. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3583. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3584. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3585. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3586. } else if (e.data.tools && e.data.tools == "1E") {
  3587. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3588. } else if (e.data.tools && e.data.tools == "3E") {
  3589. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3590. } else if (e.data.tools && e.data.tools == "57y") {
  3591. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3592. } else if (e.data.tools && e.data.tools == "57u") {
  3593. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3594. } else if (e.data.tools && e.data.tools == "57teacher") {
  3595. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3596. } else if (e.data.tools && e.data.tools == "64") {
  3597. U.MD.D.I.openApplication("AIChat")
  3598. } else if (e.data.tools && e.data.tools == "66") {
  3599. U.MD.D.I.openApplication("formulaEdi")
  3600. } else if (e.data.tools && e.data.tools == "67") {
  3601. U.MD.D.I.openApplication("molStr")
  3602. } else if (e.data.tools && e.data.tools == "68") {
  3603. U.MD.D.I.openApplication("timeAxis")
  3604. } else if (e.data.tools && e.data.tools == "openCourse") {
  3605. let _data = {
  3606. typea: e.data.typea || '',
  3607. typeb: e.data.typeb || '',
  3608. typed: e.data.typed || '',
  3609. }
  3610. U.MD.D.I.openInApplication("index", _data)
  3611. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3612. let _data = {
  3613. classid: e.data.classid || '',
  3614. }
  3615. U.MD.D.I.openInApplication("dataClass", _data)
  3616. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3617. let _data = {
  3618. cid: e.data.cid || '',
  3619. gid: e.data.gid || '',
  3620. }
  3621. U.MD.D.I.openInApplication("opencCscl", _data)
  3622. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3623. U.MD.D.I.openApplication("dataBoardTest")
  3624. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3625. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3626. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3627. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3628. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3629. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3630. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3631. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3632. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3633. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3634. }else if (e.data.tools && e.data.tools == "loginSz") {
  3635. U.MD.D.I.openInApplication("loginSz")
  3636. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3637. if($('#classroom_observation_board')[0]){
  3638. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3639. }
  3640. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3641. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3642. if($('#classroom_observation_ob_comment')[0]){
  3643. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3644. }
  3645. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3646. }
  3647. });
  3648. U.MD.D.I.selectUser = function () {
  3649. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3650. if (res.value[0].length > 0) {
  3651. US.userInfo = res.value[0][0];
  3652. $(".userName")[0].innerHTML = US.userInfo.username;
  3653. }
  3654. }, [], { "type": "GET", "withCredentials": true });
  3655. }
  3656. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3657. var _userinfo = US.userInfo, //登录用户信息
  3658. _userid = US.userInfo.userid, //登录用户id
  3659. _oid = _userinfo.organizeid,
  3660. _type = US.userInfo.type,
  3661. _org = US.userInfo.org,
  3662. _role = US.userInfo.role,
  3663. _classId = US.userInfo.classid;
  3664. if (_type == 4) {
  3665. tType = 4
  3666. }
  3667. switch (str) {
  3668. case "studyDetailNT": //无终端模式
  3669. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3670. setTimeout(() => {
  3671. U.MD.U.L.login();
  3672. }, 2000);
  3673. } else {
  3674. _formdiv = new U.UF.UI.form(
  3675. "课程详情",
  3676. $$("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 }), {
  3677. "id": "studyDetailNT",
  3678. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3679. "onresize": function () { }
  3680. }, {
  3681. closecallback: function () { }
  3682. }, { "style": { "height": "36px" } }).form; //创建窗体
  3683. _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); } }
  3684. break;
  3685. }
  3686. case "studyDetail":
  3687. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3688. setTimeout(() => {
  3689. U.MD.U.L.login();
  3690. }, 2000);
  3691. } else {
  3692. _formdiv = new U.UF.UI.form(
  3693. "课程详情",
  3694. $$("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 }), {
  3695. "id": "studyDetail",
  3696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3697. "onresize": function () { }
  3698. }, {
  3699. closecallback: function () { }
  3700. }, { "style": { "height": "36px" } }).form; //创建窗体
  3701. _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); } }
  3702. break;
  3703. }
  3704. case "studyDetailTrain":
  3705. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3706. setTimeout(() => {
  3707. U.MD.U.L.login();
  3708. }, 2000);
  3709. } else {
  3710. _formdiv = new U.UF.UI.form(
  3711. "培训详情",
  3712. $$("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 }), {
  3713. "id": "studyDetailTrain",
  3714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3715. "onresize": function () { }
  3716. }, {
  3717. closecallback: function () { }
  3718. }, { "style": { "height": "36px" } }).form; //创建窗体
  3719. _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); } }
  3720. break;
  3721. }
  3722. case "studyDetailS":
  3723. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3724. setTimeout(() => {
  3725. U.MD.U.L.login();
  3726. }, 2000);
  3727. } else {
  3728. _formdiv = new U.UF.UI.form(
  3729. "项目详情",
  3730. $$("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 }), {
  3731. "id": "studyDetailS",
  3732. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3733. "onresize": function () { }
  3734. }, {
  3735. closecallback: function () { }
  3736. }, { "style": { "height": "36px" } }).form; //创建窗体
  3737. _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); } }
  3738. break;
  3739. }
  3740. case "studyDetailStudio":
  3741. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3742. setTimeout(() => {
  3743. U.MD.U.L.login();
  3744. }, 2000);
  3745. } else {
  3746. _formdiv = new U.UF.UI.form(
  3747. "工作详情",
  3748. $$("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 }), {
  3749. "id": "studyDetailStudio",
  3750. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3751. "onresize": function () { }
  3752. }, {
  3753. closecallback: function () { }
  3754. }, { "style": { "height": "36px" } }).form; //创建窗体
  3755. _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); } }
  3756. break;
  3757. }
  3758. case "studyDetailS5":
  3759. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3760. setTimeout(() => {
  3761. U.MD.U.L.login();
  3762. }, 2000);
  3763. } else {
  3764. _formdiv = new U.UF.UI.form(
  3765. "项目详情",
  3766. $$("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 }), {
  3767. "id": "studyDetailS",
  3768. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3769. "onresize": function () { }
  3770. }, {
  3771. closecallback: function () { }
  3772. }, { "style": { "height": "36px" } }).form; //创建窗体
  3773. _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); } }
  3774. break;
  3775. }
  3776. case "studyDetailGM":
  3777. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3778. setTimeout(() => {
  3779. U.MD.U.L.login();
  3780. }, 2000);
  3781. } else {
  3782. _formdiv = new U.UF.UI.form(
  3783. "课程详情",
  3784. $$("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 }), {
  3785. "id": "studyDetail",
  3786. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3787. "onresize": function () { }
  3788. }, {
  3789. closecallback: function () { }
  3790. }, { "style": { "height": "36px" } }).form; //创建窗体
  3791. _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); } }
  3792. break;
  3793. }
  3794. case "hanUrl":
  3795. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3796. setTimeout(() => {
  3797. U.MD.U.L.login();
  3798. }, 2000);
  3799. } else {
  3800. _formdiv = new U.UF.UI.form(
  3801. "汉字宫",
  3802. $$("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" }), {
  3803. "id": "hanUrl",
  3804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3805. "onresize": function () { }
  3806. }, {
  3807. closecallback: function () { }
  3808. }, { "style": { "height": "36px" } }).form; //创建窗体
  3809. _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); } }
  3810. break;
  3811. }
  3812. case "index":
  3813. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3814. setTimeout(() => {
  3815. U.MD.U.L.login();
  3816. }, 2000);
  3817. } else {
  3818. _formdiv = new U.UF.UI.form(
  3819. "课程中心",
  3820. $$("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 }), {
  3821. "id": "study",
  3822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3823. "onresize": function () { }
  3824. }, {
  3825. closecallback: function () { }
  3826. }, { "style": { "height": "36px" } }).form; //创建窗体
  3827. _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); } }
  3828. break;
  3829. }
  3830. case "dataClass":
  3831. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3832. setTimeout(() => {
  3833. U.MD.U.L.login();
  3834. }, 2000);
  3835. } else {
  3836. _formdiv = new U.UF.UI.form(
  3837. "数据报告",
  3838. $$("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 }), {
  3839. "id": "dataClass",
  3840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3841. "onresize": function () { }
  3842. }, {
  3843. closecallback: function () { }
  3844. }, { "style": { "height": "36px" } }).form; //创建窗体
  3845. _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); } }
  3846. break;
  3847. }
  3848. case "opencCscl":
  3849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3850. setTimeout(() => {
  3851. U.MD.U.L.login();
  3852. }, 2000);
  3853. } else {
  3854. _formdiv = new U.UF.UI.form(
  3855. "协同建构",
  3856. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3857. "id": "futureClass",
  3858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3859. "onresize": function () { }
  3860. }, {
  3861. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3862. }, { "style": { "height": "36px" } }).form; //创建窗体
  3863. _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); } }
  3864. break;
  3865. }
  3866. case "openCourseUpdate":
  3867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3868. setTimeout(() => {
  3869. U.MD.U.L.login();
  3870. }, 2000);
  3871. } else {
  3872. _formdiv = new U.UF.UI.form(
  3873. "课程管理",
  3874. $$("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 }), {
  3875. "id": "openCourseUpdate",
  3876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3877. "onresize": function () { }
  3878. }, {
  3879. closecallback: function () { }
  3880. }, { "style": { "height": "36px" } }).form; //创建窗体
  3881. break;
  3882. }
  3883. case "openNewCourseUpdate":
  3884. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3885. setTimeout(() => {
  3886. U.MD.U.L.login();
  3887. }, 2000);
  3888. } else {
  3889. _formdiv = new U.UF.UI.form(
  3890. "课程管理",
  3891. $$("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 }), {
  3892. "id": "openCourseUpdate",
  3893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3894. "onresize": function () { }
  3895. }, {
  3896. closecallback: function () { }
  3897. }, { "style": { "height": "36px" } }).form; //创建窗体
  3898. break;
  3899. }
  3900. case "openCourseEUpdate":
  3901. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3902. setTimeout(() => {
  3903. U.MD.U.L.login();
  3904. }, 2000);
  3905. } else {
  3906. _formdiv = new U.UF.UI.form(
  3907. "课程管理",
  3908. $$("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 }), {
  3909. "id": "openCourseUpdate",
  3910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3911. "onresize": function () { }
  3912. }, {
  3913. closecallback: function () { }
  3914. }, { "style": { "height": "36px" } }).form; //创建窗体
  3915. break;
  3916. }
  3917. case "openCourseAiUpdate":
  3918. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3919. setTimeout(() => {
  3920. U.MD.U.L.login();
  3921. }, 2000);
  3922. } else {
  3923. _formdiv = new U.UF.UI.form(
  3924. "课程管理",
  3925. $$("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 }), {
  3926. "id": "openCourseUpdate",
  3927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3928. "onresize": function () { }
  3929. }, {
  3930. closecallback: function () { }
  3931. }, { "style": { "height": "36px" } }).form; //创建窗体
  3932. break;
  3933. }
  3934. case "openCourseNewUpdate":
  3935. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3936. setTimeout(() => {
  3937. U.MD.U.L.login();
  3938. }, 2000);
  3939. } else {
  3940. _formdiv = new U.UF.UI.form(
  3941. "课程管理",
  3942. $$("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 }), {
  3943. "id": "openCourseUpdate",
  3944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3945. "onresize": function () { }
  3946. }, {
  3947. closecallback: function () { }
  3948. }, { "style": { "height": "36px" } }).form; //创建窗体
  3949. break;
  3950. }
  3951. case "inviteLoginSz":
  3952. _formdiv = new U.UF.UI.form(
  3953. "随机码登录",
  3954. $$("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 }), {
  3955. "id": "loginSz",
  3956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3957. "onresize": function () { }
  3958. }, {
  3959. closecallback: function () { }
  3960. }, { "style": { "height": "36px" } }).form; //创建窗体
  3961. break;
  3962. case "loginSz":
  3963. _formdiv = new U.UF.UI.form(
  3964. "教师登录",
  3965. $$("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" }), {
  3966. "id": "loginSz",
  3967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3968. "onresize": function () { }
  3969. }, {
  3970. closecallback: function () { }
  3971. }, { "style": { "height": "36px" } }).form; //创建窗体
  3972. break;
  3973. case "teacher":
  3974. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3975. setTimeout(() => {
  3976. U.MD.U.L.login();
  3977. }, 2000);
  3978. } else {
  3979. _formdiv = new U.UF.UI.form(
  3980. "教师管理",
  3981. $$("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 }), {
  3982. "id": "teacher",
  3983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3984. "onresize": function () { }
  3985. }, {
  3986. closecallback: function () { }
  3987. }, { "style": { "height": "36px" } }).form; //创建窗体
  3988. break;
  3989. }
  3990. case "dataBoardSZArea":
  3991. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3992. setTimeout(() => {
  3993. U.MD.U.L.login();
  3994. }, 2000);
  3995. } else {
  3996. _formdiv = new U.UF.UI.form(
  3997. "综合数据看板",
  3998. $$("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 }), {
  3999. "id": "dataBoardSZArea",
  4000. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4001. "onresize": function () { }
  4002. }, {
  4003. closecallback: function () { }
  4004. }, { "style": { "height": "36px" } }).form; //创建窗体
  4005. break;
  4006. }
  4007. case "dataBoardSZCity":
  4008. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4009. setTimeout(() => {
  4010. U.MD.U.L.login();
  4011. }, 2000);
  4012. } else {
  4013. _formdiv = new U.UF.UI.form(
  4014. "综合数据看板",
  4015. $$("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 }), {
  4016. "id": "dataBoardSZCity",
  4017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4018. "onresize": function () { }
  4019. }, {
  4020. closecallback: function () { }
  4021. }, { "style": { "height": "36px" } }).form; //创建窗体
  4022. break;
  4023. }
  4024. case "classroom_observation_board":
  4025. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4026. setTimeout(() => {
  4027. U.MD.U.L.login();
  4028. }, 2000);
  4029. } else {
  4030. _formdiv = new U.UF.UI.form(
  4031. "课堂观察",
  4032. $$("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 }), {
  4033. "id": "classroom_observation_board",
  4034. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4035. "onresize": function () { }
  4036. }, {
  4037. closecallback: function () { }
  4038. }, { "style": { "height": "36px" } }).form; //创建窗体
  4039. break;
  4040. }
  4041. case "classroom_observation_ob_comment":
  4042. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4043. setTimeout(() => {
  4044. U.MD.U.L.login();
  4045. }, 2000);
  4046. } else {
  4047. _formdiv = new U.UF.UI.form(
  4048. "课堂审核",
  4049. $$("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 }), {
  4050. "id": "classroom_observation_ob_comment",
  4051. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4052. "onresize": function () { }
  4053. }, {
  4054. closecallback: function () { }
  4055. }, { "style": { "height": "36px" } }).form; //创建窗体
  4056. break;
  4057. }
  4058. }
  4059. }
  4060. U.MD.D.I.openApplication = function (str, obj, info) {
  4061. obj = obj || {};
  4062. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4063. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4064. _userinfo = US.userInfo, //登录用户信息
  4065. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4066. _oid = obj.organizeid || _userinfo.organizeid,
  4067. _type = US.userInfo.type,
  4068. _org = US.userInfo.org,
  4069. _role = US.userInfo.role,
  4070. _classId = US.userInfo.classid,
  4071. _TscreenType = 1
  4072. _screenType = 2,
  4073. _SscreenType = 3;
  4074. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4075. return;
  4076. }
  4077. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4078. switch (str) {
  4079. case "studnetProject": //好友打开
  4080. _formdiv = new U.UF.UI.form(
  4081. "我的项目",
  4082. $$("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 }), {
  4083. "id": "studnetProject",
  4084. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4085. "onresize": function () { }
  4086. }, {
  4087. closecallback: function () { }
  4088. }, { "style": { "height": "36px" } }).form; //创建窗体
  4089. _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); } }
  4090. break;
  4091. case "studentEvaluate": //好友打开
  4092. _formdiv = new U.UF.UI.form(
  4093. "我的评价",
  4094. $$("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 }), {
  4095. "id": "studentEvaluate",
  4096. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4097. "onresize": function () { }
  4098. }, {
  4099. closecallback: function () { }
  4100. }, { "style": { "height": "36px" } }).form; //创建窗体
  4101. _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); } }
  4102. break;
  4103. case "my":
  4104. _formdiv = new U.UF.UI.form(
  4105. "我的资料",
  4106. $$("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 }), {
  4107. "id": "my",
  4108. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4109. "onresize": function () { }
  4110. }, {
  4111. closecallback: function () { }
  4112. }, { "style": { "height": "36px" } }).form; //创建窗体
  4113. _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); } }
  4114. break;
  4115. case "program":
  4116. _formdiv = new U.UF.UI.form(
  4117. "编程平台",
  4118. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4119. "id": "program",
  4120. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4121. "onresize": function () { }
  4122. }, {
  4123. closecallback: function () { }
  4124. }, { "style": { "height": "36px" } }).form; //创建窗体
  4125. _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); } }
  4126. break;
  4127. case "library":
  4128. _formdiv = new U.UF.UI.form(
  4129. "素材库",
  4130. $$("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 }), {
  4131. "id": "library",
  4132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4133. "onresize": function () { }
  4134. }, {
  4135. closecallback: function () { }
  4136. }, { "style": { "height": "36px" } }).form; //创建窗体
  4137. _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); } }
  4138. break;
  4139. case "whiteboard":
  4140. _formdiv = new U.UF.UI.form(
  4141. "电子白板",
  4142. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4143. "id": "whiteboard",
  4144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4145. "onresize": function () { }
  4146. }, {
  4147. closecallback: function () { }
  4148. }, { "style": { "height": "36px" } }).form; //创建窗体
  4149. _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); } }
  4150. break;
  4151. case "investigation":
  4152. _formdiv = new U.UF.UI.form(
  4153. "问卷调查",
  4154. $$("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 }), {
  4155. "id": "investigation",
  4156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4157. "onresize": function () { }
  4158. }, {
  4159. closecallback: function () { }
  4160. }, { "style": { "height": "36px" } }).form; //创建窗体
  4161. _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); } }
  4162. break;
  4163. case "note":
  4164. _formdiv = new U.UF.UI.form(
  4165. "便签分类",
  4166. $$("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 }), {
  4167. "id": "note",
  4168. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4169. "onresize": function () { }
  4170. }, {
  4171. closecallback: function () { }
  4172. }, { "style": { "height": "36px" } }).form; //创建窗体
  4173. _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); } }
  4174. break;
  4175. // case "score":
  4176. // _formdiv = new U.UF.UI.form(
  4177. // "量规评分",
  4178. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4179. // "id": "score",
  4180. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4181. // "onresize": function() {}
  4182. // }, {
  4183. // closecallback: function() {}
  4184. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4185. // _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); } }
  4186. // break;
  4187. case "mind":
  4188. _formdiv = new U.UF.UI.form(
  4189. "思维导图",
  4190. $$("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"
  4191. "id": "mind",
  4192. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4193. "onresize": function () { }
  4194. }, {
  4195. closecallback: function () { }
  4196. }, { "style": { "height": "36px" } }).form; //创建窗体
  4197. _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); } }
  4198. break;
  4199. case "doc":
  4200. // U.MD.D.I.isRoom();
  4201. _formdiv = new U.UF.UI.form(
  4202. "协同文档",
  4203. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4204. "id": "doc",
  4205. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4206. "onresize": function () { }
  4207. }, {
  4208. closecallback: function () { }
  4209. }, { "style": { "height": "36px" } }).form; //创建窗体
  4210. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4211. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4212. // })
  4213. _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); } }
  4214. break;
  4215. case "studentStudy":
  4216. _formdiv = new U.UF.UI.form(
  4217. "课程中心",
  4218. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4219. "id": "studentStudy",
  4220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4221. "onresize": function () { }
  4222. }, {
  4223. closecallback: function () { }
  4224. }, { "style": { "height": "36px" } }).form; //创建窗体
  4225. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4226. break;
  4227. case "train": //好友打开
  4228. _formdiv = new U.UF.UI.form(
  4229. "训练平台",
  4230. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4231. "id": "train",
  4232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4233. "onresize": function () { }
  4234. }, {
  4235. closecallback: function () { }
  4236. }, { "style": { "height": "36px" } }).form; //创建窗体
  4237. _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); } }
  4238. break;
  4239. case "mindNetwork": //好友打开
  4240. _formdiv = new U.UF.UI.form(
  4241. "思维网格",
  4242. $$("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 }), {
  4243. "id": "mindNetwork",
  4244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4245. "onresize": function () { }
  4246. }, {
  4247. closecallback: function () { }
  4248. }, { "style": { "height": "36px" } }).form; //创建窗体
  4249. _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); } }
  4250. break;
  4251. case "studentClassRoom": //好友打开
  4252. _formdiv = new U.UF.UI.form(
  4253. "实时课堂",
  4254. $$("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 }), {
  4255. "id": "studentClassRoom",
  4256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4257. "onresize": function () { }
  4258. }, {
  4259. closecallback: function () { }
  4260. }, { "style": { "height": "36px" } }).form; //创建窗体
  4261. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4262. setTimeout(() => {
  4263. U.UF.F.windowZooming(_formdiv)
  4264. }, 0);
  4265. break;
  4266. }
  4267. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4268. switch (str) {
  4269. case "studnetProject": //好友打开
  4270. _formdiv = new U.UF.UI.form(
  4271. "我的项目",
  4272. $$("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 }), {
  4273. "id": "studnetProject",
  4274. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4275. "onresize": function () { }
  4276. }, {
  4277. closecallback: function () { }
  4278. }, { "style": { "height": "36px" } }).form; //创建窗体
  4279. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4280. break;
  4281. case "studentEvaluate": //好友打开
  4282. _formdiv = new U.UF.UI.form(
  4283. "我的评价",
  4284. $$("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 }), {
  4285. "id": "studentEvaluate",
  4286. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4287. "onresize": function () { }
  4288. }, {
  4289. closecallback: function () { }
  4290. }, { "style": { "height": "36px" } }).form; //创建窗体
  4291. _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); } }
  4292. break;
  4293. case "my":
  4294. _formdiv = new U.UF.UI.form(
  4295. "我的资料",
  4296. $$("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 }), {
  4297. "id": "my",
  4298. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4299. "onresize": function () { }
  4300. }, {
  4301. closecallback: function () { }
  4302. }, { "style": { "height": "36px" } }).form; //创建窗体
  4303. _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); } }
  4304. break;
  4305. case "program":
  4306. _formdiv = new U.UF.UI.form(
  4307. "编程平台",
  4308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4309. "id": "program",
  4310. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4316. break;
  4317. case "library":
  4318. _formdiv = new U.UF.UI.form(
  4319. "素材库",
  4320. $$("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 }), {
  4321. "id": "library",
  4322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4323. "onresize": function () { }
  4324. }, {
  4325. closecallback: function () { }
  4326. }, { "style": { "height": "36px" } }).form; //创建窗体
  4327. _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); } }
  4328. break;
  4329. case "whiteboard":
  4330. _formdiv = new U.UF.UI.form(
  4331. "电子白板",
  4332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4333. "id": "whiteboard",
  4334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4335. "onresize": function () { }
  4336. }, {
  4337. closecallback: function () { }
  4338. }, { "style": { "height": "36px" } }).form; //创建窗体
  4339. _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); } }
  4340. break;
  4341. case "investigation":
  4342. _formdiv = new U.UF.UI.form(
  4343. "问卷调查",
  4344. $$("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 }), {
  4345. "id": "investigation",
  4346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4347. "onresize": function () { }
  4348. }, {
  4349. closecallback: function () { }
  4350. }, { "style": { "height": "36px" } }).form; //创建窗体
  4351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4352. break;
  4353. case "note":
  4354. _formdiv = new U.UF.UI.form(
  4355. "便签分类",
  4356. $$("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 }), {
  4357. "id": "note",
  4358. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4359. "onresize": function () { }
  4360. }, {
  4361. closecallback: function () { }
  4362. }, { "style": { "height": "36px" } }).form; //创建窗体
  4363. _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); } }
  4364. break;
  4365. // case "score":
  4366. // _formdiv = new U.UF.UI.form(
  4367. // "量规评分",
  4368. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4369. // "id": "score",
  4370. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4371. // "onresize": function() {}
  4372. // }, {
  4373. // closecallback: function() {}
  4374. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4375. // _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); } }
  4376. // break;
  4377. case "mind":
  4378. _formdiv = new U.UF.UI.form(
  4379. "思维导图",
  4380. $$("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"
  4381. "id": "mind",
  4382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4383. "onresize": function () { }
  4384. }, {
  4385. closecallback: function () { }
  4386. }, { "style": { "height": "36px" } }).form; //创建窗体
  4387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4388. break;
  4389. case "doc":
  4390. // U.MD.D.I.isRoom();
  4391. _formdiv = new U.UF.UI.form(
  4392. "协同文档",
  4393. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4394. "id": "doc",
  4395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4396. "onresize": function () { }
  4397. }, {
  4398. closecallback: function () { }
  4399. }, { "style": { "height": "36px" } }).form; //创建窗体
  4400. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4401. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4402. })
  4403. _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); } }
  4404. break;
  4405. case "train": //好友打开
  4406. _formdiv = new U.UF.UI.form(
  4407. "训练平台",
  4408. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4409. "id": "train",
  4410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4411. "onresize": function () { }
  4412. }, {
  4413. closecallback: function () { }
  4414. }, { "style": { "height": "36px" } }).form; //创建窗体
  4415. _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); } }
  4416. break;
  4417. case "studentStudy":
  4418. _formdiv = new U.UF.UI.form(
  4419. "课程中心",
  4420. $$("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
  4421. "id": "studentStudy",
  4422. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4423. "onresize": function () { }
  4424. }, {
  4425. closecallback: function () { }
  4426. }, { "style": { "height": "36px" } }).form; //创建窗体
  4427. _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); } }
  4428. break;
  4429. case "mindNetwork": //好友打开
  4430. _formdiv = new U.UF.UI.form(
  4431. "思维网格",
  4432. $$("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 }), {
  4433. "id": "mindNetwork",
  4434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4435. "onresize": function () { }
  4436. }, {
  4437. closecallback: function () { }
  4438. }, { "style": { "height": "36px" } }).form; //创建窗体
  4439. _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); } }
  4440. break;
  4441. case "studentClassRoom": //好友打开
  4442. _formdiv = new U.UF.UI.form(
  4443. "实时课堂",
  4444. $$("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 }), {
  4445. "id": "studentClassRoom",
  4446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4447. "onresize": function () { }
  4448. }, {
  4449. closecallback: function () { }
  4450. }, { "style": { "height": "36px" } }).form; //创建窗体
  4451. _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); } }
  4452. setTimeout(() => {
  4453. U.UF.F.windowZooming(_formdiv)
  4454. }, 0);
  4455. break;
  4456. }
  4457. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4458. //选择应用处理
  4459. switch (str) {
  4460. case "project": //好友打开
  4461. _formdiv = new U.UF.UI.form(
  4462. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4463. $$("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 }), {
  4464. "id": "project",
  4465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4466. "onresize": function () { }
  4467. }, {
  4468. closecallback: function () { }
  4469. }, { "style": { "height": "36px" } }).form; //创建窗体
  4470. _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); } }
  4471. break;
  4472. case "student":
  4473. _formdiv = new U.UF.UI.form(
  4474. "学生管理",
  4475. $$("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 }), {
  4476. "id": "student",
  4477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4478. "onresize": function () { }
  4479. }, {
  4480. closecallback: function () { }
  4481. }, { "style": { "height": "36px" } }).form; //创建窗体
  4482. _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); } }
  4483. break;
  4484. case "evaluate":
  4485. _formdiv = new U.UF.UI.form(
  4486. "学生评价",
  4487. $$("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 }), {
  4488. "id": "evaluate",
  4489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4490. "onresize": function () { }
  4491. }, {
  4492. closecallback: function () { }
  4493. }, { "style": { "height": "36px" } }).form; //创建窗体
  4494. _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); } }
  4495. break;
  4496. case "sys":
  4497. _formdiv = new U.UF.UI.form(
  4498. "目标管理",
  4499. $$("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 }), {
  4500. "id": "sys",
  4501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4502. "onresize": function () { }
  4503. }, {
  4504. closecallback: function () { }
  4505. }, { "style": { "height": "36px" } }).form; //创建窗体
  4506. _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); } }
  4507. break;
  4508. case "courseDesign":
  4509. _formdiv = new U.UF.UI.form(
  4510. "项目设计",
  4511. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4512. "id": "courseDesign",
  4513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4514. "onresize": function () { }
  4515. }, {
  4516. closecallback: function () { }
  4517. }, { "style": { "height": "36px" } }).form; //创建窗体
  4518. _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); } }
  4519. break;
  4520. case "program":
  4521. _formdiv = new U.UF.UI.form(
  4522. "编程平台",
  4523. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4524. "id": "program",
  4525. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. _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); } }
  4531. break;
  4532. case "class":
  4533. _formdiv = new U.UF.UI.form(
  4534. "班级管理",
  4535. $$("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 }), {
  4536. "id": "class",
  4537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4538. "onresize": function () { }
  4539. }, {
  4540. closecallback: function () { }
  4541. }, { "style": { "height": "36px" } }).form; //创建窗体
  4542. _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); } }
  4543. break;
  4544. case "Grade":
  4545. _formdiv = new U.UF.UI.form(
  4546. "年级管理",
  4547. $$("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 }), {
  4548. "id": "Grade",
  4549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4550. "onresize": function () { }
  4551. }, {
  4552. closecallback: function () { }
  4553. }, { "style": { "height": "36px" } }).form; //创建窗体
  4554. _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); } }
  4555. break;
  4556. case "teacherOffice":
  4557. _formdiv = new U.UF.UI.form(
  4558. "教研室",
  4559. $$("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 }), {
  4560. "id": "teacherOffice",
  4561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4562. "onresize": function () { }
  4563. }, {
  4564. closecallback: function () { }
  4565. }, { "style": { "height": "36px" } }).form; //创建窗体
  4566. _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); } }
  4567. break;
  4568. case "my":
  4569. _formdiv = new U.UF.UI.form(
  4570. "我的资料",
  4571. $$("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 }), {
  4572. "id": "my",
  4573. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4574. "onresize": function () { }
  4575. }, {
  4576. closecallback: function () { }
  4577. }, { "style": { "height": "36px" } }).form; //创建窗体
  4578. _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); } }
  4579. break;
  4580. case "notice":
  4581. _formdiv = new U.UF.UI.form(
  4582. "通知公告",
  4583. $$("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 }), {
  4584. "id": "notice",
  4585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4586. "onresize": function () { }
  4587. }, {
  4588. closecallback: function () { }
  4589. }, { "style": { "height": "36px" } }).form; //创建窗体
  4590. _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); } }
  4591. break;
  4592. case "library":
  4593. _formdiv = new U.UF.UI.form(
  4594. "素材库",
  4595. $$("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 }), {
  4596. "id": "library",
  4597. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4598. "onresize": function () { }
  4599. }, {
  4600. closecallback: function () { }
  4601. }, { "style": { "height": "36px" } }).form; //创建窗体
  4602. _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); } }
  4603. break;
  4604. case "whiteboard":
  4605. _formdiv = new U.UF.UI.form(
  4606. "电子白板",
  4607. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4608. "id": "whiteboard",
  4609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4610. "onresize": function () { }
  4611. }, {
  4612. closecallback: function () { }
  4613. }, { "style": { "height": "36px" } }).form; //创建窗体
  4614. _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); } }
  4615. break;
  4616. case "investigation":
  4617. _formdiv = new U.UF.UI.form(
  4618. "问卷调查",
  4619. $$("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 }), {
  4620. "id": "investigation",
  4621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4622. "onresize": function () { }
  4623. }, {
  4624. closecallback: function () { }
  4625. }, { "style": { "height": "36px" } }).form; //创建窗体
  4626. _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); } }
  4627. break;
  4628. case "note":
  4629. _formdiv = new U.UF.UI.form(
  4630. "便签分类",
  4631. $$("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 }), {
  4632. "id": "note",
  4633. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4634. "onresize": function () { }
  4635. }, {
  4636. closecallback: function () { }
  4637. }, { "style": { "height": "36px" } }).form; //创建窗体
  4638. _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); } }
  4639. break;
  4640. // case "score":
  4641. // _formdiv = new U.UF.UI.form(
  4642. // "量规评分",
  4643. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4644. // "id": "score",
  4645. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4646. // "onresize": function() {}
  4647. // }, {
  4648. // closecallback: function() {}
  4649. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4650. // _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); } }
  4651. // break;
  4652. case "mind":
  4653. _formdiv = new U.UF.UI.form(
  4654. "思维导图",
  4655. $$("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"
  4656. "id": "mind",
  4657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4658. "onresize": function () { }
  4659. }, {
  4660. closecallback: function () { }
  4661. }, { "style": { "height": "36px" } }).form; //创建窗体
  4662. _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); } }
  4663. break;
  4664. case "doc":
  4665. // U.MD.D.I.isRoom();
  4666. _formdiv = new U.UF.UI.form(
  4667. "协同文档",
  4668. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4669. "id": "doc",
  4670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4671. "onresize": function () { }
  4672. }, {
  4673. closecallback: function () { }
  4674. }, { "style": { "height": "36px" } }).form; //创建窗体
  4675. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4676. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4677. })
  4678. _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); } }
  4679. break;
  4680. case "study":
  4681. _formdiv = new U.UF.UI.form(
  4682. "课程中心",
  4683. $$("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
  4684. "id": "study",
  4685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4686. "onresize": function () { }
  4687. }, {
  4688. closecallback: function () { }
  4689. }, { "style": { "height": "36px" } }).form; //创建窗体
  4690. _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); } }
  4691. break;
  4692. case "mindNetwork": //好友打开
  4693. _formdiv = new U.UF.UI.form(
  4694. "思维网格",
  4695. $$("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 }), {
  4696. "id": "mindNetwork",
  4697. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4698. "onresize": function () { }
  4699. }, {
  4700. closecallback: function () { }
  4701. }, { "style": { "height": "36px" } }).form; //创建窗体
  4702. _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); } }
  4703. break;
  4704. case "train": //好友打开
  4705. _formdiv = new U.UF.UI.form(
  4706. "训练平台",
  4707. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4708. "id": "mindNetwork",
  4709. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4710. "onresize": function () { }
  4711. }, {
  4712. closecallback: function () { }
  4713. }, { "style": { "height": "36px" } }).form; //创建窗体
  4714. _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); } }
  4715. break;
  4716. case "teacherClassRoom": //好友打开
  4717. _formdiv = new U.UF.UI.form(
  4718. "实时课堂",
  4719. $$("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 }), {
  4720. "id": "teacherClassRoom",
  4721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //创建窗体
  4726. _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); } }
  4727. setTimeout(() => {
  4728. U.UF.F.windowZooming(_formdiv)
  4729. }, 0);
  4730. break;
  4731. }
  4732. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4733. switch (str) {
  4734. case "project": //好友打开
  4735. _formdiv = new U.UF.UI.form(
  4736. "课程管理",
  4737. $$("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 }), {
  4738. "id": "project",
  4739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4740. "onresize": function () { }
  4741. }, {
  4742. closecallback: function () { }
  4743. }, { "style": { "height": "36px" } }).form; //创建窗体
  4744. _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); } }
  4745. break;
  4746. case "evaluate":
  4747. _formdiv = new U.UF.UI.form(
  4748. "学生评价",
  4749. $$("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 }), {
  4750. "id": "evaluate",
  4751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4752. "onresize": function () { }
  4753. }, {
  4754. closecallback: function () { }
  4755. }, { "style": { "height": "36px" } }).form; //创建窗体
  4756. _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); } }
  4757. break;
  4758. case "notice":
  4759. _formdiv = new U.UF.UI.form(
  4760. "通知公告",
  4761. $$("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 }), {
  4762. "id": "notice",
  4763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4764. "onresize": function () { }
  4765. }, {
  4766. closecallback: function () { }
  4767. }, { "style": { "height": "36px" } }).form; //创建窗体
  4768. _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); } }
  4769. break;
  4770. case "stuLibrary":
  4771. _formdiv = new U.UF.UI.form(
  4772. "学习资料",
  4773. $$("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 }), {
  4774. "id": "stuLibrary",
  4775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //创建窗体
  4780. _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); } }
  4781. break;
  4782. case "program":
  4783. _formdiv = new U.UF.UI.form(
  4784. "编程平台",
  4785. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4786. "id": "program",
  4787. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4788. "onresize": function () { }
  4789. }, {
  4790. closecallback: function () { }
  4791. }, { "style": { "height": "36px" } }).form; //创建窗体
  4792. _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); } }
  4793. break;
  4794. case "whiteboard":
  4795. _formdiv = new U.UF.UI.form(
  4796. "电子白板",
  4797. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4798. "id": "whiteboard",
  4799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4800. "onresize": function () { }
  4801. }, {
  4802. closecallback: function () { }
  4803. }, { "style": { "height": "36px" } }).form; //创建窗体
  4804. _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); } }
  4805. break;
  4806. case "investigation":
  4807. _formdiv = new U.UF.UI.form(
  4808. "问卷调查",
  4809. $$("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 }), {
  4810. "id": "investigation",
  4811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //创建窗体
  4816. _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); } }
  4817. break;
  4818. case "mind":
  4819. _formdiv = new U.UF.UI.form(
  4820. "思维导图",
  4821. $$("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"
  4822. "id": "mind",
  4823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4824. "onresize": function () { }
  4825. }, {
  4826. closecallback: function () { }
  4827. }, { "style": { "height": "36px" } }).form; //创建窗体
  4828. _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); } }
  4829. break;
  4830. case "doc":
  4831. // U.MD.D.I.isRoom();
  4832. _formdiv = new U.UF.UI.form(
  4833. "协同文档",
  4834. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4835. "id": "doc",
  4836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4837. "onresize": function () { }
  4838. }, {
  4839. closecallback: function () { }
  4840. }, { "style": { "height": "36px" } }).form; //创建窗体
  4841. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4842. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4843. })
  4844. _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); } }
  4845. break;
  4846. case "study":
  4847. _formdiv = new U.UF.UI.form(
  4848. "课程中心",
  4849. $$("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
  4850. "id": "study",
  4851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4852. "onresize": function () { }
  4853. }, {
  4854. closecallback: function () { }
  4855. }, { "style": { "height": "36px" } }).form; //创建窗体
  4856. _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); } }
  4857. break;
  4858. case "mindNetwork": //好友打开
  4859. _formdiv = new U.UF.UI.form(
  4860. "思维网格",
  4861. $$("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 }), {
  4862. "id": "mindNetwork",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. _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); } }
  4869. break;
  4870. case "train": //好友打开
  4871. _formdiv = new U.UF.UI.form(
  4872. "训练平台",
  4873. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4874. "id": "train",
  4875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4876. "onresize": function () { }
  4877. }, {
  4878. closecallback: function () { }
  4879. }, { "style": { "height": "36px" } }).form; //创建窗体
  4880. _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); } }
  4881. break;
  4882. case "sys":
  4883. _formdiv = new U.UF.UI.form(
  4884. "目标管理",
  4885. $$("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 }), {
  4886. "id": "sys",
  4887. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4888. "onresize": function () { }
  4889. }, {
  4890. closecallback: function () { }
  4891. }, { "style": { "height": "36px" } }).form; //创建窗体
  4892. _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); } }
  4893. break;
  4894. case "courseDesign":
  4895. _formdiv = new U.UF.UI.form(
  4896. "项目设计",
  4897. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4898. "id": "courseDesign",
  4899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. _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); } }
  4905. break;
  4906. }
  4907. } else if (!_type) {
  4908. switch (str) {
  4909. case "my":
  4910. _formdiv = new U.UF.UI.form(
  4911. "我的资料",
  4912. $$("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 }), {
  4913. "id": "my",
  4914. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. _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); } }
  4920. break;
  4921. }
  4922. }
  4923. switch (str) {
  4924. // AIprogram2 AI体验 aihub.cocorobo.cn
  4925. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4926. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4927. case "formulaEdi": //公式编辑
  4928. _formdiv = new U.UF.UI.form(
  4929. "公式编辑",
  4930. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4931. "id": "formulaEdi",
  4932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. _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); } }
  4938. break;
  4939. case "molStr": //分子结构
  4940. _formdiv = new U.UF.UI.form(
  4941. "分子结构",
  4942. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4943. "id": "molStr",
  4944. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4945. "onresize": function () { }
  4946. }, {
  4947. closecallback: function () { }
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. _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); } }
  4950. break;
  4951. case "timeAxis": //时间轴
  4952. _formdiv = new U.UF.UI.form(
  4953. "时间轴",
  4954. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4955. "id": "timeAxis",
  4956. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. _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); } }
  4962. break;
  4963. case "AIprogram2": //AI体验
  4964. _formdiv = new U.UF.UI.form(
  4965. "AI体验",
  4966. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4967. "id": "AIprogram2",
  4968. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _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); } }
  4974. break;
  4975. case "Pythonprogram": //python编程
  4976. _formdiv = new U.UF.UI.form(
  4977. "Python编程",
  4978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4979. "id": "Pythonprogram",
  4980. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _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); } }
  4986. break;
  4987. case "AIprogram": //ai编程
  4988. _formdiv = new U.UF.UI.form(
  4989. "AI编程平台",
  4990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4991. "id": "AIprogram",
  4992. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. _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); } }
  4998. break;
  4999. case "CocoPi": //CocoPi
  5000. _formdiv = new U.UF.UI.form(
  5001. "CocoPi",
  5002. $$("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" }), {
  5003. "id": "CocoPi",
  5004. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. _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); } }
  5010. break;
  5011. case "Wood": //Wood
  5012. _formdiv = new U.UF.UI.form(
  5013. "海龟编程",
  5014. $$("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/" }), {
  5015. "id": "Wood",
  5016. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. _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); } }
  5022. break;
  5023. case "car": //模拟驾驶
  5024. _formdiv = new U.UF.UI.form(
  5025. "模拟驾驶",
  5026. $$("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/" }), {
  5027. "id": "car",
  5028. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5029. "onresize": function () { }
  5030. }, {
  5031. closecallback: function () { }
  5032. }, { "style": { "height": "36px" } }).form; //创建窗体
  5033. _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); } }
  5034. break;
  5035. case "lineSearch": //路径搜索
  5036. _formdiv = new U.UF.UI.form(
  5037. "路径搜索",
  5038. $$("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/" }), {
  5039. "id": "lineSearch",
  5040. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. _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); } }
  5046. break;
  5047. case "deepLearning": //深度学习
  5048. _formdiv = new U.UF.UI.form(
  5049. "深度学习",
  5050. $$("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/#" }), {
  5051. "id": "deepLearning",
  5052. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. _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); } }
  5058. break;
  5059. case "allHistory": //深度学习
  5060. _formdiv = new U.UF.UI.form(
  5061. "全历史",
  5062. $$("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/" }), {
  5063. "id": "allHistory",
  5064. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. _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); } }
  5070. break;
  5071. case "chatPDF": //ai编程
  5072. _formdiv = new U.UF.UI.form(
  5073. "chatPDF",
  5074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5075. "id": "chatPDF",
  5076. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _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); } }
  5082. break;
  5083. case "resources": //国家教育
  5084. _formdiv = new U.UF.UI.form(
  5085. "国家教育",
  5086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5087. "id": "resources",
  5088. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "codeEdit": //源码编辑
  5096. _formdiv = new U.UF.UI.form(
  5097. "源码编辑",
  5098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5099. "id": "codeEdit",
  5100. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break; //
  5107. case "MindMap": //MindMap
  5108. _formdiv = new U.UF.UI.form(
  5109. "MindMap",
  5110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5111. "id": "MindMap",
  5112. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "netWorkPanel": //netWorkPanel
  5120. _formdiv = new U.UF.UI.form(
  5121. "netWorkPanel",
  5122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5123. "id": "netWorkPanel",
  5124. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. case "GeoGebra": //GeoGebra
  5132. _formdiv = new U.UF.UI.form(
  5133. "GeoGebra",
  5134. $$("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" }), {
  5135. "id": "GeoGebra",
  5136. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. break;
  5143. case "translation": //翻译
  5144. _formdiv = new U.UF.UI.form(
  5145. "翻译",
  5146. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5147. "id": "translation",
  5148. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. _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); } }
  5154. break;
  5155. case "mohe": //魔盒
  5156. _formdiv = new U.UF.UI.form(
  5157. "魔盒识字",
  5158. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5159. "id": "mohe",
  5160. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. case "24game": //24点
  5168. _formdiv = new U.UF.UI.form(
  5169. "24点",
  5170. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5171. "id": "24game",
  5172. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. _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); } }
  5178. break;
  5179. case "case":
  5180. _formdiv = new U.UF.UI.form(
  5181. "课程进展",
  5182. $$("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 }), {
  5183. "id": "case",
  5184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5185. "onresize": function () { }
  5186. }, {
  5187. closecallback: function () { }
  5188. }, { "style": { "height": "36px" } }).form; //创建窗体
  5189. _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); } }
  5190. break;
  5191. case "snf":
  5192. _formdiv = new U.UF.UI.form(
  5193. "赛诺梵",
  5194. $$("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" }), {
  5195. "id": "snf",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. case "hanFamily":
  5204. _formdiv = new U.UF.UI.form(
  5205. "汉字家族",
  5206. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5207. "id": "hanFamily",
  5208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5209. "onresize": function () { }
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //创建窗体
  5213. _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); } }
  5214. break;
  5215. case "hanClassics":
  5216. _formdiv = new U.UF.UI.form(
  5217. "国学经典",
  5218. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5219. "id": "hanClassics",
  5220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. _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); } }
  5226. break;
  5227. case "hanTraining":
  5228. _formdiv = new U.UF.UI.form(
  5229. "笔画训练",
  5230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5231. "id": "hanTraining",
  5232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. _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); } }
  5238. break;
  5239. case "hanClass":
  5240. _formdiv = new U.UF.UI.form(
  5241. "书法课堂",
  5242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5243. "id": "hanClass",
  5244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _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); } }
  5250. break;
  5251. case "han":
  5252. _formdiv = new U.UF.UI.form(
  5253. "汉字宫",
  5254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5255. "id": "han",
  5256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5257. "onresize": function () { }
  5258. }, {
  5259. closecallback: function () { }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. _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); } }
  5262. break;
  5263. case "projectGM": //课程管理
  5264. _formdiv = new U.UF.UI.form(
  5265. "课程管理",
  5266. $$("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 }), {
  5267. "id": "projectGM",
  5268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. case "studyGM": //课程中心
  5276. _formdiv = new U.UF.UI.form(
  5277. "课程中心",
  5278. $$("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
  5279. "id": "study",
  5280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _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); } }
  5286. break;
  5287. // studentGM
  5288. case "studentGM": //学生管理
  5289. _formdiv = new U.UF.UI.form(
  5290. "学生管理",
  5291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  5292. "id": "studentGM",
  5293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5299. break;
  5300. case "evaluateGM": //学生评价
  5301. _formdiv = new U.UF.UI.form(
  5302. "学生评价",
  5303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5304. "id": "evaluateGM",
  5305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5311. break;
  5312. // classGM
  5313. case "classGM": //班级管理
  5314. _formdiv = new U.UF.UI.form(
  5315. "班级管理",
  5316. $$("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 }), {
  5317. "id": "classGM",
  5318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. _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); } }
  5324. break;
  5325. // dataGM
  5326. case "dataGM":
  5327. _formdiv = new U.UF.UI.form(
  5328. "我的资料",
  5329. $$("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 }), {
  5330. "id": "dataGM",
  5331. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. _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); } }
  5337. break;
  5338. // caseGM
  5339. case "caseGM": //课程进展
  5340. _formdiv = new U.UF.UI.form(
  5341. "课程进展",
  5342. $$("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 }), {
  5343. "id": "caseGM",
  5344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. // meterialGM
  5352. case "meterialGM": //素材库
  5353. _formdiv = new U.UF.UI.form(
  5354. "素材库",
  5355. $$("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 }), {
  5356. "id": "meterialGM",
  5357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _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); } }
  5363. break;
  5364. // evaluateSGM
  5365. case "evaluateSGM": //我的评价
  5366. _formdiv = new U.UF.UI.form(
  5367. "我的评价",
  5368. $$("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 }), {
  5369. "id": "evaluateSGM",
  5370. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //创建窗体
  5375. _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); } }
  5376. break;
  5377. case "jupyter": //jupyter
  5378. _formdiv = new U.UF.UI.form(
  5379. "jupyter",
  5380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5381. "id": "jupyter",
  5382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5383. "onresize": function () { }
  5384. }, {
  5385. closecallback: function () { }
  5386. }, { "style": { "height": "36px" } }).form; //创建窗体
  5387. _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); } }
  5388. break;
  5389. case "number": //数字实验室
  5390. _formdiv = new U.UF.UI.form(
  5391. "数字实验室",
  5392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5393. "id": "number",
  5394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5395. "onresize": function () { }
  5396. }, {
  5397. closecallback: function () { }
  5398. }, { "style": { "height": "36px" } }).form; //创建窗体
  5399. _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); } }
  5400. break;
  5401. case "studentCourse": //项目管理 学生
  5402. _formdiv = new U.UF.UI.form(
  5403. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5404. $$("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 }), {
  5405. "id": "studentCourse",
  5406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5407. "onresize": function () { }
  5408. }, {
  5409. closecallback: function () { }
  5410. }, { "style": { "height": "36px" } }).form; //创建窗体
  5411. _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); } }
  5412. break;
  5413. case "studentCourseS": //项目管理 老师
  5414. _formdiv = new U.UF.UI.form(
  5415. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5416. $$("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 }), {
  5417. "id": "studentCourseS",
  5418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5419. "onresize": function () { }
  5420. }, {
  5421. closecallback: function () { }
  5422. }, { "style": { "height": "36px" } }).form; //创建窗体
  5423. _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); } }
  5424. break;
  5425. case "studentIndex": //项目中心
  5426. _formdiv = new U.UF.UI.form(
  5427. "项目中心",
  5428. $$("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 }), {
  5429. "id": "studentIndex",
  5430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5431. "onresize": function () { }
  5432. }, {
  5433. closecallback: function () { }
  5434. }, { "style": { "height": "36px" } }).form; //创建窗体
  5435. _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); } }
  5436. break;
  5437. case "CaseDesignS":
  5438. _formdiv = new U.UF.UI.form(
  5439. "项目进展",
  5440. $$("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 }), {
  5441. "id": "case",
  5442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. _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); } }
  5448. break;
  5449. case "tcStudent": //腾讯学生管理
  5450. _formdiv = new U.UF.UI.form(
  5451. "学生管理",
  5452. $$("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 }), {
  5453. "id": "tcStudent",
  5454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5455. "onresize": function () { }
  5456. }, {
  5457. closecallback: function () { }
  5458. }, { "style": { "height": "36px" } }).form; //创建窗体
  5459. _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); } }
  5460. break;
  5461. case "tcSchool": //腾讯学校管理
  5462. _formdiv = new U.UF.UI.form(
  5463. "学校管理",
  5464. $$("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 }), {
  5465. "id": "tcSchool",
  5466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. _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); } }
  5472. break;
  5473. case "tcTeacher": //腾讯学校管理
  5474. _formdiv = new U.UF.UI.form(
  5475. "教师管理",
  5476. $$("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 }), {
  5477. "id": "tcTeacher",
  5478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. _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); } }
  5484. break;
  5485. case "tcData": //腾讯我的资料
  5486. _formdiv = new U.UF.UI.form(
  5487. "我的资料",
  5488. $$("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 }), {
  5489. "id": "tcData",
  5490. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //创建窗体
  5495. _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); } }
  5496. break;
  5497. case "tcNotice": //腾讯消息通知
  5498. _formdiv = new U.UF.UI.form(
  5499. "消息通知",
  5500. $$("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 }), {
  5501. "id": "tcNotice",
  5502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //创建窗体
  5507. _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); } }
  5508. break;
  5509. case "myReport": //好友打开
  5510. _formdiv = new U.UF.UI.form(
  5511. "我的评价",
  5512. $$("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 }), {
  5513. "id": "myReport",
  5514. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //创建窗体
  5519. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5520. break;
  5521. case "learnAna": //好友打开
  5522. _formdiv = new U.UF.UI.form(
  5523. "学习分析",
  5524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5525. "id": "learnAna",
  5526. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5532. break;
  5533. case "AIChat": //AI共创
  5534. _formdiv = new U.UF.UI.form(
  5535. "AI共创",
  5536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5537. "id": "AIChat",
  5538. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. istop: true,
  5542. closecallback: function () { $("#aichat_icon").remove(); },
  5543. narrowcallback: function () {
  5544. if (!$("#aichat_icon")[0]) {
  5545. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5546. }
  5547. },
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "ainew": //AI共创
  5552. _formdiv = new U.UF.UI.form(
  5553. "AI协同",
  5554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5555. "id": "ainew",
  5556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "gpt4": //gpt4
  5564. _formdiv = new U.UF.UI.form(
  5565. "AI助手",
  5566. $$("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 }), {
  5567. "id": "gpt4",
  5568. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "aigpt": //gpt4
  5576. _formdiv = new U.UF.UI.form(
  5577. "AI助手+",
  5578. $$("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 }), {
  5579. "id": "aigpt",
  5580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "futureClass": //AI共创
  5588. _formdiv = new U.UF.UI.form(
  5589. "协同建构",
  5590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  5591. "id": "synergyCourse",
  5592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () {
  5596. $("iframe", _formdiv)[0].contentWindow.loginout();
  5597. }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "aiagent": //ai agent
  5602. _formdiv = new U.UF.UI.form(
  5603. "AI Agent",
  5604. $$("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" }), {
  5605. "id": "AIAgent",
  5606. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5612. break;
  5613. case "dataBoard": //数据看板
  5614. _formdiv = new U.UF.UI.form(
  5615. "数据看板",
  5616. $$("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 }), {
  5617. "id": "dataBoard",
  5618. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5624. break;
  5625. case "dataBoardSies": //数据融合
  5626. _formdiv = new U.UF.UI.form(
  5627. "数据融合",
  5628. $$("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 }), {
  5629. "id": "dataBoardSies",
  5630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5636. break;
  5637. case "dataBoardNew": //数据看板
  5638. _formdiv = new U.UF.UI.form(
  5639. "综合看板",
  5640. $$("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 }), {
  5641. "id": "dataBoardNew",
  5642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5648. break;
  5649. case "dataBoardTest": //数据看板
  5650. _formdiv = new U.UF.UI.form(
  5651. "评测看板",
  5652. $$("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 }), {
  5653. "id": "dataBoardTest",
  5654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5660. break;
  5661. case "AIAnalyse": //AI共创
  5662. _formdiv = new U.UF.UI.form(
  5663. "AI分析",
  5664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5665. "id": "AIAnalyse",
  5666. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5672. break;
  5673. case "studioCourse": //AI共创
  5674. _formdiv = new U.UF.UI.form(
  5675. "工作管理",
  5676. $$("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 }), {
  5677. "id": "studioCourse",
  5678. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5684. break;
  5685. case "studioIndex": //AI共创
  5686. _formdiv = new U.UF.UI.form(
  5687. "工作中心",
  5688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5689. "id": "studioIndex",
  5690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5696. break;
  5697. case "source":
  5698. _formdiv = new U.UF.UI.form(
  5699. "教学资源",
  5700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5701. "id": "source",
  5702. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5708. break;
  5709. case "testTeacher":
  5710. _formdiv = new U.UF.UI.form(
  5711. "教师管理",
  5712. $$("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 }), {
  5713. "id": "testTeacher",
  5714. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5720. break;
  5721. case "testStudent":
  5722. _formdiv = new U.UF.UI.form(
  5723. "教师中心",
  5724. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  5725. "id": "testStudent",
  5726. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5732. break;
  5733. case "testTeacherSies":
  5734. _formdiv = new U.UF.UI.form(
  5735. "教师管理",
  5736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5737. "id": "testTeacherSies",
  5738. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5744. break;
  5745. case "testStudentSies":
  5746. _formdiv = new U.UF.UI.form(
  5747. "教师中心",
  5748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  5749. "id": "testStudentSies",
  5750. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5756. break;
  5757. case "ytpbl": //消息通知
  5758. _formdiv = new U.UF.UI.form(
  5759. "案例征集",
  5760. $$("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 }), {
  5761. "id": "ytpbl",
  5762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5768. // 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");
  5769. break;
  5770. case "aiCourseResource": //人工智能窗体
  5771. _formdiv = new U.UF.UI.form(
  5772. false,
  5773. $$("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 }), {
  5774. "id": "aiCourseResource",
  5775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5776. "onresize": function () { },
  5777. "isdrag": false,
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //创建窗体
  5781. _taskbar = ''
  5782. break;
  5783. case "szdjgCocooroboX": //图形化编程
  5784. _formdiv = new U.UF.UI.form(
  5785. "图形化编程",
  5786. $$("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" }), {
  5787. "id": "szdjgCocooroboX",
  5788. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _taskbar = ''
  5794. break;
  5795. case "szdjgPython": //python编程
  5796. _formdiv = new U.UF.UI.form(
  5797. "Python编程",
  5798. $$("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" }), {
  5799. "id": "szdjgPython",
  5800. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _taskbar = ''
  5806. break;
  5807. case "Record":
  5808. _formdiv = new U.UF.UI.form(
  5809. "观察记录",
  5810. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5811. "id": "Record",
  5812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5818. break;
  5819. case "aigptCourse":
  5820. _formdiv = new U.UF.UI.form(
  5821. "AI智能体",
  5822. $$("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' }), {
  5823. "id": "aigptCourse",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5830. break;
  5831. case "classroomObservation":
  5832. _formdiv = new U.UF.UI.form(
  5833. "课堂观察",
  5834. $$("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 }), {
  5835. "id": "classroomObservation",
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5842. break;
  5843. case "pblCourse":
  5844. _formdiv = new U.UF.UI.form(
  5845. "学生PBL",
  5846. $$("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 }), {
  5847. "id": "pblCourse",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5854. break;
  5855. }
  5856. //U.MD.D.I.openClick(str);
  5857. //如果有任务栏信息
  5858. if (_taskbar) {
  5859. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5860. }
  5861. }
  5862. // U.MD.D.I.openClick = function(str){
  5863. // var click = '';
  5864. // switch(str){
  5865. // case 'friend':
  5866. // click = '我的好友';
  5867. // break;
  5868. // case 'domain':
  5869. // click = '域名管理';
  5870. // break;
  5871. // case 'disk':
  5872. // click = '我的云盘';
  5873. // break;
  5874. // case 'word':
  5875. // click = 'Word';
  5876. // break;
  5877. // case 'excel':
  5878. // click = 'Execl';
  5879. // break;
  5880. // case 'txt':
  5881. // click = '文本文件';
  5882. // break;
  5883. // case 'lookupFriend':
  5884. // click = '查找好友';
  5885. // break;
  5886. // case 'ftp':
  5887. // click = 'FTP';
  5888. // break;
  5889. // case 'group':
  5890. // click = '群组';
  5891. // break;
  5892. // case 'set':
  5893. // click = '我的设置';
  5894. // break;
  5895. // case 'systemSet':
  5896. // click = '系统设置';
  5897. // break;
  5898. // case 'boomYun':
  5899. // click = '互联办公';
  5900. // break;
  5901. // case 'xz':
  5902. // click = '云端下载';
  5903. // break;
  5904. // case 'client':
  5905. // click = '有思浏览器';
  5906. // break;
  5907. // case 'backEndProgramming':
  5908. // click = '在线后台编程';
  5909. // break;
  5910. // case 'frontEndProgramming':
  5911. // click = '在线前端编程';
  5912. // break;
  5913. // default: break;
  5914. // }
  5915. // if(U.MD.D.I.Ip && click){
  5916. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5917. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5918. // })
  5919. // }
  5920. // }
  5921. /**
  5922. *函数作用:ajax简易函数,使用post格式
  5923. *@param url {data} 后台地址
  5924. *@param data {data} 参数json
  5925. *@param fn {data} 回调函数
  5926. *
  5927. */
  5928. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5929. // var xhr = new XMLHttpRequest();
  5930. // xhr.open("GET",url,true);
  5931. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5932. // xhr.onreadystatechange = function(){
  5933. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5934. // fn.call(this,xhr.responseText);
  5935. // }
  5936. // };
  5937. // xhr.send();
  5938. // }
  5939. /*判断是否是内网IP*/
  5940. // U.MD.D.I.isInnerIPFn = function(str){
  5941. // var curPageUrl = str;
  5942. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5943. // curPageUrl =curPageUrl.replace(reg1,'');
  5944. // // console.log('curPageUrl-1 '+curPageUrl);
  5945. // var reg2 = /\:+/g;//替换冒号为一点
  5946. // curPageUrl =curPageUrl.replace(reg2,'.');
  5947. // // console.log('curPageUrl-2 '+curPageUrl);
  5948. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5949. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5950. // if(curPageUrl[2] != '16'){
  5951. // return ipAddress;
  5952. // }else{
  5953. // return false;
  5954. // }
  5955. // }
  5956. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5957. // //compatibility for firefox and chrome
  5958. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5959. // var pc = new myPeerConnection({
  5960. // iceServers: []
  5961. // }),
  5962. // noop = function() {},
  5963. // localIPs = {},
  5964. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5965. // key;
  5966. // function iterateIP(ip) {
  5967. // if (!localIPs[ip]) onNewIP(ip);
  5968. // localIPs[ip] = true;
  5969. // }
  5970. // //create a bogus data channel
  5971. // pc.createDataChannel("");
  5972. // // create offer and set local description
  5973. // pc.createOffer().then(function(sdp) {
  5974. // sdp.sdp.split('\n').forEach(function(line) {
  5975. // if (line.indexOf('candidate') < 0) return;
  5976. // line.match(ipRegex).forEach(iterateIP);
  5977. // });
  5978. // pc.setLocalDescription(sdp, noop, noop);
  5979. // }).catch(function(reason) {
  5980. // // An error occurred, so handle the failure to connect
  5981. // });
  5982. // //sten for candidate events
  5983. // pc.onicecandidate = function(ice) {
  5984. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5985. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5986. // };
  5987. // }
  5988. // U.MD.D.I.getUserIpBool = function(callback){
  5989. // U.MD.D.I.getUserIP(function(ip){
  5990. // alert("Got IP! :" + ip);
  5991. // });
  5992. //}
  5993. //#endregion
  5994. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5995. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5996. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5997. _userinfo = US.userInfo, //登录用户信息
  5998. _userid = US.userInfo.userid //登录用户id
  5999. let _iframe;
  6000. let _cid = cid,
  6001. _stage = stage,
  6002. _task = task,
  6003. _tool = tool;
  6004. var _jie = $$("div", {
  6005. "style": {
  6006. "position": "absolute",
  6007. "bottom": "50px",
  6008. "right": "50px",
  6009. "zIndex": "9999",
  6010. "backgroundColor": "#2268bc",
  6011. "color": "#fff",
  6012. "padding": "12px 20px",
  6013. "cursor": "pointer",
  6014. "borderRadius": "4px",
  6015. },
  6016. "innerHTML": "提交作业"
  6017. })
  6018. let aTool = ''
  6019. let _loading = document.createElement('div')
  6020. _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;"
  6021. // _loading.id = "";
  6022. let _lchild = document.createElement('div')
  6023. let _limg = document.createElement('img')
  6024. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6025. _limg.style = "width: 26px;margin-right: 10px;"
  6026. _lchild.appendChild(_limg)
  6027. let _lspan = document.createElement('span')
  6028. _lspan.innerHTML = "上传中..."
  6029. _lchild.appendChild(_lspan)
  6030. _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%);"
  6031. _loading.appendChild(_lchild)
  6032. var _box = $$('div', {
  6033. "style": {
  6034. "position": "relative",
  6035. "width": "100%",
  6036. "height": "100%",
  6037. },
  6038. })
  6039. _box.appendChild(_loading)
  6040. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6041. switch (str) {
  6042. case "whiteboard":
  6043. aTool = 1;
  6044. _iframe = $$("iframe", {
  6045. "frameborder": "no",
  6046. "border": "0",
  6047. "scrolling ": "no",
  6048. "style": {
  6049. "cssText": "border:0;width:100%;height:100%"
  6050. },
  6051. "src": "https://beta.iwb.cocorobo.cn/"
  6052. })
  6053. _box.appendChild(_iframe);
  6054. _box.appendChild(_jie);
  6055. _formdiv = new U.UF.UI.form(
  6056. "电子白板",
  6057. _box, {
  6058. "id": "whiteboard" + cid + stage + task + tool,
  6059. "style": {
  6060. "width": "90%",
  6061. "height": "90%",
  6062. "overflow": 'hidden'
  6063. },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, {
  6068. "style": {
  6069. "height": "36px"
  6070. }
  6071. }).form; //创建窗体
  6072. _taskbar = {
  6073. "id": str + _formdiv.id,
  6074. "style": {
  6075. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6076. },
  6077. "name": "电子白板",
  6078. "forms": _formdiv,
  6079. "click": function () {
  6080. U.MD.D.I.openApplication(str, obj, info);
  6081. }
  6082. }
  6083. break;
  6084. case "mind":
  6085. aTool = 3;
  6086. _iframe = $$("iframe", {
  6087. "frameborder": "no",
  6088. "border": "0",
  6089. "scrolling ": "no",
  6090. "style": {
  6091. "cssText": "border:0;width:100%;height:100%"
  6092. },
  6093. "src": "/kityminder-editor/dist/index.html"
  6094. })
  6095. _box.appendChild(_iframe);
  6096. _box.appendChild(_jie);
  6097. _formdiv = new U.UF.UI.form(
  6098. "思维导图",
  6099. _box, { //"/jsmind/example/demo.html"
  6100. "id": "mind" + cid + stage + task + tool,
  6101. "style": {
  6102. "width": "90%",
  6103. "height": "90%",
  6104. "overflow": 'hidden'
  6105. },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, {
  6110. "style": {
  6111. "height": "36px"
  6112. }
  6113. }).form; //创建窗体
  6114. _taskbar = {
  6115. "id": str + _formdiv.id,
  6116. "style": {
  6117. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6118. },
  6119. "name": "思维导图",
  6120. "forms": _formdiv,
  6121. "click": function () {
  6122. U.MD.D.I.openApplication(str, obj, info);
  6123. }
  6124. }
  6125. break;
  6126. case "MindMap":
  6127. aTool = 3;
  6128. _iframe = $$("iframe", {
  6129. "frameborder": "no",
  6130. "border": "0",
  6131. "scrolling ": "no",
  6132. "style": {
  6133. "cssText": "border:0;width:100%;height:100%"
  6134. },
  6135. "src": "//cloud.cocorobo.cn/mind/"
  6136. })
  6137. _box.appendChild(_iframe);
  6138. _box.appendChild(_jie);
  6139. _formdiv = new U.UF.UI.form(
  6140. "思维导图",
  6141. _box, { //"/jsmind/example/demo.html"
  6142. "id": "mind" + cid + stage + task + tool,
  6143. "style": {
  6144. "width": "90%",
  6145. "height": "90%",
  6146. "overflow": 'hidden'
  6147. },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, {
  6152. "style": {
  6153. "height": "36px"
  6154. }
  6155. }).form; //创建窗体
  6156. _taskbar = {
  6157. "id": str + _formdiv.id,
  6158. "style": {
  6159. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6160. },
  6161. "name": "思维导图",
  6162. "forms": _formdiv,
  6163. "click": function () {
  6164. U.MD.D.I.openApplication(str, obj, info);
  6165. }
  6166. }
  6167. break;
  6168. case "doc":
  6169. aTool = 6;
  6170. _iframe = $$("iframe", {
  6171. "frameborder": "no",
  6172. "border": "0",
  6173. "scrolling ": "no",
  6174. "style": {
  6175. "cssText": "border:0;width:100%;height:100%"
  6176. },
  6177. "src": "/Office/Word/WordEditArea.htm"
  6178. })
  6179. _box.appendChild(_iframe);
  6180. _box.appendChild(_jie);
  6181. _formdiv = new U.UF.UI.form(
  6182. "协同文档",
  6183. _box, {
  6184. "id": "doc" + cid + stage + task + tool,
  6185. "style": {
  6186. "width": "90%",
  6187. "height": "90%",
  6188. "overflow": 'hidden'
  6189. },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, {
  6194. "style": {
  6195. "height": "36px"
  6196. }
  6197. }).form; //创建窗体
  6198. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6199. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6200. })
  6201. _taskbar = {
  6202. "id": str + _formdiv.id,
  6203. "style": {
  6204. "backgroundImage": "url(/img/icon/doc.png)"
  6205. },
  6206. "name": "协同文档",
  6207. "forms": _formdiv,
  6208. "click": function () {
  6209. U.MD.D.I.openApplication(str, obj, info);
  6210. }
  6211. }
  6212. break;
  6213. case "mindNetwork": //好友打开
  6214. aTool = 7;
  6215. _iframe = $$("iframe", {
  6216. "webkitallowfullscreen": "",
  6217. "mozallowfullscreen": "",
  6218. "allowfullscreen": "",
  6219. "frameborder": "no",
  6220. "border": "0",
  6221. "scrolling ": "no",
  6222. "style": {
  6223. "cssText": "border:0; width:100%; height:100%;"
  6224. },
  6225. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6226. })
  6227. _box.appendChild(_iframe);
  6228. _box.appendChild(_jie);
  6229. _formdiv = new U.UF.UI.form(
  6230. "思维网格",
  6231. _box, {
  6232. "id": "mindNetwork" + cid + stage + task + tool,
  6233. "style": {
  6234. "width": "90%",
  6235. "height": "90%",
  6236. "overflow": 'hidden'
  6237. },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, {
  6242. "style": {
  6243. "height": "36px"
  6244. }
  6245. }).form; //创建窗体
  6246. _taskbar = {
  6247. "id": str + _formdiv.id,
  6248. "style": {
  6249. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6250. },
  6251. "name": "思维网格",
  6252. "forms": _formdiv,
  6253. "click": function () {
  6254. U.MD.D.I.openApplication(str, obj, info);
  6255. }
  6256. }
  6257. break;
  6258. case "courseDesign":
  6259. _iframe = $$("iframe", {
  6260. "webkitallowfullscreen": "",
  6261. "mozallowfullscreen": "",
  6262. "allowfullscreen": "",
  6263. "frameborder": "no",
  6264. "border": "0",
  6265. "scrolling ": "no",
  6266. "style": {
  6267. "cssText": "border:0; width:100%; height:100%;"
  6268. },
  6269. "src": "/course-design-vue"
  6270. })
  6271. _box.appendChild(_iframe);
  6272. _box.appendChild(_jie);
  6273. _formdiv = new U.UF.UI.form(
  6274. "项目设计",
  6275. _box, {
  6276. "id": "courseDesign" + cid + stage + task + tool,
  6277. "style": {
  6278. "width": "90%",
  6279. "height": "90%",
  6280. "overflow": 'hidden'
  6281. },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, {
  6286. "style": {
  6287. "height": "36px"
  6288. }
  6289. }).form; //创建窗体
  6290. _taskbar = {
  6291. "id": str + _formdiv.id,
  6292. "style": {
  6293. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6294. },
  6295. "name": "项目设计",
  6296. "forms": _formdiv,
  6297. "click": function () {
  6298. U.MD.D.I.openApplication(str, obj, info);
  6299. }
  6300. }
  6301. break;
  6302. }
  6303. const script1 = document.createElement("script");
  6304. script1.type = "text/javascript";
  6305. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6306. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6307. const script2 = document.createElement("script");
  6308. script2.type = "text/javascript";
  6309. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6310. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6311. const script3 = document.createElement("script");
  6312. script3.type = "text/javascript";
  6313. script3.charset = "UTF-8";
  6314. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6315. const script4 = document.createElement("script");
  6316. script4.type = "text/javascript";
  6317. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6318. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6319. if (_iframe) {
  6320. if (str == 'doc') {
  6321. _iframe = _formdiv.querySelector('iframe')
  6322. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6323. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6324. _iframe.contentWindow.document.body.appendChild(script1);
  6325. _iframe.contentWindow.document.body.appendChild(script2);
  6326. // _iframe.contentWindow.document.body.appendChild(script3);
  6327. _iframe.contentWindow.document.body.appendChild(script4);
  6328. })
  6329. if (onloadListener) {
  6330. _iframe.contentDocument.location.reload()
  6331. } else {
  6332. _iframe.contentDocument.location.reload()
  6333. }
  6334. } else if (str == 'courseDesign') {
  6335. U.UF.DL.iframeLoad(_iframe, function () {
  6336. // _iframe.contentWindow.U.MD.O.W.load();
  6337. // _iframe.contentWindow.document.body.appendChild(script1);
  6338. _iframe.contentWindow.document.body.appendChild(script2);
  6339. _iframe.contentWindow.document.body.appendChild(script4);
  6340. })
  6341. } else if (str == 'mind') {
  6342. _iframe = _formdiv.querySelector('iframe')
  6343. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6344. //
  6345. _iframe.contentWindow.document.body.appendChild(script1);
  6346. _iframe.contentWindow.document.body.appendChild(script2);
  6347. _iframe.contentWindow.document.body.appendChild(script4);
  6348. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6349. })
  6350. if (onloadListener) {
  6351. _iframe.contentDocument.location.reload()
  6352. } else {
  6353. _iframe.contentDocument.location.reload()
  6354. }
  6355. } else if (str == 'whiteboard') {
  6356. _iframe = _formdiv.querySelector('iframe')
  6357. let onloadListener = _iframe.onload = () => {
  6358. _iframe.contentWindow.document.body.appendChild(script1);
  6359. _iframe.contentWindow.document.body.appendChild(script2);
  6360. _iframe.contentWindow.document.body.appendChild(script4);
  6361. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6362. };
  6363. // if (onloadListener) {
  6364. // try {
  6365. // _iframe.src += "?cocorobo="+new Date().getTime()
  6366. // _iframe.contentWindow.document.location.reload()
  6367. // } catch (error) {
  6368. // }
  6369. // } else {
  6370. // _iframe.contentDocument.location.reload()
  6371. // }
  6372. } else {
  6373. _iframe.onload = () => {
  6374. _iframe.contentWindow.document.body.appendChild(script1);
  6375. _iframe.contentWindow.document.body.appendChild(script2);
  6376. // _iframe.contentWindow.document.body.appendChild(script3);
  6377. _iframe.contentWindow.document.body.appendChild(script4);
  6378. };
  6379. }
  6380. _jie.onclick = async () => {
  6381. let text = ''
  6382. if (aTool == 1) {
  6383. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6384. } else if (aTool == 6) {
  6385. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6386. } else if (aTool == 3) {
  6387. text = await U.MD.D.I.getEditorContent(_iframe);
  6388. }
  6389. _loading.style.display = 'flex'
  6390. console.log(_loading);
  6391. var _ajs = _iframe.contentWindow.document.createElement("script");
  6392. _ajs.type = "text/javascript";
  6393. _ajs.innerHTML =
  6394. // 'console.log(' + _loading + ');\n' +
  6395. 'var _js = document.createElement("script");\n' +
  6396. '_js.type="text/javascript";\n' +
  6397. '_js.charset="UTF-8";\n' +
  6398. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6399. "_js.onload = function(){\n" +
  6400. ' var a = document.getElementsByTagName("img")\n' +
  6401. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6402. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6403. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6404. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6405. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6406. "beforeUpload_shishi(file," +
  6407. "'" +
  6408. _userid +
  6409. "'" +
  6410. ", " +
  6411. "'" +
  6412. _cid +
  6413. "'" +
  6414. ", " +
  6415. "'" +
  6416. _stage +
  6417. "'" +
  6418. ", " +
  6419. "'" +
  6420. _task +
  6421. "'" +
  6422. ", " +
  6423. "'" +
  6424. _tool +
  6425. "'" +
  6426. ", " +
  6427. "'" +
  6428. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6429. "'" +
  6430. ", " +
  6431. "'" +
  6432. aTool +
  6433. "'" +
  6434. ", " +
  6435. "`" +
  6436. text +
  6437. "`" +
  6438. ")\n" +
  6439. " });\n" +
  6440. "}\n" +
  6441. "document.head.appendChild(_js);\n";
  6442. _iframe.contentWindow.document.head.appendChild(_ajs);
  6443. }
  6444. }
  6445. //U.MD.D.I.openClick(str);
  6446. //如果有任务栏信息
  6447. // if (_taskbar) {
  6448. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6449. // }
  6450. }
  6451. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6452. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6453. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6454. _userinfo = US.userInfo, //登录用户信息
  6455. _userid = US.userInfo.userid //登录用户id
  6456. let _iframe;
  6457. let _cid = cid,
  6458. _stage = stage,
  6459. _task = task,
  6460. _tool = tool;
  6461. var _jie = $$("div", {
  6462. "style": {
  6463. "position": "absolute",
  6464. "bottom": "50px",
  6465. "right": "50px",
  6466. "zIndex": "9999",
  6467. "backgroundColor": "#2268bc",
  6468. "color": "#fff",
  6469. "padding": "12px 20px",
  6470. "cursor": "pointer",
  6471. "borderRadius": "4px",
  6472. },
  6473. "innerHTML": "提交作业"
  6474. })
  6475. let aTool = ''
  6476. let _loading = document.createElement('div')
  6477. _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;"
  6478. // _loading.id = "";
  6479. let _lchild = document.createElement('div')
  6480. let _limg = document.createElement('img')
  6481. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6482. _limg.style = "width: 26px;margin-right: 10px;"
  6483. _lchild.appendChild(_limg)
  6484. let _lspan = document.createElement('span')
  6485. _lspan.innerHTML = "上传中..."
  6486. _lchild.appendChild(_lspan)
  6487. _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%);"
  6488. _loading.appendChild(_lchild)
  6489. let _box = $$('div', {
  6490. "style": {
  6491. "position": "relative",
  6492. "width": "100%",
  6493. "height": "100%",
  6494. },
  6495. })
  6496. _box.appendChild(_loading)
  6497. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6498. switch (str) {
  6499. case "whiteboard":
  6500. aTool = 1;
  6501. _iframe = $$("iframe", {
  6502. "frameborder": "no",
  6503. "border": "0",
  6504. "scrolling ": "no",
  6505. "style": {
  6506. "cssText": "border:0;width:100%;height:100%"
  6507. },
  6508. "src": "https://beta.iwb.cocorobo.cn/"
  6509. })
  6510. _box.appendChild(_iframe);
  6511. _box.appendChild(_jie);
  6512. _formdiv = new U.UF.UI.form(
  6513. "电子白板",
  6514. _box, {
  6515. "id": "whiteboard" + cid + stage + task + tool,
  6516. "style": {
  6517. "width": "90%",
  6518. "height": "90%",
  6519. "overflow": 'hidden'
  6520. },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, {
  6525. "style": {
  6526. "height": "36px"
  6527. }
  6528. }).form; //创建窗体
  6529. _taskbar = {
  6530. "id": str + _formdiv.id,
  6531. "style": {
  6532. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6533. },
  6534. "name": "电子白板",
  6535. "forms": _formdiv,
  6536. "click": function () {
  6537. U.MD.D.I.openApplication(str, obj, info);
  6538. }
  6539. }
  6540. break;
  6541. case "mind":
  6542. aTool = 3;
  6543. _iframe = $$("iframe", {
  6544. "frameborder": "no",
  6545. "border": "0",
  6546. "scrolling ": "no",
  6547. "style": {
  6548. "cssText": "border:0;width:100%;height:100%"
  6549. },
  6550. "src": "/kityminder-editor/dist/index.html"
  6551. })
  6552. _box.appendChild(_iframe);
  6553. _box.appendChild(_jie);
  6554. _formdiv = new U.UF.UI.form(
  6555. "思维导图",
  6556. _box, { //"/jsmind/example/demo.html"
  6557. "id": "mind" + cid + stage + task + tool,
  6558. "style": {
  6559. "width": "90%",
  6560. "height": "90%",
  6561. "overflow": 'hidden'
  6562. },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, {
  6567. "style": {
  6568. "height": "36px"
  6569. }
  6570. }).form; //创建窗体
  6571. _taskbar = {
  6572. "id": str + _formdiv.id,
  6573. "style": {
  6574. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6575. },
  6576. "name": "思维导图",
  6577. "forms": _formdiv,
  6578. "click": function () {
  6579. U.MD.D.I.openApplication(str, obj, info);
  6580. }
  6581. }
  6582. break;
  6583. case "MindMap":
  6584. aTool = 3;
  6585. _iframe = $$("iframe", {
  6586. "frameborder": "no",
  6587. "border": "0",
  6588. "scrolling ": "no",
  6589. "style": {
  6590. "cssText": "border:0;width:100%;height:100%"
  6591. },
  6592. "src": "//cloud.cocorobo.cn/mind/"
  6593. })
  6594. _box.appendChild(_iframe);
  6595. _box.appendChild(_jie);
  6596. _formdiv = new U.UF.UI.form(
  6597. "思维导图",
  6598. _box, { //"/jsmind/example/demo.html"
  6599. "id": "mind" + cid + stage + task + tool,
  6600. "style": {
  6601. "width": "90%",
  6602. "height": "90%",
  6603. "overflow": 'hidden'
  6604. },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, {
  6609. "style": {
  6610. "height": "36px"
  6611. }
  6612. }).form; //创建窗体
  6613. _taskbar = {
  6614. "id": str + _formdiv.id,
  6615. "style": {
  6616. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6617. },
  6618. "name": "思维导图",
  6619. "forms": _formdiv,
  6620. "click": function () {
  6621. U.MD.D.I.openApplication(str, obj, info);
  6622. }
  6623. }
  6624. break;
  6625. case "doc":
  6626. aTool = 6;
  6627. _iframe = $$("iframe", {
  6628. "frameborder": "no",
  6629. "border": "0",
  6630. "scrolling ": "no",
  6631. "style": {
  6632. "cssText": "border:0;width:100%;height:100%"
  6633. },
  6634. "src": "/Office/Word/WordEditArea.htm"
  6635. })
  6636. _box.appendChild(_iframe);
  6637. _box.appendChild(_jie);
  6638. _formdiv = new U.UF.UI.form(
  6639. "协同文档",
  6640. _box, {
  6641. "id": "doc" + cid + stage + task + tool,
  6642. "style": {
  6643. "width": "90%",
  6644. "height": "90%",
  6645. "overflow": 'hidden'
  6646. },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () { }
  6650. }, {
  6651. "style": {
  6652. "height": "36px"
  6653. }
  6654. }).form; //创建窗体
  6655. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6656. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6657. })
  6658. _taskbar = {
  6659. "id": str + _formdiv.id,
  6660. "style": {
  6661. "backgroundImage": "url(/img/icon/doc.png)"
  6662. },
  6663. "name": "协同文档",
  6664. "forms": _formdiv,
  6665. "click": function () {
  6666. U.MD.D.I.openApplication(str, obj, info);
  6667. }
  6668. }
  6669. break;
  6670. case "mindNetwork": //好友打开
  6671. aTool = 7;
  6672. _iframe = $$("iframe", {
  6673. "webkitallowfullscreen": "",
  6674. "mozallowfullscreen": "",
  6675. "allowfullscreen": "",
  6676. "frameborder": "no",
  6677. "border": "0",
  6678. "scrolling ": "no",
  6679. "style": {
  6680. "cssText": "border:0; width:100%; height:100%;"
  6681. },
  6682. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6683. })
  6684. _box.appendChild(_iframe);
  6685. _box.appendChild(_jie);
  6686. _formdiv = new U.UF.UI.form(
  6687. "思维网格",
  6688. _box, {
  6689. "id": "mindNetwork" + cid + stage + task + tool,
  6690. "style": {
  6691. "width": "90%",
  6692. "height": "90%",
  6693. "overflow": 'hidden'
  6694. },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, {
  6699. "style": {
  6700. "height": "36px"
  6701. }
  6702. }).form; //创建窗体
  6703. _taskbar = {
  6704. "id": str + _formdiv.id,
  6705. "style": {
  6706. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6707. },
  6708. "name": "思维网格",
  6709. "forms": _formdiv,
  6710. "click": function () {
  6711. U.MD.D.I.openApplication(str, obj, info);
  6712. }
  6713. }
  6714. break;
  6715. case "courseDesign":
  6716. _iframe = $$("iframe", {
  6717. "webkitallowfullscreen": "",
  6718. "mozallowfullscreen": "",
  6719. "allowfullscreen": "",
  6720. "frameborder": "no",
  6721. "border": "0",
  6722. "scrolling ": "no",
  6723. "style": {
  6724. "cssText": "border:0; width:100%; height:100%;"
  6725. },
  6726. "src": "/course-design-vue"
  6727. })
  6728. _box.appendChild(_iframe);
  6729. _box.appendChild(_jie);
  6730. _formdiv = new U.UF.UI.form(
  6731. "项目设计",
  6732. _box, {
  6733. "id": "courseDesign" + cid + stage + task + tool,
  6734. "style": {
  6735. "width": "90%",
  6736. "height": "90%",
  6737. "overflow": 'hidden'
  6738. },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, {
  6743. "style": {
  6744. "height": "36px"
  6745. }
  6746. }).form; //创建窗体
  6747. _taskbar = {
  6748. "id": str + _formdiv.id,
  6749. "style": {
  6750. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6751. },
  6752. "name": "项目设计",
  6753. "forms": _formdiv,
  6754. "click": function () {
  6755. U.MD.D.I.openApplication(str, obj, info);
  6756. }
  6757. }
  6758. break;
  6759. }
  6760. const script1 = document.createElement("script");
  6761. script1.type = "text/javascript";
  6762. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6763. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6764. const script2 = document.createElement("script");
  6765. script2.type = "text/javascript";
  6766. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6767. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6768. const script3 = document.createElement("script");
  6769. script3.type = "text/javascript";
  6770. script3.charset = "UTF-8";
  6771. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6772. const script4 = document.createElement("script");
  6773. script4.type = "text/javascript";
  6774. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6775. script4.src = window.origin + "/js/Common/jietu2E.js";
  6776. if (_iframe) {
  6777. if (str == 'doc') {
  6778. _iframe = _formdiv.querySelector('iframe')
  6779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6780. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6781. _iframe.contentWindow.document.body.appendChild(script1);
  6782. _iframe.contentWindow.document.body.appendChild(script2);
  6783. // _iframe.contentWindow.document.body.appendChild(script3);
  6784. _iframe.contentWindow.document.body.appendChild(script4);
  6785. })
  6786. if (onloadListener) {
  6787. _iframe.contentDocument.location.reload()
  6788. } else {
  6789. _iframe.contentDocument.location.reload()
  6790. }
  6791. } else if (str == 'courseDesign') {
  6792. U.UF.DL.iframeLoad(_iframe, function () {
  6793. // _iframe.contentWindow.U.MD.O.W.load();
  6794. // _iframe.contentWindow.document.body.appendChild(script1);
  6795. _iframe.contentWindow.document.body.appendChild(script2);
  6796. _iframe.contentWindow.document.body.appendChild(script4);
  6797. })
  6798. } else if (str == 'mind') {
  6799. _iframe = _formdiv.querySelector('iframe')
  6800. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6801. //
  6802. _iframe.contentWindow.document.body.appendChild(script1);
  6803. _iframe.contentWindow.document.body.appendChild(script2);
  6804. _iframe.contentWindow.document.body.appendChild(script4);
  6805. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6806. })
  6807. if (onloadListener) {
  6808. _iframe.contentDocument.location.reload()
  6809. } else {
  6810. _iframe.contentDocument.location.reload()
  6811. }
  6812. } else if (str == 'whiteboard') {
  6813. _iframe = _formdiv.querySelector('iframe')
  6814. let onloadListener = _iframe.onload = () => {
  6815. _iframe.contentWindow.document.body.appendChild(script1);
  6816. _iframe.contentWindow.document.body.appendChild(script2);
  6817. _iframe.contentWindow.document.body.appendChild(script4);
  6818. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6819. };
  6820. // if (onloadListener) {
  6821. // try {
  6822. // _iframe.src += "?cocorobo="+new Date().getTime()
  6823. // _iframe.contentWindow.document.location.reload()
  6824. // } catch (error) {
  6825. // }
  6826. // } else {
  6827. // _iframe.contentDocument.location.reload()
  6828. // }
  6829. } else {
  6830. _iframe.onload = () => {
  6831. _iframe.contentWindow.document.body.appendChild(script1);
  6832. _iframe.contentWindow.document.body.appendChild(script2);
  6833. // _iframe.contentWindow.document.body.appendChild(script3);
  6834. _iframe.contentWindow.document.body.appendChild(script4);
  6835. };
  6836. }
  6837. _jie.onclick = async () => {
  6838. let text = ''
  6839. if (aTool == 1) {
  6840. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6841. } else if (aTool == 6) {
  6842. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6843. } else if (aTool == 3) {
  6844. text = await U.MD.D.I.getEditorContent(_iframe);
  6845. }
  6846. _loading.style.display = 'flex'
  6847. console.log(_loading);
  6848. var _ajs = _iframe.contentWindow.document.createElement("script");
  6849. _ajs.type = "text/javascript";
  6850. _ajs.innerHTML =
  6851. // 'console.log(' + _loading + ');\n' +
  6852. 'var _js = document.createElement("script");\n' +
  6853. '_js.type="text/javascript";\n' +
  6854. '_js.charset="UTF-8";\n' +
  6855. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6856. "_js.onload = function(){\n" +
  6857. ' var a = document.getElementsByTagName("img")\n' +
  6858. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6859. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6860. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6861. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6862. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6863. "beforeUpload_shishi(file," +
  6864. "'" +
  6865. _userid +
  6866. "'" +
  6867. ", " +
  6868. "'" +
  6869. _cid +
  6870. "'" +
  6871. ", " +
  6872. "'" +
  6873. _stage +
  6874. "'" +
  6875. ", " +
  6876. "'" +
  6877. _task +
  6878. "'" +
  6879. ", " +
  6880. "'" +
  6881. _tool +
  6882. "'" +
  6883. ", " +
  6884. "'" +
  6885. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6886. "'" +
  6887. ", " +
  6888. "'" +
  6889. aTool +
  6890. "'" +
  6891. ", " +
  6892. "`" +
  6893. text +
  6894. "`" +
  6895. ")\n" +
  6896. " });\n" +
  6897. "}\n" +
  6898. "document.head.appendChild(_js);\n";
  6899. _iframe.contentWindow.document.head.appendChild(_ajs);
  6900. }
  6901. }
  6902. //U.MD.D.I.openClick(str);
  6903. //如果有任务栏信息
  6904. // if (_taskbar) {
  6905. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6906. // }
  6907. }
  6908. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6909. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6910. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6911. _userid = student.userid, //登录用户id
  6912. _username = student.student //用户名字
  6913. let _iframe;
  6914. let _cid = cid,
  6915. _stage = stage,
  6916. _task = task,
  6917. _tool = tool;
  6918. var _jie = $$("div", {
  6919. "style": {
  6920. "position": "absolute",
  6921. "bottom": "50px",
  6922. "right": "50px",
  6923. "zIndex": "9999",
  6924. "backgroundColor": "#2268bc",
  6925. "color": "#fff",
  6926. "padding": "12px 20px",
  6927. "cursor": "pointer",
  6928. "borderRadius": "4px",
  6929. },
  6930. "innerHTML": "提交作业"
  6931. })
  6932. let aTool = ''
  6933. let _loading = document.createElement('div')
  6934. _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;"
  6935. // _loading.id = "";
  6936. let _lchild = document.createElement('div')
  6937. let _limg = document.createElement('img')
  6938. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6939. _limg.style = "width: 26px;margin-right: 10px;"
  6940. _lchild.appendChild(_limg)
  6941. let _lspan = document.createElement('span')
  6942. _lspan.innerHTML = "上传中..."
  6943. _lchild.appendChild(_lspan)
  6944. _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%);"
  6945. _loading.appendChild(_lchild)
  6946. var _box = $$('div', {
  6947. "style": {
  6948. "position": "relative",
  6949. "width": "100%",
  6950. "height": "100%",
  6951. },
  6952. })
  6953. _box.appendChild(_loading)
  6954. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6955. switch (str) {
  6956. case "whiteboard":
  6957. aTool = 1;
  6958. _iframe = $$("iframe", {
  6959. "frameborder": "no",
  6960. "border": "0",
  6961. "scrolling ": "no",
  6962. "style": {
  6963. "cssText": "border:0;width:100%;height:100%"
  6964. },
  6965. "src": "https://beta.iwb.cocorobo.cn/"
  6966. })
  6967. _box.appendChild(_iframe);
  6968. _box.appendChild(_jie);
  6969. _formdiv = new U.UF.UI.form(
  6970. "电子白板-" + _username,
  6971. _box, {
  6972. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6973. "style": {
  6974. "width": "90%",
  6975. "height": "90%",
  6976. "overflow": 'hidden'
  6977. },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, {
  6982. "style": {
  6983. "height": "36px"
  6984. }
  6985. }).form; //创建窗体
  6986. _taskbar = {
  6987. "id": str + _formdiv.id,
  6988. "style": {
  6989. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6990. },
  6991. "name": "电子白板",
  6992. "forms": _formdiv,
  6993. "click": function () {
  6994. U.MD.D.I.openApplication(str, obj, info);
  6995. }
  6996. }
  6997. break;
  6998. case "mind":
  6999. aTool = 3;
  7000. _iframe = $$("iframe", {
  7001. "frameborder": "no",
  7002. "border": "0",
  7003. "scrolling ": "no",
  7004. "style": {
  7005. "cssText": "border:0;width:100%;height:100%"
  7006. },
  7007. "src": "/kityminder-editor/dist/index.html"
  7008. })
  7009. _box.appendChild(_iframe);
  7010. _box.appendChild(_jie);
  7011. _formdiv = new U.UF.UI.form(
  7012. "思维导图-" + _username,
  7013. _box, { //"/jsmind/example/demo.html"
  7014. "id": "mind" + cid + stage + task + tool + _userid,
  7015. "style": {
  7016. "width": "90%",
  7017. "height": "90%",
  7018. "overflow": 'hidden'
  7019. },
  7020. "onresize": function () { }
  7021. }, {
  7022. closecallback: function () { }
  7023. }, {
  7024. "style": {
  7025. "height": "36px"
  7026. }
  7027. }).form; //创建窗体
  7028. _taskbar = {
  7029. "id": str + _formdiv.id,
  7030. "style": {
  7031. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7032. },
  7033. "name": "思维导图",
  7034. "forms": _formdiv,
  7035. "click": function () {
  7036. U.MD.D.I.openApplication(str, obj, info);
  7037. }
  7038. }
  7039. break;
  7040. case "MindMap":
  7041. aTool = 3;
  7042. _iframe = $$("iframe", {
  7043. "frameborder": "no",
  7044. "border": "0",
  7045. "scrolling ": "no",
  7046. "style": {
  7047. "cssText": "border:0;width:100%;height:100%"
  7048. },
  7049. "src": "//cloud.cocorobo.cn/mind/"
  7050. })
  7051. _box.appendChild(_iframe);
  7052. _box.appendChild(_jie);
  7053. _formdiv = new U.UF.UI.form(
  7054. "思维导图-" + _username,
  7055. _box, { //"/jsmind/example/demo.html"
  7056. "id": "mind" + cid + stage + task + tool + _userid,
  7057. "style": {
  7058. "width": "90%",
  7059. "height": "90%",
  7060. "overflow": 'hidden'
  7061. },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, {
  7066. "style": {
  7067. "height": "36px"
  7068. }
  7069. }).form; //创建窗体
  7070. _taskbar = {
  7071. "id": str + _formdiv.id,
  7072. "style": {
  7073. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7074. },
  7075. "name": "思维导图",
  7076. "forms": _formdiv,
  7077. "click": function () {
  7078. U.MD.D.I.openApplication(str, obj, info);
  7079. }
  7080. }
  7081. break;
  7082. case "doc":
  7083. aTool = 6;
  7084. _iframe = $$("iframe", {
  7085. "frameborder": "no",
  7086. "border": "0",
  7087. "scrolling ": "no",
  7088. "style": {
  7089. "cssText": "border:0;width:100%;height:100%"
  7090. },
  7091. "src": "/Office/Word/WordEditArea.htm"
  7092. })
  7093. _box.appendChild(_iframe);
  7094. _box.appendChild(_jie);
  7095. _formdiv = new U.UF.UI.form(
  7096. "协同文档-" + _username,
  7097. _box, {
  7098. "id": "doc" + cid + stage + task + tool + _userid,
  7099. "style": {
  7100. "width": "90%",
  7101. "height": "90%",
  7102. "overflow": 'hidden'
  7103. },
  7104. "onresize": function () { }
  7105. }, {
  7106. closecallback: function () { }
  7107. }, {
  7108. "style": {
  7109. "height": "36px"
  7110. }
  7111. }).form; //创建窗体
  7112. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7113. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7114. })
  7115. _taskbar = {
  7116. "id": str + _formdiv.id,
  7117. "style": {
  7118. "backgroundImage": "url(/img/icon/doc.png)"
  7119. },
  7120. "name": "协同文档",
  7121. "forms": _formdiv,
  7122. "click": function () {
  7123. U.MD.D.I.openApplication(str, obj, info);
  7124. }
  7125. }
  7126. break;
  7127. case "mindNetwork": //好友打开
  7128. aTool = 7;
  7129. _iframe = $$("iframe", {
  7130. "webkitallowfullscreen": "",
  7131. "mozallowfullscreen": "",
  7132. "allowfullscreen": "",
  7133. "frameborder": "no",
  7134. "border": "0",
  7135. "scrolling ": "no",
  7136. "style": {
  7137. "cssText": "border:0; width:100%; height:100%;"
  7138. },
  7139. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7140. })
  7141. _box.appendChild(_iframe);
  7142. _box.appendChild(_jie);
  7143. _formdiv = new U.UF.UI.form(
  7144. "思维网格-" + _username,
  7145. _box, {
  7146. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7147. "style": {
  7148. "width": "90%",
  7149. "height": "90%",
  7150. "overflow": 'hidden'
  7151. },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, {
  7156. "style": {
  7157. "height": "36px"
  7158. }
  7159. }).form; //创建窗体
  7160. _taskbar = {
  7161. "id": str + _formdiv.id,
  7162. "style": {
  7163. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7164. },
  7165. "name": "思维网格",
  7166. "forms": _formdiv,
  7167. "click": function () {
  7168. U.MD.D.I.openApplication(str, obj, info);
  7169. }
  7170. }
  7171. break;
  7172. case "courseDesign":
  7173. _iframe = $$("iframe", {
  7174. "webkitallowfullscreen": "",
  7175. "mozallowfullscreen": "",
  7176. "allowfullscreen": "",
  7177. "frameborder": "no",
  7178. "border": "0",
  7179. "scrolling ": "no",
  7180. "style": {
  7181. "cssText": "border:0; width:100%; height:100%;"
  7182. },
  7183. "src": "/course-design-vue"
  7184. })
  7185. _box.appendChild(_iframe);
  7186. _box.appendChild(_jie);
  7187. _formdiv = new U.UF.UI.form(
  7188. "项目设计-" + _username,
  7189. _box, {
  7190. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7191. "style": {
  7192. "width": "90%",
  7193. "height": "90%",
  7194. "overflow": 'hidden'
  7195. },
  7196. "onresize": function () { }
  7197. }, {
  7198. closecallback: function () { }
  7199. }, {
  7200. "style": {
  7201. "height": "36px"
  7202. }
  7203. }).form; //创建窗体
  7204. _taskbar = {
  7205. "id": str + _formdiv.id,
  7206. "style": {
  7207. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7208. },
  7209. "name": "项目设计",
  7210. "forms": _formdiv,
  7211. "click": function () {
  7212. U.MD.D.I.openApplication(str, obj, info);
  7213. }
  7214. }
  7215. break;
  7216. }
  7217. const script1 = document.createElement("script");
  7218. script1.type = "text/javascript";
  7219. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7220. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7221. const script2 = document.createElement("script");
  7222. script2.type = "text/javascript";
  7223. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7224. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7225. const script3 = document.createElement("script");
  7226. script3.type = "text/javascript";
  7227. script3.charset = "UTF-8";
  7228. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7229. const script4 = document.createElement("script");
  7230. script4.type = "text/javascript";
  7231. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7232. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7233. if (_iframe) {
  7234. if (str == 'doc') {
  7235. _iframe = _formdiv.querySelector('iframe')
  7236. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7237. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7238. _iframe.contentWindow.document.body.appendChild(script1);
  7239. _iframe.contentWindow.document.body.appendChild(script2);
  7240. // _iframe.contentWindow.document.body.appendChild(script3);
  7241. _iframe.contentWindow.document.body.appendChild(script4);
  7242. })
  7243. if (onloadListener) {
  7244. _iframe.contentDocument.location.reload()
  7245. } else {
  7246. _iframe.contentDocument.location.reload()
  7247. }
  7248. } else if (str == 'courseDesign') {
  7249. U.UF.DL.iframeLoad(_iframe, function () {
  7250. // _iframe.contentWindow.U.MD.O.W.load();
  7251. // _iframe.contentWindow.document.body.appendChild(script1);
  7252. _iframe.contentWindow.document.body.appendChild(script2);
  7253. _iframe.contentWindow.document.body.appendChild(script4);
  7254. })
  7255. } else if (str == 'mind') {
  7256. _iframe = _formdiv.querySelector('iframe')
  7257. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7258. //
  7259. _iframe.contentWindow.document.body.appendChild(script1);
  7260. _iframe.contentWindow.document.body.appendChild(script2);
  7261. _iframe.contentWindow.document.body.appendChild(script4);
  7262. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7263. })
  7264. if (onloadListener) {
  7265. _iframe.contentDocument.location.reload()
  7266. } else {
  7267. _iframe.contentDocument.location.reload()
  7268. }
  7269. } else if (str == 'whiteboard') {
  7270. _iframe = _formdiv.querySelector('iframe')
  7271. let onloadListener = _iframe.onload = () => {
  7272. _iframe.contentWindow.document.body.appendChild(script1);
  7273. _iframe.contentWindow.document.body.appendChild(script2);
  7274. _iframe.contentWindow.document.body.appendChild(script4);
  7275. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7276. };
  7277. // if (onloadListener) {
  7278. // try {
  7279. // _iframe.src += "?cocorobo="+new Date().getTime()
  7280. // _iframe.contentWindow.document.location.reload()
  7281. // } catch (error) {
  7282. // }
  7283. // } else {
  7284. // _iframe.contentDocument.location.reload()
  7285. // }
  7286. } else {
  7287. _iframe.onload = () => {
  7288. _iframe.contentWindow.document.body.appendChild(script1);
  7289. _iframe.contentWindow.document.body.appendChild(script2);
  7290. // _iframe.contentWindow.document.body.appendChild(script3);
  7291. _iframe.contentWindow.document.body.appendChild(script4);
  7292. };
  7293. }
  7294. _jie.onclick = async () => {
  7295. let text = ''
  7296. if (aTool == 1) {
  7297. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7298. } else if (aTool == 6) {
  7299. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7300. } else if (aTool == 3) {
  7301. text = await U.MD.D.I.getEditorContent(_iframe);
  7302. }
  7303. _loading.style.display = 'flex'
  7304. console.log(_loading);
  7305. var _ajs = _iframe.contentWindow.document.createElement("script");
  7306. _ajs.type = "text/javascript";
  7307. _ajs.innerHTML =
  7308. // 'console.log(' + _loading + ');\n' +
  7309. 'var _js = document.createElement("script");\n' +
  7310. '_js.type="text/javascript";\n' +
  7311. '_js.charset="UTF-8";\n' +
  7312. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7313. "_js.onload = function(){\n" +
  7314. ' var a = document.getElementsByTagName("img")\n' +
  7315. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7316. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7317. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7318. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7319. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7320. "beforeUpload_shishi(file," +
  7321. "'" +
  7322. _userid +
  7323. "'" +
  7324. ", " +
  7325. "'" +
  7326. _cid +
  7327. "'" +
  7328. ", " +
  7329. "'" +
  7330. _stage +
  7331. "'" +
  7332. ", " +
  7333. "'" +
  7334. _task +
  7335. "'" +
  7336. ", " +
  7337. "'" +
  7338. _tool +
  7339. "'" +
  7340. ", " +
  7341. "'" +
  7342. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7343. "'" +
  7344. ", " +
  7345. "'" +
  7346. aTool +
  7347. "'" +
  7348. ", " +
  7349. "`" +
  7350. text +
  7351. "`" +
  7352. ")\n" +
  7353. " });\n" +
  7354. "}\n" +
  7355. "document.head.appendChild(_js);\n";
  7356. _iframe.contentWindow.document.head.appendChild(_ajs);
  7357. }
  7358. }
  7359. }
  7360. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7361. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7362. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7363. _userid = student.userid, //登录用户id
  7364. _username = student.student //用户名字
  7365. let _iframe;
  7366. let _cid = cid,
  7367. _stage = stage,
  7368. _task = task,
  7369. _tool = tool;
  7370. var _jie = $$("div", {
  7371. "style": {
  7372. "position": "absolute",
  7373. "bottom": "50px",
  7374. "right": "50px",
  7375. "zIndex": "9999",
  7376. "backgroundColor": "#2268bc",
  7377. "color": "#fff",
  7378. "padding": "12px 20px",
  7379. "cursor": "pointer",
  7380. "borderRadius": "4px",
  7381. },
  7382. "innerHTML": "提交作业"
  7383. })
  7384. let aTool = ''
  7385. let _loading = document.createElement('div')
  7386. _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;"
  7387. // _loading.id = "";
  7388. let _lchild = document.createElement('div')
  7389. let _limg = document.createElement('img')
  7390. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7391. _limg.style = "width: 26px;margin-right: 10px;"
  7392. _lchild.appendChild(_limg)
  7393. let _lspan = document.createElement('span')
  7394. _lspan.innerHTML = "上传中..."
  7395. _lchild.appendChild(_lspan)
  7396. _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%);"
  7397. _loading.appendChild(_lchild)
  7398. var _box = $$('div', {
  7399. "style": {
  7400. "position": "relative",
  7401. "width": "100%",
  7402. "height": "100%",
  7403. },
  7404. })
  7405. _box.appendChild(_loading)
  7406. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7407. switch (str) {
  7408. case "whiteboard":
  7409. aTool = 1;
  7410. _iframe = $$("iframe", {
  7411. "frameborder": "no",
  7412. "border": "0",
  7413. "scrolling ": "no",
  7414. "style": {
  7415. "cssText": "border:0;width:100%;height:100%"
  7416. },
  7417. "src": "https://beta.iwb.cocorobo.cn/"
  7418. })
  7419. _box.appendChild(_iframe);
  7420. _box.appendChild(_jie);
  7421. _formdiv = new U.UF.UI.form(
  7422. "电子白板-" + _username,
  7423. _box, {
  7424. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7425. "style": {
  7426. "width": "90%",
  7427. "height": "90%",
  7428. "overflow": 'hidden'
  7429. },
  7430. "onresize": function () { }
  7431. }, {
  7432. closecallback: function () { }
  7433. }, {
  7434. "style": {
  7435. "height": "36px"
  7436. }
  7437. }).form; //创建窗体
  7438. _taskbar = {
  7439. "id": str + _formdiv.id,
  7440. "style": {
  7441. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7442. },
  7443. "name": "电子白板",
  7444. "forms": _formdiv,
  7445. "click": function () {
  7446. U.MD.D.I.openApplication(str, obj, info);
  7447. }
  7448. }
  7449. break;
  7450. case "mind":
  7451. aTool = 3;
  7452. _iframe = $$("iframe", {
  7453. "frameborder": "no",
  7454. "border": "0",
  7455. "scrolling ": "no",
  7456. "style": {
  7457. "cssText": "border:0;width:100%;height:100%"
  7458. },
  7459. "src": "/kityminder-editor/dist/index.html"
  7460. })
  7461. _box.appendChild(_iframe);
  7462. _box.appendChild(_jie);
  7463. _formdiv = new U.UF.UI.form(
  7464. "思维导图-" + _username,
  7465. _box, { //"/jsmind/example/demo.html"
  7466. "id": "mind" + cid + stage + task + tool + _userid,
  7467. "style": {
  7468. "width": "90%",
  7469. "height": "90%",
  7470. "overflow": 'hidden'
  7471. },
  7472. "onresize": function () { }
  7473. }, {
  7474. closecallback: function () { }
  7475. }, {
  7476. "style": {
  7477. "height": "36px"
  7478. }
  7479. }).form; //创建窗体
  7480. _taskbar = {
  7481. "id": str + _formdiv.id,
  7482. "style": {
  7483. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7484. },
  7485. "name": "思维导图",
  7486. "forms": _formdiv,
  7487. "click": function () {
  7488. U.MD.D.I.openApplication(str, obj, info);
  7489. }
  7490. }
  7491. break;
  7492. case "MindMap":
  7493. aTool = 3;
  7494. _iframe = $$("iframe", {
  7495. "frameborder": "no",
  7496. "border": "0",
  7497. "scrolling ": "no",
  7498. "style": {
  7499. "cssText": "border:0;width:100%;height:100%"
  7500. },
  7501. "src": "//cloud.cocorobo.cn/mind/"
  7502. })
  7503. _box.appendChild(_iframe);
  7504. _box.appendChild(_jie);
  7505. _formdiv = new U.UF.UI.form(
  7506. "思维导图-" + _username,
  7507. _box, { //"/jsmind/example/demo.html"
  7508. "id": "mind" + cid + stage + task + tool + _userid,
  7509. "style": {
  7510. "width": "90%",
  7511. "height": "90%",
  7512. "overflow": 'hidden'
  7513. },
  7514. "onresize": function () { }
  7515. }, {
  7516. closecallback: function () { }
  7517. }, {
  7518. "style": {
  7519. "height": "36px"
  7520. }
  7521. }).form; //创建窗体
  7522. _taskbar = {
  7523. "id": str + _formdiv.id,
  7524. "style": {
  7525. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7526. },
  7527. "name": "思维导图",
  7528. "forms": _formdiv,
  7529. "click": function () {
  7530. U.MD.D.I.openApplication(str, obj, info);
  7531. }
  7532. }
  7533. break;
  7534. case "doc":
  7535. aTool = 6;
  7536. _iframe = $$("iframe", {
  7537. "frameborder": "no",
  7538. "border": "0",
  7539. "scrolling ": "no",
  7540. "style": {
  7541. "cssText": "border:0;width:100%;height:100%"
  7542. },
  7543. "src": "/Office/Word/WordEditArea.htm"
  7544. })
  7545. _box.appendChild(_iframe);
  7546. _box.appendChild(_jie);
  7547. _formdiv = new U.UF.UI.form(
  7548. "协同文档-" + _username,
  7549. _box, {
  7550. "id": "doc" + cid + stage + task + tool + _userid,
  7551. "style": {
  7552. "width": "90%",
  7553. "height": "90%",
  7554. "overflow": 'hidden'
  7555. },
  7556. "onresize": function () { }
  7557. }, {
  7558. closecallback: function () { }
  7559. }, {
  7560. "style": {
  7561. "height": "36px"
  7562. }
  7563. }).form; //创建窗体
  7564. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7565. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7566. })
  7567. _taskbar = {
  7568. "id": str + _formdiv.id,
  7569. "style": {
  7570. "backgroundImage": "url(/img/icon/doc.png)"
  7571. },
  7572. "name": "协同文档",
  7573. "forms": _formdiv,
  7574. "click": function () {
  7575. U.MD.D.I.openApplication(str, obj, info);
  7576. }
  7577. }
  7578. break;
  7579. case "mindNetwork": //好友打开
  7580. aTool = 7;
  7581. _iframe = $$("iframe", {
  7582. "webkitallowfullscreen": "",
  7583. "mozallowfullscreen": "",
  7584. "allowfullscreen": "",
  7585. "frameborder": "no",
  7586. "border": "0",
  7587. "scrolling ": "no",
  7588. "style": {
  7589. "cssText": "border:0; width:100%; height:100%;"
  7590. },
  7591. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7592. })
  7593. _box.appendChild(_iframe);
  7594. _box.appendChild(_jie);
  7595. _formdiv = new U.UF.UI.form(
  7596. "思维网格-" + _username,
  7597. _box, {
  7598. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7599. "style": {
  7600. "width": "90%",
  7601. "height": "90%",
  7602. "overflow": 'hidden'
  7603. },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, {
  7608. "style": {
  7609. "height": "36px"
  7610. }
  7611. }).form; //创建窗体
  7612. _taskbar = {
  7613. "id": str + _formdiv.id,
  7614. "style": {
  7615. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7616. },
  7617. "name": "思维网格",
  7618. "forms": _formdiv,
  7619. "click": function () {
  7620. U.MD.D.I.openApplication(str, obj, info);
  7621. }
  7622. }
  7623. break;
  7624. case "courseDesign":
  7625. _iframe = $$("iframe", {
  7626. "webkitallowfullscreen": "",
  7627. "mozallowfullscreen": "",
  7628. "allowfullscreen": "",
  7629. "frameborder": "no",
  7630. "border": "0",
  7631. "scrolling ": "no",
  7632. "style": {
  7633. "cssText": "border:0; width:100%; height:100%;"
  7634. },
  7635. "src": "/course-design-vue"
  7636. })
  7637. _box.appendChild(_iframe);
  7638. _box.appendChild(_jie);
  7639. _formdiv = new U.UF.UI.form(
  7640. "项目设计-" + _username,
  7641. _box, {
  7642. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7643. "style": {
  7644. "width": "90%",
  7645. "height": "90%",
  7646. "overflow": 'hidden'
  7647. },
  7648. "onresize": function () { }
  7649. }, {
  7650. closecallback: function () { }
  7651. }, {
  7652. "style": {
  7653. "height": "36px"
  7654. }
  7655. }).form; //创建窗体
  7656. _taskbar = {
  7657. "id": str + _formdiv.id,
  7658. "style": {
  7659. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7660. },
  7661. "name": "项目设计",
  7662. "forms": _formdiv,
  7663. "click": function () {
  7664. U.MD.D.I.openApplication(str, obj, info);
  7665. }
  7666. }
  7667. break;
  7668. }
  7669. const script1 = document.createElement("script");
  7670. script1.type = "text/javascript";
  7671. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7672. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7673. const script2 = document.createElement("script");
  7674. script2.type = "text/javascript";
  7675. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7676. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7677. const script3 = document.createElement("script");
  7678. script3.type = "text/javascript";
  7679. script3.charset = "UTF-8";
  7680. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7681. const script4 = document.createElement("script");
  7682. script4.type = "text/javascript";
  7683. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7684. script4.src = window.origin + "/js/Common/jietu2E.js";
  7685. if (_iframe) {
  7686. if (str == 'doc') {
  7687. _iframe = _formdiv.querySelector('iframe')
  7688. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7689. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7690. _iframe.contentWindow.document.body.appendChild(script1);
  7691. _iframe.contentWindow.document.body.appendChild(script2);
  7692. // _iframe.contentWindow.document.body.appendChild(script3);
  7693. _iframe.contentWindow.document.body.appendChild(script4);
  7694. })
  7695. if (onloadListener) {
  7696. _iframe.contentDocument.location.reload()
  7697. } else {
  7698. _iframe.contentDocument.location.reload()
  7699. }
  7700. } else if (str == 'courseDesign') {
  7701. U.UF.DL.iframeLoad(_iframe, function () {
  7702. // _iframe.contentWindow.U.MD.O.W.load();
  7703. // _iframe.contentWindow.document.body.appendChild(script1);
  7704. _iframe.contentWindow.document.body.appendChild(script2);
  7705. _iframe.contentWindow.document.body.appendChild(script4);
  7706. })
  7707. } else if (str == 'mind') {
  7708. _iframe = _formdiv.querySelector('iframe')
  7709. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7710. //
  7711. _iframe.contentWindow.document.body.appendChild(script1);
  7712. _iframe.contentWindow.document.body.appendChild(script2);
  7713. _iframe.contentWindow.document.body.appendChild(script4);
  7714. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7715. })
  7716. if (onloadListener) {
  7717. _iframe.contentDocument.location.reload()
  7718. } else {
  7719. _iframe.contentDocument.location.reload()
  7720. }
  7721. } else if (str == 'whiteboard') {
  7722. _iframe = _formdiv.querySelector('iframe')
  7723. let onloadListener = _iframe.onload = () => {
  7724. _iframe.contentWindow.document.body.appendChild(script1);
  7725. _iframe.contentWindow.document.body.appendChild(script2);
  7726. _iframe.contentWindow.document.body.appendChild(script4);
  7727. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7728. };
  7729. // if (onloadListener) {
  7730. // try {
  7731. // _iframe.src += "?cocorobo="+new Date().getTime()
  7732. // _iframe.contentWindow.document.location.reload()
  7733. // } catch (error) {
  7734. // }
  7735. // } else {
  7736. // _iframe.contentDocument.location.reload()
  7737. // }
  7738. } else {
  7739. _iframe.onload = () => {
  7740. _iframe.contentWindow.document.body.appendChild(script1);
  7741. _iframe.contentWindow.document.body.appendChild(script2);
  7742. // _iframe.contentWindow.document.body.appendChild(script3);
  7743. _iframe.contentWindow.document.body.appendChild(script4);
  7744. };
  7745. }
  7746. _jie.onclick = async () => {
  7747. let text = ''
  7748. if (aTool == 1) {
  7749. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7750. } else if (aTool == 6) {
  7751. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7752. } else if (aTool == 3) {
  7753. text = await U.MD.D.I.getEditorContent(_iframe);
  7754. }
  7755. _loading.style.display = 'flex'
  7756. console.log(_loading);
  7757. var _ajs = _iframe.contentWindow.document.createElement("script");
  7758. _ajs.type = "text/javascript";
  7759. _ajs.innerHTML =
  7760. // 'console.log(' + _loading + ');\n' +
  7761. 'var _js = document.createElement("script");\n' +
  7762. '_js.type="text/javascript";\n' +
  7763. '_js.charset="UTF-8";\n' +
  7764. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7765. "_js.onload = function(){\n" +
  7766. ' var a = document.getElementsByTagName("img")\n' +
  7767. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7768. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7769. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7770. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7771. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7772. "beforeUpload_shishi(file," +
  7773. "'" +
  7774. _userid +
  7775. "'" +
  7776. ", " +
  7777. "'" +
  7778. _cid +
  7779. "'" +
  7780. ", " +
  7781. "'" +
  7782. _stage +
  7783. "'" +
  7784. ", " +
  7785. "'" +
  7786. _task +
  7787. "'" +
  7788. ", " +
  7789. "'" +
  7790. _tool +
  7791. "'" +
  7792. ", " +
  7793. "'" +
  7794. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7795. "'" +
  7796. ", " +
  7797. "'" +
  7798. aTool +
  7799. "'" +
  7800. ", " +
  7801. "`" +
  7802. text +
  7803. "`" +
  7804. ")\n" +
  7805. " });\n" +
  7806. "}\n" +
  7807. "document.head.appendChild(_js);\n";
  7808. _iframe.contentWindow.document.head.appendChild(_ajs);
  7809. }
  7810. }
  7811. }
  7812. U.MD.D.I.getEditorContent = function (iframe) {
  7813. return new Promise((resolve, reject) => {
  7814. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7815. console.log(content);
  7816. resolve(content)
  7817. });
  7818. });
  7819. }
  7820. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7821. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7822. // if (res.value[0].length > 0) {
  7823. // // resolve(res.value[0][0].text);
  7824. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7825. // $(fileInput).val('');
  7826. // });
  7827. // }
  7828. // }, [], { "type": "GET", "withCredentials": true });
  7829. var xmlhttp;
  7830. var Mac, Sn, DeviceId
  7831. if (window.XMLHttpRequest) {
  7832. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7833. xmlhttp = new XMLHttpRequest();
  7834. } else {
  7835. // IE6, IE5 浏览器执行代码
  7836. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7837. }
  7838. xmlhttp.onreadystatechange = function () {
  7839. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7840. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7841. // resolve(res.value[0][0].text);
  7842. if (type == '2') {
  7843. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7844. } else if (type == '3') {
  7845. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7846. }
  7847. } else {
  7848. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7849. }
  7850. }
  7851. }
  7852. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7853. xmlhttp.send();
  7854. }
  7855. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7856. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7857. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7858. _userinfo = US.userInfo, //登录用户信息
  7859. _userid = US.userInfo.userid //登录用户id
  7860. let _iframe;
  7861. let _cid = cid,
  7862. _stage = stage,
  7863. _task = task,
  7864. _tool = tool;
  7865. var _jie = $$("div", {
  7866. "style": {
  7867. "position": "absolute",
  7868. "bottom": "50px",
  7869. "right": "50px",
  7870. "zIndex": "9999",
  7871. "backgroundColor": "#2268bc",
  7872. "color": "#fff",
  7873. "padding": "12px 20px",
  7874. "cursor": "pointer",
  7875. "borderRadius": "4px",
  7876. },
  7877. "innerHTML": "确认并提交"
  7878. })
  7879. let aTool = ''
  7880. let _loading = document.createElement('div')
  7881. _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;"
  7882. // _loading.id = "";
  7883. let _lchild = document.createElement('div')
  7884. let _limg = document.createElement('img')
  7885. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7886. _limg.style = "width: 26px;margin-right: 10px;"
  7887. _lchild.appendChild(_limg)
  7888. let _lspan = document.createElement('span')
  7889. _lspan.innerHTML = "上传中..."
  7890. _lchild.appendChild(_lspan)
  7891. _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%);"
  7892. _loading.appendChild(_lchild)
  7893. var _box = $$('div', {
  7894. "style": {
  7895. "position": "relative",
  7896. "width": "100%",
  7897. "height": "100%",
  7898. },
  7899. })
  7900. _box.appendChild(_loading)
  7901. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7902. switch (str) {
  7903. case "whiteboard":
  7904. aTool = 1;
  7905. _iframe = $$("iframe", {
  7906. "frameborder": "no",
  7907. "border": "0",
  7908. "scrolling ": "no",
  7909. "style": {
  7910. "cssText": "border:0;width:100%;height:100%"
  7911. },
  7912. "src": "https://beta.iwb.cocorobo.cn/"
  7913. })
  7914. _box.appendChild(_iframe);
  7915. _box.appendChild(_jie);
  7916. _formdiv = new U.UF.UI.form(
  7917. "电子白板",
  7918. _box, {
  7919. "id": "whiteboards" + cid + stage + task + tool,
  7920. "style": {
  7921. "width": "90%",
  7922. "height": "90%",
  7923. "overflow": 'hidden'
  7924. },
  7925. "onresize": function () { }
  7926. }, {
  7927. closecallback: function () { }
  7928. }, {
  7929. "style": {
  7930. "height": "36px"
  7931. }
  7932. }).form; //创建窗体
  7933. _taskbar = {
  7934. "id": str + _formdiv.id,
  7935. "style": {
  7936. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7937. },
  7938. "name": "电子白板",
  7939. "forms": _formdiv,
  7940. "click": function () {
  7941. U.MD.D.I.openApplication(str, obj, info);
  7942. }
  7943. }
  7944. break;
  7945. case "mind":
  7946. aTool = 3;
  7947. _iframe = $$("iframe", {
  7948. "frameborder": "no",
  7949. "border": "0",
  7950. "scrolling ": "no",
  7951. "style": {
  7952. "cssText": "border:0;width:100%;height:100%"
  7953. },
  7954. "src": "/kityminder-editor/dist/index.html"
  7955. });
  7956. _box.appendChild(_iframe);
  7957. _box.appendChild(_jie);
  7958. _formdiv = new U.UF.UI.form(
  7959. "思维导图",
  7960. _box, { //"/jsmind/example/demo.html"
  7961. "id": "minds" + cid + stage + task + tool,
  7962. "style": {
  7963. "width": "90%",
  7964. "height": "90%",
  7965. "overflow": 'hidden'
  7966. },
  7967. "onresize": function () { }
  7968. }, {
  7969. closecallback: function () { }
  7970. }, {
  7971. "style": {
  7972. "height": "36px"
  7973. }
  7974. }).form; //创建窗体
  7975. _taskbar = {
  7976. "id": str + _formdiv.id,
  7977. "style": {
  7978. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7979. },
  7980. "name": "思维导图",
  7981. "forms": _formdiv,
  7982. "click": function () {
  7983. U.MD.D.I.openApplication(str, obj, info);
  7984. }
  7985. }
  7986. break;
  7987. case "doc":
  7988. aTool = 6;
  7989. _iframe = $$("iframe", {
  7990. "frameborder": "no",
  7991. "border": "0",
  7992. "scrolling ": "no",
  7993. "style": {
  7994. "cssText": "border:0;width:100%;height:100%"
  7995. },
  7996. "src": "/Office/Word/WordEditArea.htm"
  7997. })
  7998. _box.appendChild(_iframe);
  7999. _box.appendChild(_jie);
  8000. _formdiv = new U.UF.UI.form(
  8001. "协同文档",
  8002. _box, {
  8003. "id": "docs" + cid + stage + task + tool,
  8004. "style": {
  8005. "width": "90%",
  8006. "height": "90%",
  8007. "overflow": 'hidden'
  8008. },
  8009. "onresize": function () { }
  8010. }, {
  8011. closecallback: function () { }
  8012. }, {
  8013. "style": {
  8014. "height": "36px"
  8015. }
  8016. }).form; //创建窗体
  8017. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8018. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8019. })
  8020. _taskbar = {
  8021. "id": str + _formdiv.id,
  8022. "style": {
  8023. "backgroundImage": "url(/img/icon/doc.png)"
  8024. },
  8025. "name": "协同文档",
  8026. "forms": _formdiv,
  8027. "click": function () {
  8028. U.MD.D.I.openApplication(str, obj, info);
  8029. }
  8030. }
  8031. break;
  8032. }
  8033. const script1 = document.createElement("script");
  8034. script1.type = "text/javascript";
  8035. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8036. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8037. const script2 = document.createElement("script");
  8038. script2.type = "text/javascript";
  8039. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8040. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8041. const script3 = document.createElement("script");
  8042. script3.type = "text/javascript";
  8043. script3.charset = "UTF-8";
  8044. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8045. const script4 = document.createElement("script");
  8046. script4.type = "text/javascript";
  8047. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8048. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8049. if (_iframe) {
  8050. if (str == 'doc') {
  8051. _iframe = _formdiv.querySelector('iframe')
  8052. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8053. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8054. _iframe.contentWindow.document.body.appendChild(script1);
  8055. _iframe.contentWindow.document.body.appendChild(script2);
  8056. // _iframe.contentWindow.document.body.appendChild(script3);
  8057. _iframe.contentWindow.document.body.appendChild(script4);
  8058. })
  8059. if (onloadListener) {
  8060. _iframe.contentDocument.location.reload()
  8061. } else {
  8062. _iframe.contentDocument.location.reload()
  8063. }
  8064. } else if (str == 'mind') {
  8065. _iframe = _formdiv.querySelector('iframe')
  8066. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8067. _iframe.contentWindow.document.body.appendChild(script1);
  8068. _iframe.contentWindow.document.body.appendChild(script2);
  8069. _iframe.contentWindow.document.body.appendChild(script4);
  8070. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8071. })
  8072. if (onloadListener) {
  8073. _iframe.contentDocument.location.reload()
  8074. } else {
  8075. _iframe.contentDocument.location.reload()
  8076. }
  8077. } else {
  8078. _iframe.onload = () => {
  8079. _iframe.contentWindow.document.body.appendChild(script1);
  8080. _iframe.contentWindow.document.body.appendChild(script2);
  8081. // _iframe.contentWindow.document.body.appendChild(script3);
  8082. _iframe.contentWindow.document.body.appendChild(script4);
  8083. };
  8084. }
  8085. _jie.onclick = async () => {
  8086. let text = ''
  8087. if (aTool == 6) {
  8088. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8089. } else if (aTool == 3) {
  8090. text = await U.MD.D.I.getEditorContent(_iframe);
  8091. }
  8092. _loading.style.display = 'flex'
  8093. console.log(_loading);
  8094. var _ajs = _iframe.contentWindow.document.createElement("script");
  8095. _ajs.type = "text/javascript";
  8096. _ajs.innerHTML =
  8097. // 'console.log(' + _loading + ');\n' +
  8098. 'var _js = document.createElement("script");\n' +
  8099. '_js.type="text/javascript";\n' +
  8100. '_js.charset="UTF-8";\n' +
  8101. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8102. "_js.onload = function(){\n" +
  8103. ' var a = document.getElementsByTagName("img")\n' +
  8104. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8105. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8106. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8107. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8108. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8109. "beforeUpload_shishi(file," +
  8110. "'" +
  8111. _userid +
  8112. "'" +
  8113. ", " +
  8114. "'" +
  8115. _cid +
  8116. "'" +
  8117. ", " +
  8118. "'" +
  8119. _stage +
  8120. "'" +
  8121. ", " +
  8122. "'" +
  8123. _task +
  8124. "'" +
  8125. ", " +
  8126. "'" +
  8127. _tool +
  8128. "'" +
  8129. ", " +
  8130. "'" +
  8131. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8132. "'" +
  8133. ", " +
  8134. "'" +
  8135. aTool +
  8136. "'" +
  8137. ", " +
  8138. "`" +
  8139. text +
  8140. "`" +
  8141. ")\n" +
  8142. " });\n" +
  8143. "}\n" +
  8144. "document.head.appendChild(_js);\n";
  8145. _iframe.contentWindow.document.head.appendChild(_ajs);
  8146. }
  8147. }
  8148. //U.MD.D.I.openClick(str);
  8149. //如果有任务栏信息
  8150. // if (_taskbar) {
  8151. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8152. // }
  8153. }
  8154. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8155. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8156. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8157. _userinfo = US.userInfo, //登录用户信息
  8158. _userid = US.userInfo.userid //登录用户id
  8159. let _iframe;
  8160. let _cid = cid,
  8161. _stage = stage,
  8162. _task = task,
  8163. _tool = tool;
  8164. var _jie = $$("div", {
  8165. "style": {
  8166. "position": "absolute",
  8167. "bottom": "50px",
  8168. "right": "50px",
  8169. "zIndex": "9999",
  8170. "backgroundColor": "#2268bc",
  8171. "color": "#fff",
  8172. "padding": "12px 20px",
  8173. "cursor": "pointer",
  8174. "borderRadius": "4px",
  8175. },
  8176. "innerHTML": "确认并提交"
  8177. })
  8178. let aTool = ''
  8179. let _loading = document.createElement('div')
  8180. _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;"
  8181. // _loading.id = "";
  8182. let _lchild = document.createElement('div')
  8183. let _limg = document.createElement('img')
  8184. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8185. _limg.style = "width: 26px;margin-right: 10px;"
  8186. _lchild.appendChild(_limg)
  8187. let _lspan = document.createElement('span')
  8188. _lspan.innerHTML = "上传中..."
  8189. _lchild.appendChild(_lspan)
  8190. _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%);"
  8191. _loading.appendChild(_lchild)
  8192. var _box = $$('div', {
  8193. "style": {
  8194. "position": "relative",
  8195. "width": "100%",
  8196. "height": "100%",
  8197. },
  8198. })
  8199. _box.appendChild(_loading)
  8200. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8201. switch (str) {
  8202. case "whiteboard":
  8203. aTool = 1;
  8204. _iframe = $$("iframe", {
  8205. "frameborder": "no",
  8206. "border": "0",
  8207. "scrolling ": "no",
  8208. "style": {
  8209. "cssText": "border:0;width:100%;height:100%"
  8210. },
  8211. "src": "https://beta.iwb.cocorobo.cn/"
  8212. })
  8213. _box.appendChild(_iframe);
  8214. _box.appendChild(_jie);
  8215. _formdiv = new U.UF.UI.form(
  8216. "电子白板",
  8217. _box, {
  8218. "id": "whiteboards" + cid + stage + task + tool,
  8219. "style": {
  8220. "width": "90%",
  8221. "height": "90%",
  8222. "overflow": 'hidden'
  8223. },
  8224. "onresize": function () { }
  8225. }, {
  8226. closecallback: function () { }
  8227. }, {
  8228. "style": {
  8229. "height": "36px"
  8230. }
  8231. }).form; //创建窗体
  8232. _taskbar = {
  8233. "id": str + _formdiv.id,
  8234. "style": {
  8235. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8236. },
  8237. "name": "电子白板",
  8238. "forms": _formdiv,
  8239. "click": function () {
  8240. U.MD.D.I.openApplication(str, obj, info);
  8241. }
  8242. }
  8243. break;
  8244. case "mind":
  8245. aTool = 3;
  8246. _iframe = $$("iframe", {
  8247. "frameborder": "no",
  8248. "border": "0",
  8249. "scrolling ": "no",
  8250. "style": {
  8251. "cssText": "border:0;width:100%;height:100%"
  8252. },
  8253. "src": "/kityminder-editor/dist/index.html"
  8254. });
  8255. _box.appendChild(_iframe);
  8256. _box.appendChild(_jie);
  8257. _formdiv = new U.UF.UI.form(
  8258. "思维导图",
  8259. _box, { //"/jsmind/example/demo.html"
  8260. "id": "minds" + cid + stage + task + tool,
  8261. "style": {
  8262. "width": "90%",
  8263. "height": "90%",
  8264. "overflow": 'hidden'
  8265. },
  8266. "onresize": function () { }
  8267. }, {
  8268. closecallback: function () { }
  8269. }, {
  8270. "style": {
  8271. "height": "36px"
  8272. }
  8273. }).form; //创建窗体
  8274. _taskbar = {
  8275. "id": str + _formdiv.id,
  8276. "style": {
  8277. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8278. },
  8279. "name": "思维导图",
  8280. "forms": _formdiv,
  8281. "click": function () {
  8282. U.MD.D.I.openApplication(str, obj, info);
  8283. }
  8284. }
  8285. break;
  8286. case "doc":
  8287. aTool = 6;
  8288. _iframe = $$("iframe", {
  8289. "frameborder": "no",
  8290. "border": "0",
  8291. "scrolling ": "no",
  8292. "style": {
  8293. "cssText": "border:0;width:100%;height:100%"
  8294. },
  8295. "src": "/Office/Word/WordEditArea.htm"
  8296. })
  8297. _box.appendChild(_iframe);
  8298. _box.appendChild(_jie);
  8299. _formdiv = new U.UF.UI.form(
  8300. "协同文档",
  8301. _box, {
  8302. "id": "docs" + cid + stage + task + tool,
  8303. "style": {
  8304. "width": "90%",
  8305. "height": "90%",
  8306. "overflow": 'hidden'
  8307. },
  8308. "onresize": function () { }
  8309. }, {
  8310. closecallback: function () { }
  8311. }, {
  8312. "style": {
  8313. "height": "36px"
  8314. }
  8315. }).form; //创建窗体
  8316. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8317. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8318. })
  8319. _taskbar = {
  8320. "id": str + _formdiv.id,
  8321. "style": {
  8322. "backgroundImage": "url(/img/icon/doc.png)"
  8323. },
  8324. "name": "协同文档",
  8325. "forms": _formdiv,
  8326. "click": function () {
  8327. U.MD.D.I.openApplication(str, obj, info);
  8328. }
  8329. }
  8330. break;
  8331. }
  8332. const script1 = document.createElement("script");
  8333. script1.type = "text/javascript";
  8334. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8335. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8336. const script2 = document.createElement("script");
  8337. script2.type = "text/javascript";
  8338. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8339. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8340. const script3 = document.createElement("script");
  8341. script3.type = "text/javascript";
  8342. script3.charset = "UTF-8";
  8343. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8344. const script4 = document.createElement("script");
  8345. script4.type = "text/javascript";
  8346. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8347. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8348. if (_iframe) {
  8349. if (str == 'doc') {
  8350. _iframe = _formdiv.querySelector('iframe')
  8351. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8352. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8353. _iframe.contentWindow.document.body.appendChild(script1);
  8354. _iframe.contentWindow.document.body.appendChild(script2);
  8355. // _iframe.contentWindow.document.body.appendChild(script3);
  8356. _iframe.contentWindow.document.body.appendChild(script4);
  8357. })
  8358. if (onloadListener) {
  8359. _iframe.contentDocument.location.reload()
  8360. } else {
  8361. _iframe.contentDocument.location.reload()
  8362. }
  8363. } else if (str == 'mind') {
  8364. _iframe = _formdiv.querySelector('iframe')
  8365. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8366. _iframe.contentWindow.document.body.appendChild(script1);
  8367. _iframe.contentWindow.document.body.appendChild(script2);
  8368. _iframe.contentWindow.document.body.appendChild(script4);
  8369. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8370. })
  8371. if (onloadListener) {
  8372. _iframe.contentDocument.location.reload()
  8373. } else {
  8374. _iframe.contentDocument.location.reload()
  8375. }
  8376. } else {
  8377. _iframe.onload = () => {
  8378. _iframe.contentWindow.document.body.appendChild(script1);
  8379. _iframe.contentWindow.document.body.appendChild(script2);
  8380. // _iframe.contentWindow.document.body.appendChild(script3);
  8381. _iframe.contentWindow.document.body.appendChild(script4);
  8382. };
  8383. }
  8384. _jie.onclick = async () => {
  8385. let text = ''
  8386. if (aTool == 6) {
  8387. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8388. } else if (aTool == 3) {
  8389. text = await U.MD.D.I.getEditorContent(_iframe);
  8390. }
  8391. _loading.style.display = 'flex'
  8392. console.log(_loading);
  8393. var _ajs = _iframe.contentWindow.document.createElement("script");
  8394. _ajs.type = "text/javascript";
  8395. _ajs.innerHTML =
  8396. // 'console.log(' + _loading + ');\n' +
  8397. 'var _js = document.createElement("script");\n' +
  8398. '_js.type="text/javascript";\n' +
  8399. '_js.charset="UTF-8";\n' +
  8400. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8401. "_js.onload = function(){\n" +
  8402. ' var a = document.getElementsByTagName("img")\n' +
  8403. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8404. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8405. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8406. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8407. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8408. "beforeUpload_shishi(file," +
  8409. "'" +
  8410. _userid +
  8411. "'" +
  8412. ", " +
  8413. "'" +
  8414. _cid +
  8415. "'" +
  8416. ", " +
  8417. "'" +
  8418. _stage +
  8419. "'" +
  8420. ", " +
  8421. "'" +
  8422. _task +
  8423. "'" +
  8424. ", " +
  8425. "'" +
  8426. _tool +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. aTool +
  8435. "'" +
  8436. ", " +
  8437. "`" +
  8438. text +
  8439. "`" +
  8440. ")\n" +
  8441. " });\n" +
  8442. "}\n" +
  8443. "document.head.appendChild(_js);\n";
  8444. _iframe.contentWindow.document.head.appendChild(_ajs);
  8445. }
  8446. }
  8447. //U.MD.D.I.openClick(str);
  8448. //如果有任务栏信息
  8449. // if (_taskbar) {
  8450. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8451. // }
  8452. }
  8453. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8454. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8455. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8456. _userinfo = US.userInfo, //登录用户信息
  8457. _userid = US.userInfo.userid //登录用户id
  8458. let _iframe;
  8459. let _cid = cid,
  8460. _stage = stage,
  8461. _task = task,
  8462. _tool = tool;
  8463. var _jie = $$("div", {
  8464. "style": {
  8465. "position": "absolute",
  8466. "bottom": "50px",
  8467. "right": "50px",
  8468. "zIndex": "9999",
  8469. "backgroundColor": "#2268bc",
  8470. "color": "#fff",
  8471. "padding": "12px 20px",
  8472. "cursor": "pointer",
  8473. "borderRadius": "4px",
  8474. },
  8475. "innerHTML": "上传模板"
  8476. })
  8477. let aTool = ''
  8478. let _loading = document.createElement('div')
  8479. _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;"
  8480. // _loading.id = "";
  8481. let _lchild = document.createElement('div')
  8482. let _limg = document.createElement('img')
  8483. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8484. _limg.style = "width: 26px;margin-right: 10px;"
  8485. _lchild.appendChild(_limg)
  8486. let _lspan = document.createElement('span')
  8487. _lspan.innerHTML = "上传中..."
  8488. _lchild.appendChild(_lspan)
  8489. _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%);"
  8490. _loading.appendChild(_lchild)
  8491. var _box = $$('div', {
  8492. "style": {
  8493. "position": "relative",
  8494. "width": "100%",
  8495. "height": "100%",
  8496. },
  8497. })
  8498. _box.appendChild(_loading)
  8499. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8500. switch (str) {
  8501. case "whiteboard":
  8502. aTool = 1;
  8503. _iframe = $$("iframe", {
  8504. "frameborder": "no",
  8505. "border": "0",
  8506. "scrolling ": "no",
  8507. "style": {
  8508. "cssText": "border:0;width:100%;height:100%"
  8509. },
  8510. "src": "https://beta.iwb.cocorobo.cn/"
  8511. })
  8512. _box.appendChild(_iframe);
  8513. _box.appendChild(_jie);
  8514. _formdiv = new U.UF.UI.form(
  8515. "电子白板",
  8516. _box, {
  8517. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8518. "style": {
  8519. "width": "90%",
  8520. "height": "90%",
  8521. "overflow": 'hidden'
  8522. },
  8523. "onresize": function () { }
  8524. }, {
  8525. closecallback: function () { }
  8526. }, {
  8527. "style": {
  8528. "height": "36px"
  8529. }
  8530. }).form; //创建窗体
  8531. _taskbar = {
  8532. "id": str + _formdiv.id,
  8533. "style": {
  8534. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8535. },
  8536. "name": "电子白板",
  8537. "forms": _formdiv,
  8538. "click": function () {
  8539. U.MD.D.I.openApplication(str, obj, info);
  8540. }
  8541. }
  8542. break;
  8543. case "mind":
  8544. aTool = 3;
  8545. _iframe = $$("iframe", {
  8546. "frameborder": "no",
  8547. "border": "0",
  8548. "scrolling ": "no",
  8549. "style": {
  8550. "cssText": "border:0;width:100%;height:100%"
  8551. },
  8552. "src": "/kityminder-editor/dist/index.html"
  8553. });
  8554. _box.appendChild(_iframe);
  8555. _box.appendChild(_jie);
  8556. _formdiv = new U.UF.UI.form(
  8557. "思维导图",
  8558. _box, { //"/jsmind/example/demo.html"
  8559. "id": "minds_Yu" + cid + stage + task + tool,
  8560. "style": {
  8561. "width": "90%",
  8562. "height": "90%",
  8563. "overflow": 'hidden'
  8564. },
  8565. "onresize": function () { }
  8566. }, {
  8567. closecallback: function () { }
  8568. }, {
  8569. "style": {
  8570. "height": "36px"
  8571. }
  8572. }).form; //创建窗体
  8573. _taskbar = {
  8574. "id": str + _formdiv.id,
  8575. "style": {
  8576. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8577. },
  8578. "name": "思维导图",
  8579. "forms": _formdiv,
  8580. "click": function () {
  8581. U.MD.D.I.openApplication(str, obj, info);
  8582. }
  8583. }
  8584. break;
  8585. case "doc":
  8586. aTool = 6;
  8587. _iframe = $$("iframe", {
  8588. "frameborder": "no",
  8589. "border": "0",
  8590. "scrolling ": "no",
  8591. "style": {
  8592. "cssText": "border:0;width:100%;height:100%"
  8593. },
  8594. "src": "/Office/Word/WordEditArea.htm"
  8595. })
  8596. _box.appendChild(_iframe);
  8597. _box.appendChild(_jie);
  8598. _formdiv = new U.UF.UI.form(
  8599. "协同文档",
  8600. _box, {
  8601. "id": "docs_Yu" + cid + stage + task + tool,
  8602. "style": {
  8603. "width": "90%",
  8604. "height": "90%",
  8605. "overflow": 'hidden'
  8606. },
  8607. "onresize": function () { }
  8608. }, {
  8609. closecallback: function () { }
  8610. }, {
  8611. "style": {
  8612. "height": "36px"
  8613. }
  8614. }).form; //创建窗体
  8615. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8616. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8617. })
  8618. _taskbar = {
  8619. "id": str + _formdiv.id,
  8620. "style": {
  8621. "backgroundImage": "url(/img/icon/doc.png)"
  8622. },
  8623. "name": "协同文档",
  8624. "forms": _formdiv,
  8625. "click": function () {
  8626. U.MD.D.I.openApplication(str, obj, info);
  8627. }
  8628. }
  8629. break;
  8630. case "CocoPi":
  8631. aTool = 57;
  8632. _iframe = $$("iframe", {
  8633. "allowpaymentrequest": "allowpaymentrequest",
  8634. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8635. "webkitallowfullscreen": "",
  8636. "mozallowfullscreen": "",
  8637. "frameborder": "no",
  8638. "border": "0",
  8639. "scrolling ": "no",
  8640. "style": {
  8641. "cssText": "border:0;width:100%;height:100%"
  8642. },
  8643. "src": "https://pi.cocorobo.cn/"
  8644. })
  8645. _box.appendChild(_iframe);
  8646. _box.appendChild(_jie);
  8647. _formdiv = new U.UF.UI.form(
  8648. "CocoPi",
  8649. _box, {
  8650. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8651. "style": {
  8652. "width": "90%",
  8653. "height": "90%",
  8654. "overflow": 'hidden'
  8655. },
  8656. "onresize": function () { }
  8657. }, {
  8658. closecallback: function () { }
  8659. }, {
  8660. "style": {
  8661. "height": "36px"
  8662. }
  8663. }).form; //创建窗体
  8664. _taskbar = {
  8665. "id": str + _formdiv.id,
  8666. "style": {
  8667. "backgroundImage": "url(/img/icon/cocopi.png)"
  8668. },
  8669. "name": "CocoPi",
  8670. "forms": _formdiv,
  8671. "click": function () {
  8672. U.MD.D.I.openApplication(str, obj, info);
  8673. }
  8674. }
  8675. break;
  8676. }
  8677. if (_iframe) {
  8678. if (str == 'doc') {
  8679. _iframe = _formdiv.querySelector('iframe')
  8680. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8681. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8682. })
  8683. if (onloadListener) {
  8684. _iframe.contentDocument.location.reload()
  8685. } else {
  8686. _iframe.contentDocument.location.reload()
  8687. }
  8688. } else if (str == 'mind') {
  8689. _iframe = _formdiv.querySelector('iframe')
  8690. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8691. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8692. })
  8693. if (onloadListener) {
  8694. _iframe.contentDocument.location.reload()
  8695. } else {
  8696. _iframe.contentDocument.location.reload()
  8697. }
  8698. } else if (str == 'whiteboard') {
  8699. _iframe = _formdiv.querySelector('iframe')
  8700. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8701. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8702. })
  8703. // if (onloadListener) {
  8704. // try {
  8705. // _iframe.src += "?cocorobo="+new Date().getTime()
  8706. // _iframe.contentWindow.document.location.reload()
  8707. // } catch (error) {
  8708. // }
  8709. // } else {
  8710. // _iframe.contentDocument.location.reload()
  8711. // }
  8712. } else if (str == 'CocoPi') {
  8713. _iframe = _formdiv.querySelector('iframe')
  8714. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8715. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8716. })
  8717. if (onloadListener) {
  8718. _iframe.contentDocument.location.reload()
  8719. } else {
  8720. _iframe.contentDocument.location.reload()
  8721. }
  8722. } else {
  8723. _iframe.onload = () => { };
  8724. }
  8725. _jie.onclick = async () => {
  8726. let text = ''
  8727. let type = '2'
  8728. if (aTool == 1) {
  8729. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8730. type = '3'
  8731. } else if (aTool == 6) {
  8732. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8733. type = '1'
  8734. } else if (aTool == 3) {
  8735. text = await U.MD.D.I.getEditorContent(_iframe);
  8736. type = '2'
  8737. } else if (aTool == 57) {
  8738. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8739. type = '4'
  8740. }
  8741. _loading.style.display = 'flex'
  8742. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8743. }
  8744. }
  8745. //U.MD.D.I.openClick(str);
  8746. //如果有任务栏信息
  8747. // if (_taskbar) {
  8748. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8749. // }
  8750. }
  8751. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8752. var xmlhttp;
  8753. var Mac, Sn, DeviceId
  8754. if (window.XMLHttpRequest) {
  8755. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8756. xmlhttp = new XMLHttpRequest();
  8757. } else {
  8758. // IE6, IE5 浏览器执行代码
  8759. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8760. }
  8761. xmlhttp.onreadystatechange = function () {
  8762. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8763. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8764. // resolve(res.value[0][0].text);
  8765. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8766. }
  8767. }
  8768. }
  8769. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8770. xmlhttp.send();
  8771. }
  8772. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8773. var xmlhttp;
  8774. var Mac, Sn, DeviceId
  8775. if (window.XMLHttpRequest) {
  8776. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8777. xmlhttp = new XMLHttpRequest();
  8778. } else {
  8779. // IE6, IE5 浏览器执行代码
  8780. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8781. }
  8782. xmlhttp.onreadystatechange = function () {
  8783. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8784. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8785. // resolve(res.value[0][0].text);
  8786. if (type == '2') {
  8787. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8788. } else if (type == '3') {
  8789. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8790. } else if (type == '4') {
  8791. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8792. }
  8793. } else {
  8794. if (type == '2') {
  8795. iframe.contentWindow.editor.minder.importData('json', '')
  8796. } else if (type == '3') {
  8797. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8798. } else if (type == '4') {
  8799. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8800. }
  8801. }
  8802. }
  8803. }
  8804. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8805. xmlhttp.send();
  8806. }
  8807. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8808. var xmlhttp;
  8809. var Mac, Sn, DeviceId
  8810. if (window.XMLHttpRequest) {
  8811. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8812. xmlhttp = new XMLHttpRequest();
  8813. } else {
  8814. // IE6, IE5 浏览器执行代码
  8815. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8816. }
  8817. xmlhttp.onreadystatechange = function () {
  8818. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8819. if (xmlhttp.response) {
  8820. // resolve(res.value[0][0].text);
  8821. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8822. // $(fileInput).val('');
  8823. // });
  8824. span.innerHTML = '上传成功'
  8825. setTimeout(() => {
  8826. loading.style.display = 'none'
  8827. }, 1000);
  8828. }
  8829. }
  8830. }
  8831. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8832. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8833. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8834. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8835. // 设置请求头,表示请求体的编码格式
  8836. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8837. // 设置请求体,使用url-encoded格式的数据
  8838. }
  8839. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8840. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8841. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8842. _userinfo = US.userInfo, //登录用户信息
  8843. _userid = US.userInfo.userid //登录用户id
  8844. let _iframe;
  8845. let _cid = cid,
  8846. _stage = stage,
  8847. _task = task,
  8848. _tool = tool;
  8849. var _jie = $$("div", {
  8850. "style": {
  8851. "position": "absolute",
  8852. "bottom": "50px",
  8853. "right": "50px",
  8854. "zIndex": "9999",
  8855. "backgroundColor": "#2268bc",
  8856. "color": "#fff",
  8857. "padding": "12px 20px",
  8858. "cursor": "pointer",
  8859. "borderRadius": "4px",
  8860. },
  8861. "innerHTML": "提交作业"
  8862. })
  8863. let aTool = ''
  8864. let _loading = document.createElement('div')
  8865. _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;"
  8866. // _loading.id = "";
  8867. let _lchild = document.createElement('div')
  8868. let _limg = document.createElement('img')
  8869. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8870. _limg.style = "width: 26px;margin-right: 10px;"
  8871. _lchild.appendChild(_limg)
  8872. let _lspan = document.createElement('span')
  8873. _lspan.innerHTML = "上传中..."
  8874. _lchild.appendChild(_lspan)
  8875. _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%);"
  8876. _loading.appendChild(_lchild)
  8877. var _box = $$('div', {
  8878. "style": {
  8879. "position": "relative",
  8880. "width": "100%",
  8881. "height": "100%",
  8882. },
  8883. })
  8884. _box.appendChild(_loading)
  8885. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8886. switch (str) {
  8887. case "CocoPi":
  8888. aTool = 57;
  8889. _iframe = $$("iframe", {
  8890. "allowpaymentrequest": "allowpaymentrequest",
  8891. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8892. "webkitallowfullscreen": "",
  8893. "mozallowfullscreen": "",
  8894. "frameborder": "no",
  8895. "border": "0",
  8896. "scrolling ": "no",
  8897. "style": {
  8898. "cssText": "border:0;width:100%;height:100%"
  8899. },
  8900. "src": "https://pi.cocorobo.cn/"
  8901. })
  8902. _box.appendChild(_iframe);
  8903. _box.appendChild(_jie);
  8904. _formdiv = new U.UF.UI.form(
  8905. "CocoPi",
  8906. _box, {
  8907. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8908. "style": {
  8909. "width": "90%",
  8910. "height": "90%",
  8911. "overflow": 'hidden'
  8912. },
  8913. "onresize": function () { }
  8914. }, {
  8915. closecallback: function () { }
  8916. }, {
  8917. "style": {
  8918. "height": "36px"
  8919. }
  8920. }).form; //创建窗体
  8921. _taskbar = {
  8922. "id": str + _formdiv.id,
  8923. "style": {
  8924. "backgroundImage": "url(/img/icon/cocopi.png)"
  8925. },
  8926. "name": "CocoPi",
  8927. "forms": _formdiv,
  8928. "click": function () {
  8929. U.MD.D.I.openApplication(str, obj, info);
  8930. }
  8931. }
  8932. break;
  8933. }
  8934. if (_iframe) {
  8935. if (str == 'CocoPi') {
  8936. _iframe = _formdiv.querySelector('iframe')
  8937. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8938. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8939. })
  8940. if (onloadListener) {
  8941. _iframe.contentDocument.location.reload()
  8942. } else {
  8943. _iframe.contentDocument.location.reload()
  8944. }
  8945. }
  8946. _jie.onclick = async () => {
  8947. let text = ''
  8948. if (aTool == 57) {
  8949. text = _iframe.contentWindow.getLoadXmlStr()
  8950. }
  8951. _loading.style.display = 'flex'
  8952. console.log(_loading);
  8953. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8954. _loading.style.display = 'none'
  8955. let _div = document.createElement('div')
  8956. _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;"
  8957. let _inner = document.createElement('div')
  8958. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8959. _inner.innerHTML = "上传成功"
  8960. _div.appendChild(_inner)
  8961. _iframe.contentWindow.window.document.body.appendChild(_div)
  8962. _div.onclick = () => {
  8963. _iframe.contentWindow.window.document.body.removeChild(_div)
  8964. }
  8965. setTimeout(() => {
  8966. _iframe.contentWindow.window.document.body.removeChild(_div)
  8967. }, 1000);
  8968. }, [], { "type": "POST", "withCredentials": true });
  8969. }
  8970. }
  8971. }
  8972. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8973. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8974. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8975. _userid = student.userid, //登录用户id
  8976. _username = student.student //用户名字
  8977. let _iframe;
  8978. let _cid = cid,
  8979. _stage = stage,
  8980. _task = task,
  8981. _tool = tool;
  8982. var _jie = $$("div", {
  8983. "style": {
  8984. "position": "absolute",
  8985. "bottom": "50px",
  8986. "right": "50px",
  8987. "zIndex": "9999",
  8988. "backgroundColor": "#2268bc",
  8989. "color": "#fff",
  8990. "padding": "12px 20px",
  8991. "cursor": "pointer",
  8992. "borderRadius": "4px",
  8993. },
  8994. "innerHTML": "提交作业"
  8995. })
  8996. let aTool = ''
  8997. let _loading = document.createElement('div')
  8998. _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;"
  8999. // _loading.id = "";
  9000. let _lchild = document.createElement('div')
  9001. let _limg = document.createElement('img')
  9002. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9003. _limg.style = "width: 26px;margin-right: 10px;"
  9004. _lchild.appendChild(_limg)
  9005. let _lspan = document.createElement('span')
  9006. _lspan.innerHTML = "上传中..."
  9007. _lchild.appendChild(_lspan)
  9008. _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%);"
  9009. _loading.appendChild(_lchild)
  9010. var _box = $$('div', {
  9011. "style": {
  9012. "position": "relative",
  9013. "width": "100%",
  9014. "height": "100%",
  9015. },
  9016. })
  9017. _box.appendChild(_loading)
  9018. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9019. switch (str) {
  9020. case "CocoPi":
  9021. aTool = 57;
  9022. _iframe = $$("iframe", {
  9023. "allowpaymentrequest": "allowpaymentrequest",
  9024. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9025. "webkitallowfullscreen": "",
  9026. "mozallowfullscreen": "",
  9027. "frameborder": "no",
  9028. "border": "0",
  9029. "scrolling ": "no",
  9030. "style": {
  9031. "cssText": "border:0;width:100%;height:100%"
  9032. },
  9033. "src": "https://pi.cocorobo.cn/"
  9034. })
  9035. _box.appendChild(_iframe);
  9036. _box.appendChild(_jie);
  9037. _formdiv = new U.UF.UI.form(
  9038. "CocoPi-" + _username,
  9039. _box, {
  9040. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9041. "style": {
  9042. "width": "90%",
  9043. "height": "90%",
  9044. "overflow": 'hidden'
  9045. },
  9046. "onresize": function () { }
  9047. }, {
  9048. closecallback: function () { }
  9049. }, {
  9050. "style": {
  9051. "height": "36px"
  9052. }
  9053. }).form; //创建窗体
  9054. _taskbar = {
  9055. "id": str + _formdiv.id,
  9056. "style": {
  9057. "backgroundImage": "url(/img/icon/cocopi.png)"
  9058. },
  9059. "name": "CocoPi",
  9060. "forms": _formdiv,
  9061. "click": function () {
  9062. U.MD.D.I.openApplication(str, obj, info);
  9063. }
  9064. }
  9065. break;
  9066. }
  9067. if (_iframe) {
  9068. if (str == 'CocoPi') {
  9069. _iframe = _formdiv.querySelector('iframe')
  9070. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9071. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9072. })
  9073. if (onloadListener) {
  9074. _iframe.contentDocument.location.reload()
  9075. } else {
  9076. _iframe.contentDocument.location.reload()
  9077. }
  9078. }
  9079. _jie.onclick = async () => {
  9080. let text = ''
  9081. if (aTool == 57) {
  9082. text = _iframe.contentWindow.getLoadXmlStr()
  9083. }
  9084. _loading.style.display = 'flex'
  9085. console.log(_loading);
  9086. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9087. _loading.style.display = 'none'
  9088. let _div = document.createElement('div')
  9089. _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;"
  9090. let _inner = document.createElement('div')
  9091. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9092. _inner.innerHTML = "上传成功"
  9093. _div.appendChild(_inner)
  9094. _iframe.contentWindow.window.document.body.appendChild(_div)
  9095. _div.onclick = () => {
  9096. _iframe.contentWindow.window.document.body.removeChild(_div)
  9097. }
  9098. setTimeout(() => {
  9099. _iframe.contentWindow.window.document.body.removeChild(_div)
  9100. }, 1000);
  9101. }, [], { "type": "POST", "withCredentials": true });
  9102. }
  9103. }
  9104. }
  9105. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9106. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9107. if (res.value[0].length > 0) {
  9108. if (atool == 57) {
  9109. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9110. }
  9111. } else {
  9112. if (atool == 57) {
  9113. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9114. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9115. }
  9116. }
  9117. }, [], { "type": "POST", "withCredentials": true });
  9118. }