DeskTop.js 553 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094
  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": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  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. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  730. ];
  731. //hk
  732. U.MD.D.I.hkaceStudentDeskIcon = [
  733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  736. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  739. ];
  740. //香海正覺蓮社佛教正覺中學
  741. U.MD.D.I.hkZJLSteacherDeskIcon = [
  742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  748. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  749. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  750. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  751. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  752. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  753. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  754. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  755. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. ];
  759. //香海正覺蓮社佛教正覺中學
  760. U.MD.D.I.hkZJLSStudentDeskIcon = [
  761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //云海
  767. U.MD.D.I.yunhaiTeacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  775. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  776. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  777. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  778. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  779. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  782. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. ];
  787. //福田
  788. U.MD.D.I.heyuanTeacherDeskIcon = [
  789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  793. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  794. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  796. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  798. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  801. ];
  802. //福田
  803. U.MD.D.I.heyuanAdminDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  812. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  815. ];
  816. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  817. U.MD.D.I.szherTeacherDeskIcon = [
  818. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  819. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  820. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  822. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  823. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  824. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  825. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  829. ];
  830. //dsei
  831. U.MD.D.I.dseiTeacherDeskIcon = [
  832. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  833. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  834. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  835. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  836. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  838. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  839. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  840. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  841. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  842. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  843. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  844. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  845. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  846. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  847. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  848. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  849. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  850. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  851. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  852. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  853. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  854. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  855. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  856. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  857. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  858. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  859. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  860. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  861. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  862. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  863. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  864. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  865. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  866. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  867. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  868. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  869. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  872. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  873. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  874. ];
  875. //dsei
  876. U.MD.D.I.dseiAdminDeskIcon = [
  877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  886. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  887. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  888. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  889. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  890. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  891. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  892. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  893. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  894. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  895. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  896. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  897. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  898. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  899. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  900. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  901. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  902. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  903. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  904. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  905. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  906. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  907. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  908. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  909. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  910. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  911. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  912. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  913. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  918. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  919. ];
  920. //dsei
  921. U.MD.D.I.dseiStudentDeskIcon = [
  922. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. ];
  929. //未来教育基地
  930. U.MD.D.I.szjkyTeacherDeskIcon = [
  931. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  932. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  936. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  937. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  938. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  939. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  940. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  941. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  942. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  946. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  947. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  948. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  949. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  950. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  952. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  953. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. ];
  1226. //盐田区幼儿园
  1227. U.MD.D.I.ytyStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. ];
  1232. //scnuai
  1233. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1234. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1235. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1239. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1240. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1241. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1242. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1243. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1246. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1247. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1249. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1250. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1251. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1252. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1253. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1254. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1255. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1256. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1257. ];
  1258. //scnuai
  1259. U.MD.D.I.scnuaiAdminDeskIcon = [
  1260. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1261. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1267. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1268. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1269. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1270. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1271. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1272. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1275. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1276. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1277. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1278. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1279. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1280. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1281. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1282. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1283. ];
  1284. //scnuai
  1285. U.MD.D.I.scnuaiStudentDeskIcon = [
  1286. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1287. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1288. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1289. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1290. ];
  1291. //#region 桌面初始化a
  1292. /**
  1293. * 初始化桌面的起始函数
  1294. *
  1295. */
  1296. U.MD.D.I.init = function () {
  1297. if ($("#U_MD_D_K")[0]) {
  1298. //初始化桌面图标
  1299. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1300. // var clickUrl = ':12588/requestIp.php';
  1301. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1302. // U.MD.D.I.Ip = data;
  1303. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1304. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1305. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1306. // })
  1307. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1308. // })
  1309. }
  1310. }
  1311. /**
  1312. * 模式切换
  1313. *
  1314. */
  1315. U.MD.D.I.ModeCheck = function (type) {
  1316. if (US.Config.type == type) {
  1317. return
  1318. }
  1319. US.Config.type = type
  1320. $('.U_PBL_Check .active')[0].className = ''
  1321. if (type == 1) {
  1322. $('.U_PBL_Check div')[0].className = 'active'
  1323. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1324. } else {
  1325. $('.U_PBL_Check div')[1].className = 'active'
  1326. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1327. }
  1328. //初始化桌面图标
  1329. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1330. if (type == 2) {
  1331. U.MD.D.I.openApplication("project")
  1332. }
  1333. }
  1334. /**
  1335. * 隐藏任务栏
  1336. *
  1337. * @param {element} 桌面元素
  1338. */
  1339. U.MD.D.I.hiddenTaskbar = function (el) {
  1340. //任务栏位置变小
  1341. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1342. //桌面的位置变大
  1343. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1344. }
  1345. /**
  1346. * 隐藏任务栏
  1347. *
  1348. * @param {element} 桌面元素
  1349. */
  1350. U.MD.D.I.hiddenTaskbarout = function (el) {
  1351. //任务栏位置变小
  1352. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1353. //任务栏位置变化
  1354. U.selectEl(el).css({ "bottom": "-60px" });
  1355. //桌面的位置变大
  1356. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1357. }
  1358. }
  1359. /**
  1360. * 初始化打印桌面图标
  1361. *
  1362. * @param {element} 桌面元素
  1363. */
  1364. U.MD.D.I.initDesktopIcons = function (el, type) {
  1365. var i, //用于循环
  1366. _content, //桌面图标元素
  1367. _iconcontent, //桌面图标元素
  1368. _frag = $$("frag"), //定义一个碎片元素
  1369. _type = US.userInfo.type,
  1370. _org = US.userInfo.org,
  1371. _oid = US.userInfo.organizeid,
  1372. _role = US.userInfo.role,
  1373. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1374. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1375. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1376. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1377. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1378. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1379. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1380. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1381. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1382. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1383. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1384. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1385. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1386. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1387. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1388. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1389. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1390. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1391. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1392. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1393. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1394. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1395. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1396. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1397. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1398. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1399. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1400. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1401. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1402. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1403. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1404. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1405. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1406. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1407. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1408. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1409. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1410. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1411. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1412. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1413. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1414. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1415. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1416. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1417. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1418. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1419. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1420. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1421. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1422. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1423. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1424. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1425. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1426. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1427. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1428. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1429. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1430. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1431. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1432. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1433. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1434. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1435. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1436. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1437. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1438. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1439. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1440. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1441. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1442. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1443. 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'];
  1444. 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'];
  1445. //清楚桌面图标
  1446. el.innerHTML = "";
  1447. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1448. _teacherDesktopIconInfo.push(
  1449. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1450. { "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)" } },
  1451. )
  1452. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1453. }
  1454. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1455. _teacherDesktopIconInfo.push(
  1456. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1457. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1458. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1459. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1460. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1461. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1462. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1467. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1468. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1469. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1471. )
  1472. }
  1473. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1474. _teacherDesktopIconInfo.push(
  1475. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1476. )
  1477. }
  1478. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1479. // _teacherDesktopIconInfo.push(
  1480. // )
  1481. // }
  1482. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1483. _teacherDesktopIconInfo.push(
  1484. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1485. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1486. )
  1487. }
  1488. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1489. _teacherDesktopIconInfo.push(
  1490. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1493. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1494. )
  1495. _studentDesktopIconInfo.push(
  1496. )
  1497. }
  1498. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1499. _teacherDesktopIconInfo.push(
  1500. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1501. )
  1502. _studentDesktopIconInfo.push(
  1503. )
  1504. }
  1505. //麒麟二中 和 民新小学
  1506. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1507. _teacherDesktopIconInfo.push(
  1508. )
  1509. }
  1510. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1511. _teacherDesktopIconInfo.push(
  1512. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. )
  1516. }
  1517. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1518. _teacherDesktopIconInfo.push(
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. )
  1521. }
  1522. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1523. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1524. _teacherDesktopIconInfo.push(
  1525. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1526. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1527. )
  1528. }
  1529. //麒麟二中
  1530. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1531. _studentDesktopIconInfo.push(
  1532. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1533. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1534. )
  1535. }
  1536. //万科双语
  1537. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1538. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1539. if (el.Name == '项目管理') {
  1540. el.Name = 'PBL项目'
  1541. }
  1542. return el
  1543. })
  1544. _studentDesktopIconInfo3.push(
  1545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. )
  1547. }
  1548. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1549. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1550. return el.Name != '魔盒识字' && el.Name != '24点'
  1551. })
  1552. }
  1553. 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) {
  1554. _studentDesktopIconInfo.push(
  1555. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. )
  1558. }
  1559. //循环创建桌面图标
  1560. if (type == 1) {
  1561. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1562. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1563. _content = $$("div", {
  1564. className: "U_MD_D_KO",
  1565. "onmousedown": U.UF.C.closure(function (obj) {
  1566. //防止拖动图标即打开了桌面应用
  1567. U.MD.D.click(this, obj);
  1568. }, [_studentDesktopIconInfo[i]]),
  1569. "onclick": U.UF.C.closure(function (obj) {
  1570. //防止拖动图标即打开了桌面应用
  1571. U.MD.D.click(this, obj);
  1572. }, [_studentDesktopIconInfo[i]])
  1573. }, _frag); //
  1574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1577. }
  1578. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1579. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1580. _content = $$("div", {
  1581. className: "U_MD_D_KO",
  1582. "onmousedown": U.UF.C.closure(function (obj) {
  1583. //防止拖动图标即打开了桌面应用
  1584. U.MD.D.click(this, obj);
  1585. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1586. "onclick": U.UF.C.closure(function (obj) {
  1587. //防止拖动图标即打开了桌面应用
  1588. U.MD.D.click(this, obj);
  1589. }, [_hkZJLSStudentDeskIconInfo[i]])
  1590. }, _frag); //
  1591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1594. } //
  1595. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1596. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1597. _content = $$("div", {
  1598. className: "U_MD_D_KO",
  1599. "onmousedown": U.UF.C.closure(function (obj) {
  1600. //防止拖动图标即打开了桌面应用
  1601. U.MD.D.click(this, obj);
  1602. }, [_ytyStudentDeskIconInfo[i]]),
  1603. "onclick": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_ytyStudentDeskIconInfo[i]])
  1607. }, _frag); //
  1608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1611. } //
  1612. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1613. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1614. _content = $$("div", {
  1615. className: "U_MD_D_KO",
  1616. "onmousedown": U.UF.C.closure(function (obj) {
  1617. //防止拖动图标即打开了桌面应用
  1618. U.MD.D.click(this, obj);
  1619. }, [_jccssylStudentDeskIconInfo[i]]),
  1620. "onclick": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_jccssylStudentDeskIconInfo[i]])
  1624. }, _frag); //
  1625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1628. }
  1629. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1630. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1631. _content = $$("div", {
  1632. className: "U_MD_D_KO",
  1633. "onmousedown": U.UF.C.closure(function (obj) {
  1634. //防止拖动图标即打开了桌面应用
  1635. U.MD.D.click(this, obj);
  1636. }, [_scnuaiStudentDeskIconInfo[i]]),
  1637. "onclick": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_scnuaiStudentDeskIconInfo[i]])
  1641. }, _frag); //
  1642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1645. }
  1646. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1647. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1648. _content = $$("div", {
  1649. className: "U_MD_D_KO",
  1650. "onmousedown": U.UF.C.closure(function (obj) {
  1651. //防止拖动图标即打开了桌面应用
  1652. U.MD.D.click(this, obj);
  1653. }, [_caleStudentDeskIconInfo[i]]),
  1654. "onclick": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_caleStudentDeskIconInfo[i]])
  1658. }, _frag); //
  1659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1662. }
  1663. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1664. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1665. _content = $$("div", {
  1666. className: "U_MD_D_KO",
  1667. "onmousedown": U.UF.C.closure(function (obj) {
  1668. //防止拖动图标即打开了桌面应用
  1669. U.MD.D.click(this, obj);
  1670. }, [_thuioeStudentDeskIconInfo[i]]),
  1671. "onclick": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_thuioeStudentDeskIconInfo[i]])
  1675. }, _frag); //
  1676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1679. }
  1680. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1681. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_tpcStudentDeskIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_tpcStudentDeskIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1696. } //
  1697. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_chjyjStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_chjyjStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. }
  1714. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1715. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_szjkyStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_szjkyStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. }
  1731. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1732. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_dseiStudentDeskIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_dseiStudentDeskIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1749. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1766. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_siesStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_siesStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1783. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_hkStudentDeskIconInfo[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_hkStudentDeskIconInfo[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1800. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_hkaceStudentDeskIconInfo[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_hkaceStudentDeskIconInfo[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1815. }
  1816. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1817. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_studentDesktopIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_studentDesktopIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1834. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_tcStudentDeskIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_tcStudentDeskIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1851. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_szscStudentDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_szscStudentDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1868. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_studentDesktopIconInfo3[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_studentDesktopIconInfo3[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1883. }
  1884. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1885. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_studentDesktopIconInfo2[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_studentDesktopIconInfo2[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1900. }
  1901. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1902. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1903. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  1904. continue
  1905. }
  1906. _content = $$("div", {
  1907. className: "U_MD_D_KO",
  1908. "onmousedown": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_wanketeacherDesktopIconInfo[i]]),
  1912. "onclick": U.UF.C.closure(function (obj) {
  1913. //防止拖动图标即打开了桌面应用
  1914. U.MD.D.click(this, obj);
  1915. }, [_wanketeacherDesktopIconInfo[i]])
  1916. }, _frag); //
  1917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1920. }
  1921. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1922. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1923. _content = $$("div", {
  1924. className: "U_MD_D_KO",
  1925. "onmousedown": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_wankeAdminDesktopIconInfo[i]]),
  1929. "onclick": U.UF.C.closure(function (obj) {
  1930. //防止拖动图标即打开了桌面应用
  1931. U.MD.D.click(this, obj);
  1932. }, [_wankeAdminDesktopIconInfo[i]])
  1933. }, _frag); //
  1934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1937. }
  1938. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  1939. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  1940. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1941. continue
  1942. }
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_scnuaiTeacherDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_scnuaiTeacherDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  1959. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_scnuaiAdminDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_scnuaiAdminDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  1974. }
  1975. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1976. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1977. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1978. continue
  1979. }
  1980. _content = $$("div", {
  1981. className: "U_MD_D_KO",
  1982. "onmousedown": U.UF.C.closure(function (obj) {
  1983. //防止拖动图标即打开了桌面应用
  1984. U.MD.D.click(this, obj);
  1985. }, [_jccssylTeacherDeskIconInfo[i]]),
  1986. "onclick": U.UF.C.closure(function (obj) {
  1987. //防止拖动图标即打开了桌面应用
  1988. U.MD.D.click(this, obj);
  1989. }, [_jccssylTeacherDeskIconInfo[i]])
  1990. }, _frag); //
  1991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1994. }
  1995. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1996. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1997. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1998. continue
  1999. }
  2000. _content = $$("div", {
  2001. className: "U_MD_D_KO",
  2002. "onmousedown": U.UF.C.closure(function (obj) {
  2003. //防止拖动图标即打开了桌面应用
  2004. U.MD.D.click(this, obj);
  2005. }, [_caleTeacherDeskIconInfo[i]]),
  2006. "onclick": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_caleTeacherDeskIconInfo[i]])
  2010. }, _frag); //
  2011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2014. }
  2015. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2016. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2017. _content = $$("div", {
  2018. className: "U_MD_D_KO",
  2019. "onmousedown": U.UF.C.closure(function (obj) {
  2020. //防止拖动图标即打开了桌面应用
  2021. U.MD.D.click(this, obj);
  2022. }, [_tpcOrganizerDeskIconInfo[i]]),
  2023. "onclick": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_tpcOrganizerDeskIconInfo[i]])
  2027. }, _frag); //
  2028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2031. }
  2032. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2033. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2034. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2035. continue
  2036. }
  2037. _content = $$("div", {
  2038. className: "U_MD_D_KO",
  2039. "onmousedown": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_tpcTeacherDeskIconInfo[i]]),
  2043. "onclick": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_tpcTeacherDeskIconInfo[i]])
  2047. }, _frag); //
  2048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2051. }
  2052. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2053. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2054. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2055. continue
  2056. }
  2057. _content = $$("div", {
  2058. className: "U_MD_D_KO",
  2059. "onmousedown": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_teacherDesktopIconInfo2[i]]),
  2063. "onclick": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_teacherDesktopIconInfo2[i]])
  2067. }, _frag); //
  2068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2071. }
  2072. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2073. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2074. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2075. continue
  2076. }
  2077. _content = $$("div", {
  2078. className: "U_MD_D_KO",
  2079. "onmousedown": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_thuioeTeacherDeskIconInfo[i]]),
  2083. "onclick": U.UF.C.closure(function (obj) {
  2084. //防止拖动图标即打开了桌面应用
  2085. U.MD.D.click(this, obj);
  2086. }, [_thuioeTeacherDeskIconInfo[i]])
  2087. }, _frag); //
  2088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2091. }
  2092. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2093. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2094. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2095. continue
  2096. }
  2097. _content = $$("div", {
  2098. className: "U_MD_D_KO",
  2099. "onmousedown": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_lotechTeacherDeskIconInfo[i]]),
  2103. "onclick": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_lotechTeacherDeskIconInfo[i]])
  2107. }, _frag); //
  2108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2111. }//
  2112. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2113. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2114. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2115. continue
  2116. }
  2117. _content = $$("div", {
  2118. className: "U_MD_D_KO",
  2119. "onmousedown": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2123. "onclick": U.UF.C.closure(function (obj) {
  2124. //防止拖动图标即打开了桌面应用
  2125. U.MD.D.click(this, obj);
  2126. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2127. }, _frag); //
  2128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2131. }
  2132. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2133. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2134. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2135. continue
  2136. }
  2137. _content = $$("div", {
  2138. className: "U_MD_D_KO",
  2139. "onmousedown": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_siesTeacherDeskIconInfo[i]]),
  2143. "onclick": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_siesTeacherDeskIconInfo[i]])
  2147. }, _frag); //
  2148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2151. }
  2152. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2153. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2154. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2155. continue
  2156. }
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_longhuaTeacherDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_longhuaTeacherDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2173. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2174. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2175. continue
  2176. }
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_ytyTeacherDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_ytyTeacherDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2193. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2194. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2195. continue
  2196. }
  2197. _content = $$("div", {
  2198. className: "U_MD_D_KO",
  2199. "onmousedown": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2203. "onclick": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_yunhaiTeacherDeskIconInfo[i]])
  2207. }, _frag); //
  2208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2211. } //_hkStudentDeskIconInfo
  2212. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2213. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2214. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2215. continue
  2216. }
  2217. _content = $$("div", {
  2218. className: "U_MD_D_KO",
  2219. "onmousedown": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2223. "onclick": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2227. }, _frag); //
  2228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2231. }
  2232. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2233. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2234. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2235. continue
  2236. }
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_hkTeacherDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_hkTeacherDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2253. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2254. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2255. continue
  2256. }
  2257. _content = $$("div", {
  2258. className: "U_MD_D_KO",
  2259. "onmousedown": U.UF.C.closure(function (obj) {
  2260. //防止拖动图标即打开了桌面应用
  2261. U.MD.D.click(this, obj);
  2262. }, [_hkaceTeacherDeskIconInfo[i]]),
  2263. "onclick": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_hkaceTeacherDeskIconInfo[i]])
  2267. }, _frag); //
  2268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2271. }
  2272. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2273. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2274. _content = $$("div", {
  2275. className: "U_MD_D_KO",
  2276. "onmousedown": U.UF.C.closure(function (obj) {
  2277. //防止拖动图标即打开了桌面应用
  2278. U.MD.D.click(this, obj);
  2279. }, [_gdjgAdminDeskIconInfo[i]]),
  2280. "onclick": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_gdjgAdminDeskIconInfo[i]])
  2284. }, _frag); //
  2285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2288. }
  2289. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2290. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2291. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2292. continue
  2293. }
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_gdjgTeacherDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_gdjgTeacherDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2310. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2311. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2312. continue
  2313. }
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_szherTeacherDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_szherTeacherDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2330. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_heyuannAdminDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_heyuannAdminDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2347. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2348. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2349. continue
  2350. }
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_heyuanTeacherDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_heyuanTeacherDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2365. } //
  2366. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2367. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_dseiAdminDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_dseiAdminDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2384. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2385. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2386. continue
  2387. }
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_dseiTeacherDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_dseiTeacherDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2402. } //
  2403. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2404. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_chjyjAdminDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_chjyjAdminDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2419. }//
  2420. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2421. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2422. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2423. continue
  2424. }
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_chjyjTeacherDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_chjyjTeacherDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2441. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_szjkyAdminDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_szjkyAdminDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2456. }//
  2457. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2458. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2459. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2460. continue
  2461. }
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_szjkyTeacherDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_szjkyTeacherDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2478. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_futianAdminDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_futianAdminDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2495. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2496. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2497. continue
  2498. }
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_futianTeacherDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_futianTeacherDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2515. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2516. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2517. continue
  2518. }
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_MingdeTeacherDeskIcon[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_MingdeTeacherDeskIcon[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2533. }
  2534. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2535. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_lhsAdminDesktopIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_lhsAdminDesktopIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2552. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2553. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2554. continue
  2555. }
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_lhsteacherDesktopIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_lhsteacherDesktopIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2572. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2573. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2574. continue
  2575. }
  2576. _content = $$("div", {
  2577. className: "U_MD_D_KO",
  2578. "onmousedown": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2582. "onclick": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_zhoujiateacherDesktopIconInfo[i]])
  2586. }, _frag); //
  2587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2590. }
  2591. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2592. for (i = 0; i < _hanDeskIcon.length; i++) {
  2593. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2594. continue
  2595. }
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_hanDeskIcon[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_hanDeskIcon[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2610. }
  2611. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2612. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2613. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2614. continue
  2615. }
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_orgStemDeskIcon[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_orgStemDeskIcon[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2630. }
  2631. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2632. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2633. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2634. continue
  2635. }
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_szulsDeskIcon[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szulsDeskIcon[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2650. }
  2651. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2652. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2653. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2654. continue
  2655. }
  2656. _content = $$("div", {
  2657. className: "U_MD_D_KO",
  2658. "onmousedown": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_orgDesktopIconInfo[i]]),
  2662. "onclick": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_orgDesktopIconInfo[i]])
  2666. }, _frag); //
  2667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2670. }
  2671. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2672. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2673. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2674. continue
  2675. }
  2676. _content = $$("div", {
  2677. className: "U_MD_D_KO",
  2678. "onmousedown": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_schoolDesktopIconInfo[i]]),
  2682. "onclick": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_schoolDesktopIconInfo[i]])
  2686. }, _frag); //
  2687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2690. }
  2691. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2692. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2693. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2694. continue
  2695. }
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_GMteacherDesktopIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_GMteacherDesktopIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2712. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2713. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2714. continue
  2715. }
  2716. _content = $$("div", {
  2717. className: "U_MD_D_KO",
  2718. "onmousedown": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_SONGteacherDesktopIconInfo[i]]),
  2722. "onclick": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_SONGteacherDesktopIconInfo[i]])
  2726. }, _frag); //
  2727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2730. }
  2731. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2732. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2733. _content = $$("div", {
  2734. className: "U_MD_D_KO",
  2735. "onmousedown": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_GMstudentDesktopIconInfo[i]]),
  2739. "onclick": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_GMstudentDesktopIconInfo[i]])
  2743. }, _frag); //
  2744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2747. }
  2748. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2749. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2750. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2751. continue
  2752. }
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_tcTeacherDeskIconInfo[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_tcTeacherDeskIconInfo[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2767. }
  2768. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2769. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2770. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2771. continue
  2772. }
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_tcOrganizerDeskIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_tcOrganizerDeskIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2789. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2790. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2791. continue
  2792. }
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_szscTeacherDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_szscTeacherDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2809. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2810. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2811. continue
  2812. }
  2813. _content = $$("div", {
  2814. className: "U_MD_D_KO",
  2815. "onmousedown": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szscOrganizerDeskIconInfo[i]]),
  2819. "onclick": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_szscOrganizerDeskIconInfo[i]])
  2823. }, _frag); //
  2824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2827. }
  2828. } else {
  2829. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2830. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher'){
  2831. continue
  2832. }
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_teacherDesktopIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_teacherDesktopIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. }
  2849. } else {
  2850. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. style: { 'width': '124px', 'height': '145px' },
  2854. "onmousedown": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_easyDesktopIconInfo[i]]),
  2858. "onclick": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_easyDesktopIconInfo[i]])
  2862. }, _frag); //
  2863. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2866. }
  2867. }
  2868. if (type == 1) {
  2869. //加载好后给图标定位
  2870. U.MD.D.iconPostion($(_frag).Child());
  2871. } else {
  2872. //加载好后给图标定位
  2873. U.MD.D.iconPostion2($(_frag).Child());
  2874. }
  2875. //把图标加载到页面
  2876. el.appendChild(_frag);
  2877. }
  2878. /**
  2879. * 显示任务栏
  2880. *
  2881. * @param {element} 桌面元素
  2882. */
  2883. U.MD.D.I.displayTaskbar = function (el) {
  2884. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2885. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2886. //任务栏位置变化
  2887. U.selectEl(el).css({ "bottom": "0px" });
  2888. //桌面位置变话
  2889. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2890. }
  2891. }
  2892. //#region 桌面图标拖动逻辑
  2893. /**
  2894. * 桌面排列图标
  2895. *
  2896. * @param {element} 桌面元素
  2897. * @param {object} 上下相距的距离
  2898. * @param {object} 左右相距的距离
  2899. * @return {object} 命名空间
  2900. */
  2901. U.MD.D.iconPostion = function (childs, top, left) {
  2902. var i; //用于循环处理
  2903. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2904. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2905. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2906. for (i = 0; i < childs.length; i++) {
  2907. //如果竖排top超过了范围处理
  2908. if (top + 95 > US.height - 10) {
  2909. //left超过了页面范围处理,则向上重叠打印处理
  2910. if ((left + 180) > US.width) {
  2911. top -= 110;
  2912. left -= 90;
  2913. }
  2914. //没有超过范围,那么left+90添加到下一个竖排打印
  2915. else {
  2916. left += 90;
  2917. top = 15;
  2918. };
  2919. }
  2920. //给图标的位置赋值
  2921. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2922. if (i < childs.length - 1) {
  2923. //页面图标每次向下加95
  2924. top += 95;
  2925. }
  2926. }
  2927. //返回最后调用的图标的位置
  2928. return [top, left];
  2929. }
  2930. /**
  2931. * 桌面排列图标
  2932. *
  2933. * @param {element} 桌面元素
  2934. * @param {object} 上下相距的距离
  2935. * @param {object} 左右相距的距离
  2936. * @return {object} 命名空间
  2937. */
  2938. U.MD.D.iconPostion2 = function (childs, top, left) {
  2939. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2940. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2941. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2942. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2943. for (i = 0; i < childs.length; i++) {
  2944. //如果竖排top超过了范围处理
  2945. if (left + 150 > US.width - 10) {
  2946. //left超过了页面范围处理,则向上重叠打印处理
  2947. if ((top + 180) > US.Height) {
  2948. top -= 150;
  2949. left -= 150;
  2950. }
  2951. //没有超过范围,那么left+90添加到下一个竖排打印
  2952. else {
  2953. top += 150;
  2954. left = ol;
  2955. };
  2956. }
  2957. //给图标的位置赋值
  2958. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2959. if (i < childs.length - 1) {
  2960. //页面图标每次向下加95
  2961. left += 150;
  2962. }
  2963. }
  2964. //返回最后调用的图标的位置
  2965. return [top, left];
  2966. }
  2967. /**
  2968. * 桌面点击事件逻辑
  2969. *
  2970. * @param {element} 桌面元素
  2971. * @param {object} 上下相距的距离
  2972. * @param {object} 左右相距的距离
  2973. * @return {object} 命名空间
  2974. */
  2975. U.MD.D.click = function (el, obj) {
  2976. var _buttonnumber = event.button; //点击的按钮的事件值
  2977. var _userinfo = US.userInfo;
  2978. U.UF.EV.stopBubble(); //阻止向上冒泡
  2979. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2980. if (_buttonnumber < 2) {
  2981. //如果是click事件的处理
  2982. if (event.type == "click") {
  2983. //如果元素在mousemove事件中没有移动则出发click事件
  2984. if (!U.MD.D.I.IsDrag) {
  2985. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2986. U.alert("请先登录您的账号!");
  2987. setTimeout(() => {
  2988. U.MD.U.L.login();
  2989. }, 2000);
  2990. } else {
  2991. //打开应用处理
  2992. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2993. }
  2994. }
  2995. }
  2996. //如果是mouse事件的处理
  2997. else {
  2998. if (US.Config.type == '1') {
  2999. //拖动处理,添加拖动和拖动结束事件
  3000. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3001. }
  3002. }
  3003. U.MD.D.I.IsDrag = false;
  3004. }
  3005. }
  3006. /**
  3007. * 拖动的处理
  3008. *
  3009. */
  3010. U.MD.D.iconMove = function () {
  3011. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3012. U.MD.D.I.IsDrag = true;
  3013. }
  3014. /**
  3015. * 拖动结束后,这里是定位处理,以网状的形式定位
  3016. *
  3017. * @param {element} 拖动的元素
  3018. * @return {object} 命名空间
  3019. */
  3020. U.MD.D.iconUp = function (el) {
  3021. var _top = 15,
  3022. _left = 20,
  3023. _margin,
  3024. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3025. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3026. if (_positioninfo["OT"] > 15) {
  3027. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3028. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3029. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3030. }
  3031. if (_positioninfo["OL"] > 20) {
  3032. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3033. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3034. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3035. }
  3036. //while循环判断么一个重叠的元素
  3037. do {
  3038. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3039. _top = _positioninfo[0] + 95; //得到定位后的top
  3040. _left = _positioninfo[1]; //得到定位后的left
  3041. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3042. }
  3043. /**
  3044. * 判断拖动后图标是否重叠
  3045. *
  3046. * @param {element} 拖动的元素
  3047. * @param {element} 桌面所有的元素
  3048. * @param {array} 拖动元素的位置
  3049. ----------[0] 上 top
  3050. ----------[1] 左 left
  3051. * @return {object} 命名空间
  3052. */
  3053. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3054. //循环所有的图标
  3055. for (var i = 0; i < childs.length; i++) {
  3056. //判断有没有和该图标诶子重叠的元素
  3057. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3058. return childs[i]; //如果有返回
  3059. }
  3060. }
  3061. }
  3062. //#endregion
  3063. //#endregion
  3064. //#region 桌面应用
  3065. /**
  3066. * 打开应用
  3067. *
  3068. * @param {string} 类型
  3069. -----------------Disk 网盘系统
  3070. -----------------PDisk 学习系统网盘
  3071. -----------------Poto 图片
  3072. -----------------Video 视频
  3073. -----------------Music 音乐
  3074. -----------------Word word
  3075. -----------------Excel excel
  3076. -----------------Txt 记事本
  3077. -----------------PB 学习系统
  3078. -----------------Blog 朋友圈系统
  3079. -----------------FTP ftp系统
  3080. -----------------Group 好友群
  3081. -----------------SY 首页系统
  3082. -----------------Set 个人设置
  3083. -----------------XSet 系统设置
  3084. -----------------App 我们所有的app
  3085. -----------------BC c.1473.cn 平台
  3086. -----------------CWeb d.1473.cn 变成平台
  3087. -----------------其他的外联系统 我们统一用iframe打开
  3088. * @param {array} 类型
  3089. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3090. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3091. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3092. 如果第一个参数为其他,则无第二个参数
  3093. * @returns {array}
  3094. */
  3095. window.addEventListener('message', function (e) { // 监听 message 事件
  3096. // alert(e.data.type);
  3097. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3098. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3099. //3是展示全部阶段 2学生 1老师 4专家
  3100. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3101. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3102. //3是展示全部阶段 2学生 1老师 4专家
  3103. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3104. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3105. //3是展示全部阶段 2学生 1老师 4专家
  3106. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3107. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3108. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3109. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3110. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3111. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3112. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3113. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3114. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3115. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3116. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3117. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3118. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3119. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3120. //3是展示全部阶段 2学生 1老师 4专家
  3121. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3122. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3123. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3124. U.MD.D.I.selectUser();
  3125. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3126. var _formel = document.getElementById("study");
  3127. U.UF.F.windowZooming(_formel);
  3128. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3129. var _formel = document.getElementById("studyDetail");
  3130. U.UF.F.windowZooming(_formel);
  3131. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3132. var _formel = document.getElementById("studyDetail");
  3133. U.UF.F.windowZooming(_formel);
  3134. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3135. var _formel = document.getElementById("studentStudy");
  3136. U.UF.F.windowZooming(_formel);
  3137. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3138. // var _formel = document.getElementById("study");
  3139. //如果最大化了,那么就把他缩小
  3140. // if (_formel.ismaximize) {
  3141. // return;
  3142. // }
  3143. // U.UF.F.windowZooming(_formel);
  3144. // U.UF.F.topWindow(_formel);
  3145. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3146. // var _formel = document.getElementById("studyDetail");
  3147. //如果最大化了,那么就把他缩小
  3148. // if (_formel.ismaximize) {
  3149. // return;
  3150. // }
  3151. // U.UF.F.windowZooming(_formel);
  3152. // U.UF.F.topWindow(_formel);
  3153. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3154. // var _formel = document.getElementById("studentStudy");
  3155. // if (_formel.ismaximize) {
  3156. // return;
  3157. // }
  3158. // U.UF.F.windowZooming(_formel);
  3159. // U.UF.F.topWindow(_formel);
  3160. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3161. var _formel = document.getElementById("study");
  3162. // if (_formel.ismaximize) {
  3163. // return;
  3164. // }
  3165. // U.UF.F.windowZooming(_formel);
  3166. U.UF.F.topWindow(_formel);
  3167. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3168. var _formel = document.getElementById("studentIndex");
  3169. U.UF.F.windowZooming(_formel);
  3170. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3171. var _formel = document.getElementById("studyDetailS");
  3172. U.UF.F.windowZooming(_formel);
  3173. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3174. var _formel = document.getElementById("studioIndex");
  3175. U.UF.F.windowZooming(_formel);
  3176. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3177. var _formel = document.getElementById("studyDetailStudio");
  3178. U.UF.F.windowZooming(_formel);
  3179. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3180. var _formel = document.getElementById("studyDetailStudio");
  3181. U.UF.F.windowZooming(_formel);
  3182. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3183. var _formel = document.getElementById("studyDetailNT");
  3184. U.UF.F.windowZooming(_formel);
  3185. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3186. var _formel = document.getElementById("studyDetailS");
  3187. U.UF.F.windowZooming(_formel);
  3188. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3189. var _formel = document.getElementById("studyDetailS");
  3190. U.UF.F.topWindow(_formel);
  3191. } else if (e.data.tools && e.data.tools == "1") {
  3192. // U.MD.D.I.openApplication("whiteboard")
  3193. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3194. } else if (e.data.tools && e.data.tools == "2") {
  3195. U.MD.D.I.openApplication("note")
  3196. } else if (e.data.tools && e.data.tools == "3") {
  3197. // U.MD.D.I.openApplication("mind")
  3198. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3199. } else if (e.data.tools && e.data.tools == "4") {
  3200. U.MD.D.I.openApplication("investigation")
  3201. } else if (e.data.tools && e.data.tools == "6") {
  3202. // U.MD.D.I.openApplication("doc")
  3203. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3204. } else if (e.data.tools && e.data.tools == "7") {
  3205. // U.MD.D.I.openApplication("mindNetwork")
  3206. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3207. } else if (e.data.tools && e.data.tools == "8") {
  3208. U.MD.D.I.openApplication("library")
  3209. } else if (e.data.tools && e.data.tools == "17") {
  3210. U.MD.D.I.openApplication("stuLibrary")
  3211. } else if (e.data.tools && e.data.tools == "18") {
  3212. U.MD.D.I.openApplication("train")
  3213. } else if (e.data.tools && e.data.tools == "21") {
  3214. U.MD.D.I.openApplication("program")
  3215. } else if (e.data.tools && e.data.tools == "22") {
  3216. U.MD.D.I.openApplication("AIprogram2")
  3217. } else if (e.data.tools && e.data.tools == "23") {
  3218. U.MD.D.I.openApplication("Pythonprogram")
  3219. } else if (e.data.tools && e.data.tools == "24") {
  3220. U.MD.D.I.openApplication("AIprogram")
  3221. } else if (e.data.tools && e.data.tools == "25") {
  3222. U.MD.D.I.openApplication("sys")
  3223. } else if (e.data.tools && e.data.tools == "26") {
  3224. // U.MD.D.I.openApplication("courseDesign")
  3225. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3226. } else if (e.data.tools && e.data.tools == "31") {
  3227. U.MD.D.I.openApplication("netWorkPanel")
  3228. } else if (e.data.tools && e.data.tools == "32") {
  3229. U.MD.D.I.openApplication("codeEdit")
  3230. } else if (e.data.tools && e.data.tools == "57") {
  3231. U.MD.D.I.openApplication("CocoPi")
  3232. } else if (e.data.tools && e.data.tools == "63") {
  3233. U.MD.D.I.openApplication("Wood")
  3234. } else if (e.data.tools && e.data.tools == "58") {
  3235. U.MD.D.I.openApplication("car")
  3236. } else if (e.data.tools && e.data.tools == "59") {
  3237. U.MD.D.I.openApplication("lineSearch")
  3238. } else if (e.data.tools && e.data.tools == "60") {
  3239. U.MD.D.I.openApplication("deepLearning")
  3240. } else if (e.data.tools && e.data.tools == "61") {
  3241. U.MD.D.I.openApplication("allHistory")
  3242. } else if (e.data.tools && e.data.tools == "28") {
  3243. U.MD.D.I.openApplication("translation")
  3244. } else if (e.data.tools && e.data.tools == "37") {
  3245. U.MD.D.I.openApplication("mohe")
  3246. } else if (e.data.tools && e.data.tools == "38") {
  3247. U.MD.D.I.openApplication("24game")
  3248. } else if (e.data.tools && e.data.tools == "39") {
  3249. U.MD.D.I.openApplication("GeoGebra")
  3250. } else if (e.data.tools && e.data.tools == "43") {
  3251. U.MD.D.I.openApplication("studentEvaluate")
  3252. } else if (e.data.tools && e.data.tools == "44") {
  3253. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3254. } else if (e.data.tools && e.data.tools == "46") {
  3255. U.MD.D.I.openApplication("project")
  3256. } else if (e.data.tools && e.data.tools == "71") {
  3257. U.MD.D.I.openApplication("aigptCourse")
  3258. } else if (e.data.tools && e.data.tools == "1s") {
  3259. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3260. } else if (e.data.tools && e.data.tools == "3s") {
  3261. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3262. } else if (e.data.tools && e.data.tools == "6s") {
  3263. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3264. } else if (e.data.tools && e.data.tools == "1studio") {
  3265. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3266. } else if (e.data.tools && e.data.tools == "3studio") {
  3267. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3268. } else if (e.data.tools && e.data.tools == "6studio") {
  3269. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3270. } else if (e.data.tools && e.data.tools == "3y") {
  3271. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3272. } else if (e.data.tools && e.data.tools == "1y") {
  3273. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3274. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3275. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3276. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3277. U.MD.D.I.openApplication("AIAnalyse")
  3278. } else if (e.data.tools && e.data.tools == "1teacher") {
  3279. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3280. } else if (e.data.tools && e.data.tools == "3teacher") {
  3281. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3282. } else if (e.data.tools && e.data.tools == "7teacher") {
  3283. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3284. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3285. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3286. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3287. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3288. } else if (e.data.tools && e.data.tools == "1E") {
  3289. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3290. } else if (e.data.tools && e.data.tools == "3E") {
  3291. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3292. } else if (e.data.tools && e.data.tools == "57y") {
  3293. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3294. } else if (e.data.tools && e.data.tools == "57u") {
  3295. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3296. } else if (e.data.tools && e.data.tools == "57teacher") {
  3297. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3298. } else if (e.data.tools && e.data.tools == "64") {
  3299. U.MD.D.I.openApplication("AIChat")
  3300. } else if (e.data.tools && e.data.tools == "66") {
  3301. U.MD.D.I.openApplication("formulaEdi")
  3302. } else if (e.data.tools && e.data.tools == "67") {
  3303. U.MD.D.I.openApplication("molStr")
  3304. } else if (e.data.tools && e.data.tools == "68") {
  3305. U.MD.D.I.openApplication("timeAxis")
  3306. } else if (e.data.tools && e.data.tools == "openCourse") {
  3307. let _data = {
  3308. typea: e.data.typea || '',
  3309. typeb: e.data.typeb || '',
  3310. typed: e.data.typed || '',
  3311. }
  3312. U.MD.D.I.openInApplication("index", _data)
  3313. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3314. let _data = {
  3315. classid: e.data.classid || '',
  3316. }
  3317. U.MD.D.I.openInApplication("dataClass", _data)
  3318. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3319. let _data = {
  3320. cid: e.data.cid || '',
  3321. gid: e.data.gid || '',
  3322. }
  3323. U.MD.D.I.openInApplication("opencCscl", _data)
  3324. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3325. U.MD.D.I.openApplication("dataBoardTest")
  3326. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3327. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3328. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3329. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3330. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3331. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3332. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3333. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3334. }else if (e.data.tools && e.data.tools == "loginSz") {
  3335. U.MD.D.I.openInApplication("loginSz")
  3336. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3337. if($('#classroom_observation_board')[0]){
  3338. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3339. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3340. }
  3341. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3342. }
  3343. });
  3344. U.MD.D.I.selectUser = function () {
  3345. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3346. if (res.value[0].length > 0) {
  3347. US.userInfo = res.value[0][0];
  3348. $(".userName")[0].innerHTML = US.userInfo.username;
  3349. }
  3350. }, [], { "type": "GET", "withCredentials": true });
  3351. }
  3352. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3353. var _userinfo = US.userInfo, //登录用户信息
  3354. _userid = US.userInfo.userid, //登录用户id
  3355. _oid = _userinfo.organizeid,
  3356. _type = US.userInfo.type,
  3357. _org = US.userInfo.org,
  3358. _role = US.userInfo.role,
  3359. _classId = US.userInfo.classid;
  3360. if (_type == 4) {
  3361. tType = 4
  3362. }
  3363. switch (str) {
  3364. case "studyDetailNT": //无终端模式
  3365. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3366. setTimeout(() => {
  3367. U.MD.U.L.login();
  3368. }, 2000);
  3369. } else {
  3370. _formdiv = new U.UF.UI.form(
  3371. "课程详情",
  3372. $$("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 }), {
  3373. "id": "studyDetailNT",
  3374. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3375. "onresize": function () { }
  3376. }, {
  3377. closecallback: function () { }
  3378. }, { "style": { "height": "36px" } }).form; //创建窗体
  3379. _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); } }
  3380. break;
  3381. }
  3382. case "studyDetail":
  3383. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3384. setTimeout(() => {
  3385. U.MD.U.L.login();
  3386. }, 2000);
  3387. } else {
  3388. _formdiv = new U.UF.UI.form(
  3389. "课程详情",
  3390. $$("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 }), {
  3391. "id": "studyDetail",
  3392. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3393. "onresize": function () { }
  3394. }, {
  3395. closecallback: function () { }
  3396. }, { "style": { "height": "36px" } }).form; //创建窗体
  3397. _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); } }
  3398. break;
  3399. }
  3400. case "studyDetailTrain":
  3401. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3402. setTimeout(() => {
  3403. U.MD.U.L.login();
  3404. }, 2000);
  3405. } else {
  3406. _formdiv = new U.UF.UI.form(
  3407. "培训详情",
  3408. $$("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 }), {
  3409. "id": "studyDetailTrain",
  3410. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3411. "onresize": function () { }
  3412. }, {
  3413. closecallback: function () { }
  3414. }, { "style": { "height": "36px" } }).form; //创建窗体
  3415. _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); } }
  3416. break;
  3417. }
  3418. case "studyDetailS":
  3419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3420. setTimeout(() => {
  3421. U.MD.U.L.login();
  3422. }, 2000);
  3423. } else {
  3424. _formdiv = new U.UF.UI.form(
  3425. "项目详情",
  3426. $$("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 }), {
  3427. "id": "studyDetailS",
  3428. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3429. "onresize": function () { }
  3430. }, {
  3431. closecallback: function () { }
  3432. }, { "style": { "height": "36px" } }).form; //创建窗体
  3433. _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); } }
  3434. break;
  3435. }
  3436. case "studyDetailStudio":
  3437. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3438. setTimeout(() => {
  3439. U.MD.U.L.login();
  3440. }, 2000);
  3441. } else {
  3442. _formdiv = new U.UF.UI.form(
  3443. "工作详情",
  3444. $$("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 }), {
  3445. "id": "studyDetailStudio",
  3446. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3447. "onresize": function () { }
  3448. }, {
  3449. closecallback: function () { }
  3450. }, { "style": { "height": "36px" } }).form; //创建窗体
  3451. _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); } }
  3452. break;
  3453. }
  3454. case "studyDetailS5":
  3455. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3456. setTimeout(() => {
  3457. U.MD.U.L.login();
  3458. }, 2000);
  3459. } else {
  3460. _formdiv = new U.UF.UI.form(
  3461. "项目详情",
  3462. $$("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 }), {
  3463. "id": "studyDetailS",
  3464. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3465. "onresize": function () { }
  3466. }, {
  3467. closecallback: function () { }
  3468. }, { "style": { "height": "36px" } }).form; //创建窗体
  3469. _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); } }
  3470. break;
  3471. }
  3472. case "studyDetailGM":
  3473. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3474. setTimeout(() => {
  3475. U.MD.U.L.login();
  3476. }, 2000);
  3477. } else {
  3478. _formdiv = new U.UF.UI.form(
  3479. "课程详情",
  3480. $$("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 }), {
  3481. "id": "studyDetail",
  3482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3483. "onresize": function () { }
  3484. }, {
  3485. closecallback: function () { }
  3486. }, { "style": { "height": "36px" } }).form; //创建窗体
  3487. _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); } }
  3488. break;
  3489. }
  3490. case "hanUrl":
  3491. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3492. setTimeout(() => {
  3493. U.MD.U.L.login();
  3494. }, 2000);
  3495. } else {
  3496. _formdiv = new U.UF.UI.form(
  3497. "汉字宫",
  3498. $$("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" }), {
  3499. "id": "hanUrl",
  3500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3501. "onresize": function () { }
  3502. }, {
  3503. closecallback: function () { }
  3504. }, { "style": { "height": "36px" } }).form; //创建窗体
  3505. _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); } }
  3506. break;
  3507. }
  3508. case "index":
  3509. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3510. setTimeout(() => {
  3511. U.MD.U.L.login();
  3512. }, 2000);
  3513. } else {
  3514. _formdiv = new U.UF.UI.form(
  3515. "课程中心",
  3516. $$("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 }), {
  3517. "id": "study",
  3518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3519. "onresize": function () { }
  3520. }, {
  3521. closecallback: function () { }
  3522. }, { "style": { "height": "36px" } }).form; //创建窗体
  3523. _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); } }
  3524. break;
  3525. }
  3526. case "dataClass":
  3527. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3528. setTimeout(() => {
  3529. U.MD.U.L.login();
  3530. }, 2000);
  3531. } else {
  3532. _formdiv = new U.UF.UI.form(
  3533. "数据报告",
  3534. $$("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 }), {
  3535. "id": "dataClass",
  3536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3537. "onresize": function () { }
  3538. }, {
  3539. closecallback: function () { }
  3540. }, { "style": { "height": "36px" } }).form; //创建窗体
  3541. _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); } }
  3542. break;
  3543. }
  3544. case "opencCscl":
  3545. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3546. setTimeout(() => {
  3547. U.MD.U.L.login();
  3548. }, 2000);
  3549. } else {
  3550. _formdiv = new U.UF.UI.form(
  3551. "协同建构",
  3552. $$("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 }), {
  3553. "id": "futureClass",
  3554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3555. "onresize": function () { }
  3556. }, {
  3557. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3558. }, { "style": { "height": "36px" } }).form; //创建窗体
  3559. _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); } }
  3560. break;
  3561. }
  3562. case "openCourseUpdate":
  3563. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3564. setTimeout(() => {
  3565. U.MD.U.L.login();
  3566. }, 2000);
  3567. } else {
  3568. _formdiv = new U.UF.UI.form(
  3569. "课程管理",
  3570. $$("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 }), {
  3571. "id": "openCourseUpdate",
  3572. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3573. "onresize": function () { }
  3574. }, {
  3575. closecallback: function () { }
  3576. }, { "style": { "height": "36px" } }).form; //创建窗体
  3577. break;
  3578. }
  3579. case "openNewCourseUpdate":
  3580. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3581. setTimeout(() => {
  3582. U.MD.U.L.login();
  3583. }, 2000);
  3584. } else {
  3585. _formdiv = new U.UF.UI.form(
  3586. "课程管理",
  3587. $$("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 }), {
  3588. "id": "openCourseUpdate",
  3589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3590. "onresize": function () { }
  3591. }, {
  3592. closecallback: function () { }
  3593. }, { "style": { "height": "36px" } }).form; //创建窗体
  3594. break;
  3595. }
  3596. case "openCourseEUpdate":
  3597. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3598. setTimeout(() => {
  3599. U.MD.U.L.login();
  3600. }, 2000);
  3601. } else {
  3602. _formdiv = new U.UF.UI.form(
  3603. "课程管理",
  3604. $$("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 }), {
  3605. "id": "openCourseUpdate",
  3606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3607. "onresize": function () { }
  3608. }, {
  3609. closecallback: function () { }
  3610. }, { "style": { "height": "36px" } }).form; //创建窗体
  3611. break;
  3612. }
  3613. case "openCourseNewUpdate":
  3614. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3615. setTimeout(() => {
  3616. U.MD.U.L.login();
  3617. }, 2000);
  3618. } else {
  3619. _formdiv = new U.UF.UI.form(
  3620. "课程管理",
  3621. $$("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 }), {
  3622. "id": "openCourseUpdate",
  3623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3624. "onresize": function () { }
  3625. }, {
  3626. closecallback: function () { }
  3627. }, { "style": { "height": "36px" } }).form; //创建窗体
  3628. break;
  3629. }
  3630. case "inviteLoginSz":
  3631. _formdiv = new U.UF.UI.form(
  3632. "随机码登录",
  3633. $$("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 }), {
  3634. "id": "loginSz",
  3635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3636. "onresize": function () { }
  3637. }, {
  3638. closecallback: function () { }
  3639. }, { "style": { "height": "36px" } }).form; //创建窗体
  3640. break;
  3641. case "loginSz":
  3642. _formdiv = new U.UF.UI.form(
  3643. "教师登录",
  3644. $$("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" }), {
  3645. "id": "loginSz",
  3646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3647. "onresize": function () { }
  3648. }, {
  3649. closecallback: function () { }
  3650. }, { "style": { "height": "36px" } }).form; //创建窗体
  3651. break;
  3652. case "teacher":
  3653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3654. setTimeout(() => {
  3655. U.MD.U.L.login();
  3656. }, 2000);
  3657. } else {
  3658. _formdiv = new U.UF.UI.form(
  3659. "教师管理",
  3660. $$("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 }), {
  3661. "id": "teacher",
  3662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3663. "onresize": function () { }
  3664. }, {
  3665. closecallback: function () { }
  3666. }, { "style": { "height": "36px" } }).form; //创建窗体
  3667. break;
  3668. }
  3669. case "dataBoardSZArea":
  3670. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3671. setTimeout(() => {
  3672. U.MD.U.L.login();
  3673. }, 2000);
  3674. } else {
  3675. _formdiv = new U.UF.UI.form(
  3676. "综合数据看板",
  3677. $$("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 }), {
  3678. "id": "dataBoardSZArea",
  3679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. break;
  3685. }
  3686. case "dataBoardSZCity":
  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-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3695. "id": "dataBoardSZCity",
  3696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3697. "onresize": function () { }
  3698. }, {
  3699. closecallback: function () { }
  3700. }, { "style": { "height": "36px" } }).form; //创建窗体
  3701. break;
  3702. }
  3703. case "classroom_observation_board":
  3704. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3705. setTimeout(() => {
  3706. U.MD.U.L.login();
  3707. }, 2000);
  3708. } else {
  3709. _formdiv = new U.UF.UI.form(
  3710. "课堂观察",
  3711. $$("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 }), {
  3712. "id": "classroom_observation_board",
  3713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3714. "onresize": function () { }
  3715. }, {
  3716. closecallback: function () { }
  3717. }, { "style": { "height": "36px" } }).form; //创建窗体
  3718. break;
  3719. }
  3720. }
  3721. }
  3722. U.MD.D.I.openApplication = function (str, obj, info) {
  3723. obj = obj || {};
  3724. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3725. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3726. _userinfo = US.userInfo, //登录用户信息
  3727. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3728. _oid = obj.organizeid || _userinfo.organizeid,
  3729. _type = US.userInfo.type,
  3730. _org = US.userInfo.org,
  3731. _role = US.userInfo.role,
  3732. _classId = US.userInfo.classid,
  3733. _TscreenType = 1
  3734. _screenType = 2,
  3735. _SscreenType = 3;
  3736. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3737. return;
  3738. }
  3739. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3740. switch (str) {
  3741. case "studnetProject": //好友打开
  3742. _formdiv = new U.UF.UI.form(
  3743. "我的项目",
  3744. $$("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 }), {
  3745. "id": "studnetProject",
  3746. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3747. "onresize": function () { }
  3748. }, {
  3749. closecallback: function () { }
  3750. }, { "style": { "height": "36px" } }).form; //创建窗体
  3751. _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); } }
  3752. break;
  3753. case "studentEvaluate": //好友打开
  3754. _formdiv = new U.UF.UI.form(
  3755. "我的评价",
  3756. $$("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 }), {
  3757. "id": "studentEvaluate",
  3758. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3759. "onresize": function () { }
  3760. }, {
  3761. closecallback: function () { }
  3762. }, { "style": { "height": "36px" } }).form; //创建窗体
  3763. _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); } }
  3764. break;
  3765. case "my":
  3766. _formdiv = new U.UF.UI.form(
  3767. "我的资料",
  3768. $$("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 }), {
  3769. "id": "my",
  3770. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3771. "onresize": function () { }
  3772. }, {
  3773. closecallback: function () { }
  3774. }, { "style": { "height": "36px" } }).form; //创建窗体
  3775. _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); } }
  3776. break;
  3777. case "program":
  3778. _formdiv = new U.UF.UI.form(
  3779. "编程平台",
  3780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3781. "id": "program",
  3782. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3783. "onresize": function () { }
  3784. }, {
  3785. closecallback: function () { }
  3786. }, { "style": { "height": "36px" } }).form; //创建窗体
  3787. _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); } }
  3788. break;
  3789. case "library":
  3790. _formdiv = new U.UF.UI.form(
  3791. "素材库",
  3792. $$("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 }), {
  3793. "id": "library",
  3794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3795. "onresize": function () { }
  3796. }, {
  3797. closecallback: function () { }
  3798. }, { "style": { "height": "36px" } }).form; //创建窗体
  3799. _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); } }
  3800. break;
  3801. case "whiteboard":
  3802. _formdiv = new U.UF.UI.form(
  3803. "电子白板",
  3804. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3805. "id": "whiteboard",
  3806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3807. "onresize": function () { }
  3808. }, {
  3809. closecallback: function () { }
  3810. }, { "style": { "height": "36px" } }).form; //创建窗体
  3811. _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); } }
  3812. break;
  3813. case "investigation":
  3814. _formdiv = new U.UF.UI.form(
  3815. "问卷调查",
  3816. $$("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 }), {
  3817. "id": "investigation",
  3818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3819. "onresize": function () { }
  3820. }, {
  3821. closecallback: function () { }
  3822. }, { "style": { "height": "36px" } }).form; //创建窗体
  3823. _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); } }
  3824. break;
  3825. case "note":
  3826. _formdiv = new U.UF.UI.form(
  3827. "便签分类",
  3828. $$("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 }), {
  3829. "id": "note",
  3830. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3831. "onresize": function () { }
  3832. }, {
  3833. closecallback: function () { }
  3834. }, { "style": { "height": "36px" } }).form; //创建窗体
  3835. _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); } }
  3836. break;
  3837. // case "score":
  3838. // _formdiv = new U.UF.UI.form(
  3839. // "量规评分",
  3840. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3841. // "id": "score",
  3842. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3843. // "onresize": function() {}
  3844. // }, {
  3845. // closecallback: function() {}
  3846. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3847. // _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); } }
  3848. // break;
  3849. case "mind":
  3850. _formdiv = new U.UF.UI.form(
  3851. "思维导图",
  3852. $$("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"
  3853. "id": "mind",
  3854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3855. "onresize": function () { }
  3856. }, {
  3857. closecallback: function () { }
  3858. }, { "style": { "height": "36px" } }).form; //创建窗体
  3859. _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); } }
  3860. break;
  3861. case "doc":
  3862. // U.MD.D.I.isRoom();
  3863. _formdiv = new U.UF.UI.form(
  3864. "协同文档",
  3865. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3866. "id": "doc",
  3867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3868. "onresize": function () { }
  3869. }, {
  3870. closecallback: function () { }
  3871. }, { "style": { "height": "36px" } }).form; //创建窗体
  3872. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3873. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3874. // })
  3875. _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); } }
  3876. break;
  3877. case "studentStudy":
  3878. _formdiv = new U.UF.UI.form(
  3879. "课程中心",
  3880. $$("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
  3881. "id": "studentStudy",
  3882. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3883. "onresize": function () { }
  3884. }, {
  3885. closecallback: function () { }
  3886. }, { "style": { "height": "36px" } }).form; //创建窗体
  3887. _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); } }
  3888. break;
  3889. case "train": //好友打开
  3890. _formdiv = new U.UF.UI.form(
  3891. "训练平台",
  3892. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3893. "id": "train",
  3894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3895. "onresize": function () { }
  3896. }, {
  3897. closecallback: function () { }
  3898. }, { "style": { "height": "36px" } }).form; //创建窗体
  3899. _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); } }
  3900. break;
  3901. case "mindNetwork": //好友打开
  3902. _formdiv = new U.UF.UI.form(
  3903. "思维网格",
  3904. $$("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 }), {
  3905. "id": "mindNetwork",
  3906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3907. "onresize": function () { }
  3908. }, {
  3909. closecallback: function () { }
  3910. }, { "style": { "height": "36px" } }).form; //创建窗体
  3911. _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); } }
  3912. break;
  3913. case "studentClassRoom": //好友打开
  3914. _formdiv = new U.UF.UI.form(
  3915. "实时课堂",
  3916. $$("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 }), {
  3917. "id": "studentClassRoom",
  3918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3919. "onresize": function () { }
  3920. }, {
  3921. closecallback: function () { }
  3922. }, { "style": { "height": "36px" } }).form; //创建窗体
  3923. _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); } }
  3924. setTimeout(() => {
  3925. U.UF.F.windowZooming(_formdiv)
  3926. }, 0);
  3927. break;
  3928. }
  3929. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3930. switch (str) {
  3931. case "studnetProject": //好友打开
  3932. _formdiv = new U.UF.UI.form(
  3933. "我的项目",
  3934. $$("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 }), {
  3935. "id": "studnetProject",
  3936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _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); } }
  3942. break;
  3943. case "studentEvaluate": //好友打开
  3944. _formdiv = new U.UF.UI.form(
  3945. "我的评价",
  3946. $$("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 }), {
  3947. "id": "studentEvaluate",
  3948. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. _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); } }
  3954. break;
  3955. case "my":
  3956. _formdiv = new U.UF.UI.form(
  3957. "我的资料",
  3958. $$("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 }), {
  3959. "id": "my",
  3960. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. _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); } }
  3966. break;
  3967. case "program":
  3968. _formdiv = new U.UF.UI.form(
  3969. "编程平台",
  3970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3971. "id": "program",
  3972. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3973. "onresize": function () { }
  3974. }, {
  3975. closecallback: function () { }
  3976. }, { "style": { "height": "36px" } }).form; //创建窗体
  3977. _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); } }
  3978. break;
  3979. case "library":
  3980. _formdiv = new U.UF.UI.form(
  3981. "素材库",
  3982. $$("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 }), {
  3983. "id": "library",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. _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); } }
  3990. break;
  3991. case "whiteboard":
  3992. _formdiv = new U.UF.UI.form(
  3993. "电子白板",
  3994. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3995. "id": "whiteboard",
  3996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3997. "onresize": function () { }
  3998. }, {
  3999. closecallback: function () { }
  4000. }, { "style": { "height": "36px" } }).form; //创建窗体
  4001. _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); } }
  4002. break;
  4003. case "investigation":
  4004. _formdiv = new U.UF.UI.form(
  4005. "问卷调查",
  4006. $$("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 }), {
  4007. "id": "investigation",
  4008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4009. "onresize": function () { }
  4010. }, {
  4011. closecallback: function () { }
  4012. }, { "style": { "height": "36px" } }).form; //创建窗体
  4013. _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); } }
  4014. break;
  4015. case "note":
  4016. _formdiv = new U.UF.UI.form(
  4017. "便签分类",
  4018. $$("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 }), {
  4019. "id": "note",
  4020. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4021. "onresize": function () { }
  4022. }, {
  4023. closecallback: function () { }
  4024. }, { "style": { "height": "36px" } }).form; //创建窗体
  4025. _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); } }
  4026. break;
  4027. // case "score":
  4028. // _formdiv = new U.UF.UI.form(
  4029. // "量规评分",
  4030. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4031. // "id": "score",
  4032. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4033. // "onresize": function() {}
  4034. // }, {
  4035. // closecallback: function() {}
  4036. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. // _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); } }
  4038. // break;
  4039. case "mind":
  4040. _formdiv = new U.UF.UI.form(
  4041. "思维导图",
  4042. $$("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"
  4043. "id": "mind",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _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); } }
  4050. break;
  4051. case "doc":
  4052. // U.MD.D.I.isRoom();
  4053. _formdiv = new U.UF.UI.form(
  4054. "协同文档",
  4055. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4056. "id": "doc",
  4057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4058. "onresize": function () { }
  4059. }, {
  4060. closecallback: function () { }
  4061. }, { "style": { "height": "36px" } }).form; //创建窗体
  4062. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4063. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4064. })
  4065. _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); } }
  4066. break;
  4067. case "train": //好友打开
  4068. _formdiv = new U.UF.UI.form(
  4069. "训练平台",
  4070. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4071. "id": "train",
  4072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4073. "onresize": function () { }
  4074. }, {
  4075. closecallback: function () { }
  4076. }, { "style": { "height": "36px" } }).form; //创建窗体
  4077. _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); } }
  4078. break;
  4079. case "studentStudy":
  4080. _formdiv = new U.UF.UI.form(
  4081. "课程中心",
  4082. $$("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
  4083. "id": "studentStudy",
  4084. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4090. break;
  4091. case "mindNetwork": //好友打开
  4092. _formdiv = new U.UF.UI.form(
  4093. "思维网格",
  4094. $$("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 }), {
  4095. "id": "mindNetwork",
  4096. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4102. break;
  4103. case "studentClassRoom": //好友打开
  4104. _formdiv = new U.UF.UI.form(
  4105. "实时课堂",
  4106. $$("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 }), {
  4107. "id": "studentClassRoom",
  4108. "style": { "width": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4114. setTimeout(() => {
  4115. U.UF.F.windowZooming(_formdiv)
  4116. }, 0);
  4117. break;
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4120. //选择应用处理
  4121. switch (str) {
  4122. case "project": //好友打开
  4123. _formdiv = new U.UF.UI.form(
  4124. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4125. $$("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 }), {
  4126. "id": "project",
  4127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4128. "onresize": function () { }
  4129. }, {
  4130. closecallback: function () { }
  4131. }, { "style": { "height": "36px" } }).form; //创建窗体
  4132. _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); } }
  4133. break;
  4134. case "student":
  4135. _formdiv = new U.UF.UI.form(
  4136. "学生管理",
  4137. $$("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 }), {
  4138. "id": "student",
  4139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4140. "onresize": function () { }
  4141. }, {
  4142. closecallback: function () { }
  4143. }, { "style": { "height": "36px" } }).form; //创建窗体
  4144. _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); } }
  4145. break;
  4146. case "evaluate":
  4147. _formdiv = new U.UF.UI.form(
  4148. "学生评价",
  4149. $$("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 }), {
  4150. "id": "evaluate",
  4151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _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); } }
  4157. break;
  4158. case "sys":
  4159. _formdiv = new U.UF.UI.form(
  4160. "目标管理",
  4161. $$("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 }), {
  4162. "id": "sys",
  4163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. _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); } }
  4169. break;
  4170. case "courseDesign":
  4171. _formdiv = new U.UF.UI.form(
  4172. "项目设计",
  4173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4174. "id": "courseDesign",
  4175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4176. "onresize": function () { }
  4177. }, {
  4178. closecallback: function () { }
  4179. }, { "style": { "height": "36px" } }).form; //创建窗体
  4180. _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); } }
  4181. break;
  4182. case "program":
  4183. _formdiv = new U.UF.UI.form(
  4184. "编程平台",
  4185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4186. "id": "program",
  4187. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _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); } }
  4193. break;
  4194. case "class":
  4195. _formdiv = new U.UF.UI.form(
  4196. "班级管理",
  4197. $$("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 }), {
  4198. "id": "class",
  4199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4200. "onresize": function () { }
  4201. }, {
  4202. closecallback: function () { }
  4203. }, { "style": { "height": "36px" } }).form; //创建窗体
  4204. _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); } }
  4205. break;
  4206. case "Grade":
  4207. _formdiv = new U.UF.UI.form(
  4208. "年级管理",
  4209. $$("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 }), {
  4210. "id": "Grade",
  4211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4212. "onresize": function () { }
  4213. }, {
  4214. closecallback: function () { }
  4215. }, { "style": { "height": "36px" } }).form; //创建窗体
  4216. _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); } }
  4217. break;
  4218. case "teacherOffice":
  4219. _formdiv = new U.UF.UI.form(
  4220. "教研室",
  4221. $$("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 }), {
  4222. "id": "teacherOffice",
  4223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _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); } }
  4229. break;
  4230. case "my":
  4231. _formdiv = new U.UF.UI.form(
  4232. "我的资料",
  4233. $$("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 }), {
  4234. "id": "my",
  4235. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4236. "onresize": function () { }
  4237. }, {
  4238. closecallback: function () { }
  4239. }, { "style": { "height": "36px" } }).form; //创建窗体
  4240. _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); } }
  4241. break;
  4242. case "notice":
  4243. _formdiv = new U.UF.UI.form(
  4244. "通知公告",
  4245. $$("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 }), {
  4246. "id": "notice",
  4247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4248. "onresize": function () { }
  4249. }, {
  4250. closecallback: function () { }
  4251. }, { "style": { "height": "36px" } }).form; //创建窗体
  4252. _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); } }
  4253. break;
  4254. case "library":
  4255. _formdiv = new U.UF.UI.form(
  4256. "素材库",
  4257. $$("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 }), {
  4258. "id": "library",
  4259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4260. "onresize": function () { }
  4261. }, {
  4262. closecallback: function () { }
  4263. }, { "style": { "height": "36px" } }).form; //创建窗体
  4264. _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); } }
  4265. break;
  4266. case "whiteboard":
  4267. _formdiv = new U.UF.UI.form(
  4268. "电子白板",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4270. "id": "whiteboard",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. _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); } }
  4277. break;
  4278. case "investigation":
  4279. _formdiv = new U.UF.UI.form(
  4280. "问卷调查",
  4281. $$("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 }), {
  4282. "id": "investigation",
  4283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4284. "onresize": function () { }
  4285. }, {
  4286. closecallback: function () { }
  4287. }, { "style": { "height": "36px" } }).form; //创建窗体
  4288. _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); } }
  4289. break;
  4290. case "note":
  4291. _formdiv = new U.UF.UI.form(
  4292. "便签分类",
  4293. $$("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 }), {
  4294. "id": "note",
  4295. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4296. "onresize": function () { }
  4297. }, {
  4298. closecallback: function () { }
  4299. }, { "style": { "height": "36px" } }).form; //创建窗体
  4300. _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); } }
  4301. break;
  4302. // case "score":
  4303. // _formdiv = new U.UF.UI.form(
  4304. // "量规评分",
  4305. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4306. // "id": "score",
  4307. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4308. // "onresize": function() {}
  4309. // }, {
  4310. // closecallback: function() {}
  4311. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4312. // _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); } }
  4313. // break;
  4314. case "mind":
  4315. _formdiv = new U.UF.UI.form(
  4316. "思维导图",
  4317. $$("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"
  4318. "id": "mind",
  4319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4320. "onresize": function () { }
  4321. }, {
  4322. closecallback: function () { }
  4323. }, { "style": { "height": "36px" } }).form; //创建窗体
  4324. _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); } }
  4325. break;
  4326. case "doc":
  4327. // U.MD.D.I.isRoom();
  4328. _formdiv = new U.UF.UI.form(
  4329. "协同文档",
  4330. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4331. "id": "doc",
  4332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4333. "onresize": function () { }
  4334. }, {
  4335. closecallback: function () { }
  4336. }, { "style": { "height": "36px" } }).form; //创建窗体
  4337. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4338. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4339. })
  4340. _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); } }
  4341. break;
  4342. case "study":
  4343. _formdiv = new U.UF.UI.form(
  4344. "课程中心",
  4345. $$("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
  4346. "id": "study",
  4347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4348. "onresize": function () { }
  4349. }, {
  4350. closecallback: function () { }
  4351. }, { "style": { "height": "36px" } }).form; //创建窗体
  4352. _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); } }
  4353. break;
  4354. case "mindNetwork": //好友打开
  4355. _formdiv = new U.UF.UI.form(
  4356. "思维网格",
  4357. $$("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 }), {
  4358. "id": "mindNetwork",
  4359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4360. "onresize": function () { }
  4361. }, {
  4362. closecallback: function () { }
  4363. }, { "style": { "height": "36px" } }).form; //创建窗体
  4364. _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); } }
  4365. break;
  4366. case "train": //好友打开
  4367. _formdiv = new U.UF.UI.form(
  4368. "训练平台",
  4369. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4370. "id": "mindNetwork",
  4371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4372. "onresize": function () { }
  4373. }, {
  4374. closecallback: function () { }
  4375. }, { "style": { "height": "36px" } }).form; //创建窗体
  4376. _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); } }
  4377. break;
  4378. case "teacherClassRoom": //好友打开
  4379. _formdiv = new U.UF.UI.form(
  4380. "实时课堂",
  4381. $$("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 }), {
  4382. "id": "teacherClassRoom",
  4383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4384. "onresize": function () { }
  4385. }, {
  4386. closecallback: function () { }
  4387. }, { "style": { "height": "36px" } }).form; //创建窗体
  4388. _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); } }
  4389. setTimeout(() => {
  4390. U.UF.F.windowZooming(_formdiv)
  4391. }, 0);
  4392. break;
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4395. switch (str) {
  4396. case "project": //好友打开
  4397. _formdiv = new U.UF.UI.form(
  4398. "课程管理",
  4399. $$("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 }), {
  4400. "id": "project",
  4401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4402. "onresize": function () { }
  4403. }, {
  4404. closecallback: function () { }
  4405. }, { "style": { "height": "36px" } }).form; //创建窗体
  4406. _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); } }
  4407. break;
  4408. case "evaluate":
  4409. _formdiv = new U.UF.UI.form(
  4410. "学生评价",
  4411. $$("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 }), {
  4412. "id": "evaluate",
  4413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4414. "onresize": function () { }
  4415. }, {
  4416. closecallback: function () { }
  4417. }, { "style": { "height": "36px" } }).form; //创建窗体
  4418. _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); } }
  4419. break;
  4420. case "notice":
  4421. _formdiv = new U.UF.UI.form(
  4422. "通知公告",
  4423. $$("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 }), {
  4424. "id": "notice",
  4425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4426. "onresize": function () { }
  4427. }, {
  4428. closecallback: function () { }
  4429. }, { "style": { "height": "36px" } }).form; //创建窗体
  4430. _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); } }
  4431. break;
  4432. case "stuLibrary":
  4433. _formdiv = new U.UF.UI.form(
  4434. "学习资料",
  4435. $$("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 }), {
  4436. "id": "stuLibrary",
  4437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4438. "onresize": function () { }
  4439. }, {
  4440. closecallback: function () { }
  4441. }, { "style": { "height": "36px" } }).form; //创建窗体
  4442. _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); } }
  4443. break;
  4444. case "program":
  4445. _formdiv = new U.UF.UI.form(
  4446. "编程平台",
  4447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4448. "id": "program",
  4449. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4450. "onresize": function () { }
  4451. }, {
  4452. closecallback: function () { }
  4453. }, { "style": { "height": "36px" } }).form; //创建窗体
  4454. _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); } }
  4455. break;
  4456. case "whiteboard":
  4457. _formdiv = new U.UF.UI.form(
  4458. "电子白板",
  4459. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4460. "id": "whiteboard",
  4461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4462. "onresize": function () { }
  4463. }, {
  4464. closecallback: function () { }
  4465. }, { "style": { "height": "36px" } }).form; //创建窗体
  4466. _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); } }
  4467. break;
  4468. case "investigation":
  4469. _formdiv = new U.UF.UI.form(
  4470. "问卷调查",
  4471. $$("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 }), {
  4472. "id": "investigation",
  4473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4474. "onresize": function () { }
  4475. }, {
  4476. closecallback: function () { }
  4477. }, { "style": { "height": "36px" } }).form; //创建窗体
  4478. _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); } }
  4479. break;
  4480. case "mind":
  4481. _formdiv = new U.UF.UI.form(
  4482. "思维导图",
  4483. $$("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"
  4484. "id": "mind",
  4485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4486. "onresize": function () { }
  4487. }, {
  4488. closecallback: function () { }
  4489. }, { "style": { "height": "36px" } }).form; //创建窗体
  4490. _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); } }
  4491. break;
  4492. case "doc":
  4493. // U.MD.D.I.isRoom();
  4494. _formdiv = new U.UF.UI.form(
  4495. "协同文档",
  4496. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4497. "id": "doc",
  4498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4499. "onresize": function () { }
  4500. }, {
  4501. closecallback: function () { }
  4502. }, { "style": { "height": "36px" } }).form; //创建窗体
  4503. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4504. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4505. })
  4506. _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); } }
  4507. break;
  4508. case "study":
  4509. _formdiv = new U.UF.UI.form(
  4510. "课程中心",
  4511. $$("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
  4512. "id": "study",
  4513. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4519. break;
  4520. case "mindNetwork": //好友打开
  4521. _formdiv = new U.UF.UI.form(
  4522. "思维网格",
  4523. $$("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 }), {
  4524. "id": "mindNetwork",
  4525. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4531. break;
  4532. case "train": //好友打开
  4533. _formdiv = new U.UF.UI.form(
  4534. "训练平台",
  4535. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4536. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4543. break;
  4544. case "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4548. "id": "sys",
  4549. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4555. break;
  4556. case "courseDesign":
  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": "/course-design-vue" }), {
  4560. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4567. break;
  4568. }
  4569. } else if (!_type) {
  4570. switch (str) {
  4571. case "my":
  4572. _formdiv = new U.UF.UI.form(
  4573. "我的资料",
  4574. $$("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 }), {
  4575. "id": "my",
  4576. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. _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); } }
  4582. break;
  4583. }
  4584. }
  4585. switch (str) {
  4586. // AIprogram2 AI体验 aihub.cocorobo.cn
  4587. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4588. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4589. case "formulaEdi": //公式编辑
  4590. _formdiv = new U.UF.UI.form(
  4591. "公式编辑",
  4592. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4593. "id": "formulaEdi",
  4594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. _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); } }
  4600. break;
  4601. case "molStr": //分子结构
  4602. _formdiv = new U.UF.UI.form(
  4603. "分子结构",
  4604. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4605. "id": "molStr",
  4606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4607. "onresize": function () { }
  4608. }, {
  4609. closecallback: function () { }
  4610. }, { "style": { "height": "36px" } }).form; //创建窗体
  4611. _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); } }
  4612. break;
  4613. case "timeAxis": //时间轴
  4614. _formdiv = new U.UF.UI.form(
  4615. "时间轴",
  4616. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4617. "id": "timeAxis",
  4618. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4619. "onresize": function () { }
  4620. }, {
  4621. closecallback: function () { }
  4622. }, { "style": { "height": "36px" } }).form; //创建窗体
  4623. _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); } }
  4624. break;
  4625. case "AIprogram2": //AI体验
  4626. _formdiv = new U.UF.UI.form(
  4627. "AI体验",
  4628. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4629. "id": "AIprogram2",
  4630. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4631. "onresize": function () { }
  4632. }, {
  4633. closecallback: function () { }
  4634. }, { "style": { "height": "36px" } }).form; //创建窗体
  4635. _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); } }
  4636. break;
  4637. case "Pythonprogram": //python编程
  4638. _formdiv = new U.UF.UI.form(
  4639. "Python编程",
  4640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4641. "id": "Pythonprogram",
  4642. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4643. "onresize": function () { }
  4644. }, {
  4645. closecallback: function () { }
  4646. }, { "style": { "height": "36px" } }).form; //创建窗体
  4647. _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); } }
  4648. break;
  4649. case "AIprogram": //ai编程
  4650. _formdiv = new U.UF.UI.form(
  4651. "AI编程平台",
  4652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4653. "id": "AIprogram",
  4654. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4655. "onresize": function () { }
  4656. }, {
  4657. closecallback: function () { }
  4658. }, { "style": { "height": "36px" } }).form; //创建窗体
  4659. _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); } }
  4660. break;
  4661. case "CocoPi": //CocoPi
  4662. _formdiv = new U.UF.UI.form(
  4663. "CocoPi",
  4664. $$("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" }), {
  4665. "id": "CocoPi",
  4666. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //创建窗体
  4671. _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); } }
  4672. break;
  4673. case "Wood": //Wood
  4674. _formdiv = new U.UF.UI.form(
  4675. "海龟编程",
  4676. $$("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/" }), {
  4677. "id": "Wood",
  4678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4679. "onresize": function () { }
  4680. }, {
  4681. closecallback: function () { }
  4682. }, { "style": { "height": "36px" } }).form; //创建窗体
  4683. _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); } }
  4684. break;
  4685. case "car": //模拟驾驶
  4686. _formdiv = new U.UF.UI.form(
  4687. "模拟驾驶",
  4688. $$("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/" }), {
  4689. "id": "car",
  4690. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4691. "onresize": function () { }
  4692. }, {
  4693. closecallback: function () { }
  4694. }, { "style": { "height": "36px" } }).form; //创建窗体
  4695. _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); } }
  4696. break;
  4697. case "lineSearch": //路径搜索
  4698. _formdiv = new U.UF.UI.form(
  4699. "路径搜索",
  4700. $$("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/" }), {
  4701. "id": "lineSearch",
  4702. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //创建窗体
  4707. _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); } }
  4708. break;
  4709. case "deepLearning": //深度学习
  4710. _formdiv = new U.UF.UI.form(
  4711. "深度学习",
  4712. $$("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/#" }), {
  4713. "id": "deepLearning",
  4714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4715. "onresize": function () { }
  4716. }, {
  4717. closecallback: function () { }
  4718. }, { "style": { "height": "36px" } }).form; //创建窗体
  4719. _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); } }
  4720. break;
  4721. case "allHistory": //深度学习
  4722. _formdiv = new U.UF.UI.form(
  4723. "全历史",
  4724. $$("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/" }), {
  4725. "id": "allHistory",
  4726. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4727. "onresize": function () { }
  4728. }, {
  4729. closecallback: function () { }
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _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); } }
  4732. break;
  4733. case "chatPDF": //ai编程
  4734. _formdiv = new U.UF.UI.form(
  4735. "chatPDF",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4737. "id": "chatPDF",
  4738. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. _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); } }
  4744. break;
  4745. case "resources": //国家教育
  4746. _formdiv = new U.UF.UI.form(
  4747. "国家教育",
  4748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4749. "id": "resources",
  4750. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4751. "onresize": function () { }
  4752. }, {
  4753. closecallback: function () { }
  4754. }, { "style": { "height": "36px" } }).form; //创建窗体
  4755. _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); } }
  4756. break;
  4757. case "codeEdit": //源码编辑
  4758. _formdiv = new U.UF.UI.form(
  4759. "源码编辑",
  4760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4761. "id": "codeEdit",
  4762. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break; //
  4769. case "MindMap": //MindMap
  4770. _formdiv = new U.UF.UI.form(
  4771. "MindMap",
  4772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4773. "id": "MindMap",
  4774. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4780. break;
  4781. case "netWorkPanel": //netWorkPanel
  4782. _formdiv = new U.UF.UI.form(
  4783. "netWorkPanel",
  4784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4785. "id": "netWorkPanel",
  4786. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "GeoGebra": //GeoGebra
  4794. _formdiv = new U.UF.UI.form(
  4795. "GeoGebra",
  4796. $$("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" }), {
  4797. "id": "GeoGebra",
  4798. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. break;
  4805. case "translation": //翻译
  4806. _formdiv = new U.UF.UI.form(
  4807. "翻译",
  4808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4809. "id": "translation",
  4810. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. case "mohe": //魔盒
  4818. _formdiv = new U.UF.UI.form(
  4819. "魔盒识字",
  4820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4821. "id": "mohe",
  4822. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. case "24game": //24点
  4830. _formdiv = new U.UF.UI.form(
  4831. "24点",
  4832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4833. "id": "24game",
  4834. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _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); } }
  4840. break;
  4841. case "case":
  4842. _formdiv = new U.UF.UI.form(
  4843. "课程进展",
  4844. $$("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 }), {
  4845. "id": "case",
  4846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. case "snf":
  4854. _formdiv = new U.UF.UI.form(
  4855. "赛诺梵",
  4856. $$("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" }), {
  4857. "id": "snf",
  4858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. case "hanFamily":
  4866. _formdiv = new U.UF.UI.form(
  4867. "汉字家族",
  4868. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4869. "id": "hanFamily",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _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); } }
  4876. break;
  4877. case "hanClassics":
  4878. _formdiv = new U.UF.UI.form(
  4879. "国学经典",
  4880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4881. "id": "hanClassics",
  4882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _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); } }
  4888. break;
  4889. case "hanTraining":
  4890. _formdiv = new U.UF.UI.form(
  4891. "笔画训练",
  4892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4893. "id": "hanTraining",
  4894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. case "hanClass":
  4902. _formdiv = new U.UF.UI.form(
  4903. "书法课堂",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4905. "id": "hanClass",
  4906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _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); } }
  4912. break;
  4913. case "han":
  4914. _formdiv = new U.UF.UI.form(
  4915. "汉字宫",
  4916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4917. "id": "han",
  4918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _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); } }
  4924. break;
  4925. case "projectGM": //课程管理
  4926. _formdiv = new U.UF.UI.form(
  4927. "课程管理",
  4928. $$("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 }), {
  4929. "id": "projectGM",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. case "studyGM": //课程中心
  4938. _formdiv = new U.UF.UI.form(
  4939. "课程中心",
  4940. $$("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
  4941. "id": "study",
  4942. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. _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); } }
  4948. break;
  4949. // studentGM
  4950. case "studentGM": //学生管理
  4951. _formdiv = new U.UF.UI.form(
  4952. "学生管理",
  4953. $$("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 }), {
  4954. "id": "studentGM",
  4955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4956. "onresize": function () { }
  4957. }, {
  4958. closecallback: function () { }
  4959. }, { "style": { "height": "36px" } }).form; //创建窗体
  4960. _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); } }
  4961. break;
  4962. case "evaluateGM": //学生评价
  4963. _formdiv = new U.UF.UI.form(
  4964. "学生评价",
  4965. $$("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 }), {
  4966. "id": "evaluateGM",
  4967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. closecallback: function () { }
  4971. }, { "style": { "height": "36px" } }).form; //创建窗体
  4972. _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); } }
  4973. break;
  4974. // classGM
  4975. case "classGM": //班级管理
  4976. _formdiv = new U.UF.UI.form(
  4977. "班级管理",
  4978. $$("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 }), {
  4979. "id": "classGM",
  4980. "style": { "width": "90%", "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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4986. break;
  4987. // dataGM
  4988. case "dataGM":
  4989. _formdiv = new U.UF.UI.form(
  4990. "我的资料",
  4991. $$("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 }), {
  4992. "id": "dataGM",
  4993. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4999. break;
  5000. // caseGM
  5001. case "caseGM": //课程进展
  5002. _formdiv = new U.UF.UI.form(
  5003. "课程进展",
  5004. $$("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 }), {
  5005. "id": "caseGM",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. _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); } }
  5012. break;
  5013. // meterialGM
  5014. case "meterialGM": //素材库
  5015. _formdiv = new U.UF.UI.form(
  5016. "素材库",
  5017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5018. "id": "meterialGM",
  5019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5025. break;
  5026. // evaluateSGM
  5027. case "evaluateSGM": //我的评价
  5028. _formdiv = new U.UF.UI.form(
  5029. "我的评价",
  5030. $$("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 }), {
  5031. "id": "evaluateSGM",
  5032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5033. "onresize": function () { }
  5034. }, {
  5035. closecallback: function () { }
  5036. }, { "style": { "height": "36px" } }).form; //创建窗体
  5037. _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); } }
  5038. break;
  5039. case "jupyter": //jupyter
  5040. _formdiv = new U.UF.UI.form(
  5041. "jupyter",
  5042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5043. "id": "jupyter",
  5044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. _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); } }
  5050. break;
  5051. case "number": //数字实验室
  5052. _formdiv = new U.UF.UI.form(
  5053. "数字实验室",
  5054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5055. "id": "number",
  5056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. _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); } }
  5062. break;
  5063. case "studentCourse": //项目管理 学生
  5064. _formdiv = new U.UF.UI.form(
  5065. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5066. $$("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 }), {
  5067. "id": "studentCourse",
  5068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. _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); } }
  5074. break;
  5075. case "studentCourseS": //项目管理 老师
  5076. _formdiv = new U.UF.UI.form(
  5077. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5078. $$("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 }), {
  5079. "id": "studentCourseS",
  5080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. _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); } }
  5086. break;
  5087. case "studentIndex": //项目中心
  5088. _formdiv = new U.UF.UI.form(
  5089. "项目中心",
  5090. $$("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 }), {
  5091. "id": "studentIndex",
  5092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. _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); } }
  5098. break;
  5099. case "CaseDesignS":
  5100. _formdiv = new U.UF.UI.form(
  5101. "项目进展",
  5102. $$("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 }), {
  5103. "id": "case",
  5104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. _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); } }
  5110. break;
  5111. case "tcStudent": //腾讯学生管理
  5112. _formdiv = new U.UF.UI.form(
  5113. "学生管理",
  5114. $$("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 }), {
  5115. "id": "tcStudent",
  5116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5117. "onresize": function () { }
  5118. }, {
  5119. closecallback: function () { }
  5120. }, { "style": { "height": "36px" } }).form; //创建窗体
  5121. _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); } }
  5122. break;
  5123. case "tcSchool": //腾讯学校管理
  5124. _formdiv = new U.UF.UI.form(
  5125. "学校管理",
  5126. $$("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 }), {
  5127. "id": "tcSchool",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. _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); } }
  5134. break;
  5135. case "tcTeacher": //腾讯学校管理
  5136. _formdiv = new U.UF.UI.form(
  5137. "教师管理",
  5138. $$("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 }), {
  5139. "id": "tcTeacher",
  5140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5141. "onresize": function () { }
  5142. }, {
  5143. closecallback: function () { }
  5144. }, { "style": { "height": "36px" } }).form; //创建窗体
  5145. _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); } }
  5146. break;
  5147. case "tcData": //腾讯我的资料
  5148. _formdiv = new U.UF.UI.form(
  5149. "我的资料",
  5150. $$("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 }), {
  5151. "id": "tcData",
  5152. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5153. "onresize": function () { }
  5154. }, {
  5155. closecallback: function () { }
  5156. }, { "style": { "height": "36px" } }).form; //创建窗体
  5157. _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); } }
  5158. break;
  5159. case "tcNotice": //腾讯消息通知
  5160. _formdiv = new U.UF.UI.form(
  5161. "消息通知",
  5162. $$("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 }), {
  5163. "id": "tcNotice",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. _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); } }
  5170. break;
  5171. case "myReport": //好友打开
  5172. _formdiv = new U.UF.UI.form(
  5173. "我的评价",
  5174. $$("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 }), {
  5175. "id": "myReport",
  5176. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _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); } }
  5182. break;
  5183. case "learnAna": //好友打开
  5184. _formdiv = new U.UF.UI.form(
  5185. "学习分析",
  5186. $$("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 }), {
  5187. "id": "learnAna",
  5188. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "AIChat": //AI共创
  5196. _formdiv = new U.UF.UI.form(
  5197. "AI共创",
  5198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5199. "id": "AIChat",
  5200. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. istop: true,
  5204. closecallback: function () { $("#aichat_icon").remove(); },
  5205. narrowcallback: function () {
  5206. if (!$("#aichat_icon")[0]) {
  5207. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5208. }
  5209. },
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _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); } }
  5212. break;
  5213. case "ainew": //AI共创
  5214. _formdiv = new U.UF.UI.form(
  5215. "AI协同",
  5216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5217. "id": "ainew",
  5218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. _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); } }
  5224. break;
  5225. case "gpt4": //gpt4
  5226. _formdiv = new U.UF.UI.form(
  5227. "AI助手",
  5228. $$("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 }), {
  5229. "id": "gpt4",
  5230. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. _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); } }
  5236. break;
  5237. case "aigpt": //gpt4
  5238. _formdiv = new U.UF.UI.form(
  5239. "AI助手+",
  5240. $$("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 }), {
  5241. "id": "aigpt",
  5242. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "futureClass": //AI共创
  5250. _formdiv = new U.UF.UI.form(
  5251. "协同建构",
  5252. $$("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
  5253. "id": "synergyCourse",
  5254. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () {
  5258. $("iframe", _formdiv)[0].contentWindow.loginout();
  5259. }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. _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); } }
  5262. break;
  5263. case "aiagent": //ai agent
  5264. _formdiv = new U.UF.UI.form(
  5265. "AI Agent",
  5266. $$("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" }), {
  5267. "id": "AIAgent",
  5268. "style": { "width": "100%", "height": "100%", "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/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5274. break;
  5275. case "dataBoard": //数据看板
  5276. _formdiv = new U.UF.UI.form(
  5277. "数据看板",
  5278. $$("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 }), {
  5279. "id": "dataBoard",
  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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5286. break;
  5287. case "dataBoardSies": //数据融合
  5288. _formdiv = new U.UF.UI.form(
  5289. "数据融合",
  5290. $$("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 }), {
  5291. "id": "dataBoardSies",
  5292. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5293. "onresize": function () { }
  5294. }, {
  5295. closecallback: function () { }
  5296. }, { "style": { "height": "36px" } }).form; //创建窗体
  5297. _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); } }
  5298. break;
  5299. case "dataBoardNew": //数据看板
  5300. _formdiv = new U.UF.UI.form(
  5301. "综合看板",
  5302. $$("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 }), {
  5303. "id": "dataBoardNew",
  5304. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. _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); } }
  5310. break;
  5311. case "dataBoardTest": //数据看板
  5312. _formdiv = new U.UF.UI.form(
  5313. "评测看板",
  5314. $$("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 }), {
  5315. "id": "dataBoardTest",
  5316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //创建窗体
  5321. _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); } }
  5322. break;
  5323. case "AIAnalyse": //AI共创
  5324. _formdiv = new U.UF.UI.form(
  5325. "AI分析",
  5326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5327. "id": "AIAnalyse",
  5328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5329. "onresize": function () { }
  5330. }, {
  5331. closecallback: function () { }
  5332. }, { "style": { "height": "36px" } }).form; //创建窗体
  5333. _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); } }
  5334. break;
  5335. case "studioCourse": //AI共创
  5336. _formdiv = new U.UF.UI.form(
  5337. "工作管理",
  5338. $$("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 }), {
  5339. "id": "studioCourse",
  5340. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. case "studioIndex": //AI共创
  5348. _formdiv = new U.UF.UI.form(
  5349. "工作中心",
  5350. $$("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 }), {
  5351. "id": "studioIndex",
  5352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. case "source":
  5360. _formdiv = new U.UF.UI.form(
  5361. "教学资源",
  5362. $$("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 }), {
  5363. "id": "source",
  5364. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. case "testTeacher":
  5372. _formdiv = new U.UF.UI.form(
  5373. "教师管理",
  5374. $$("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 }), {
  5375. "id": "testTeacher",
  5376. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. _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); } }
  5382. break;
  5383. case "testStudent":
  5384. _formdiv = new U.UF.UI.form(
  5385. "教师中心",
  5386. $$("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 }), {
  5387. "id": "testStudent",
  5388. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "testTeacherSies":
  5396. _formdiv = new U.UF.UI.form(
  5397. "教师管理",
  5398. $$("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 }), {
  5399. "id": "testTeacherSies",
  5400. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. _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); } }
  5406. break;
  5407. case "testStudentSies":
  5408. _formdiv = new U.UF.UI.form(
  5409. "教师中心",
  5410. $$("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 }), {
  5411. "id": "testStudentSies",
  5412. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. _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); } }
  5418. break;
  5419. case "ytpbl": //消息通知
  5420. _formdiv = new U.UF.UI.form(
  5421. "案例征集",
  5422. $$("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 }), {
  5423. "id": "ytpbl",
  5424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. _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); } }
  5430. // 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");
  5431. break;
  5432. case "aiCourseResource": //人工智能窗体
  5433. _formdiv = new U.UF.UI.form(
  5434. false,
  5435. $$("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 }), {
  5436. "id": "aiCourseResource",
  5437. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5438. "onresize": function () { },
  5439. "isdrag": false,
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _taskbar = ''
  5444. break;
  5445. case "szdjgCocooroboX": //图形化编程
  5446. _formdiv = new U.UF.UI.form(
  5447. "图形化编程",
  5448. $$("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" }), {
  5449. "id": "szdjgCocooroboX",
  5450. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _taskbar = ''
  5456. break;
  5457. case "szdjgPython": //python编程
  5458. _formdiv = new U.UF.UI.form(
  5459. "Python编程",
  5460. $$("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" }), {
  5461. "id": "szdjgPython",
  5462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _taskbar = ''
  5468. break;
  5469. case "Record":
  5470. _formdiv = new U.UF.UI.form(
  5471. "观察记录",
  5472. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5473. "id": "Record",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5480. break;
  5481. case "aigptCourse":
  5482. _formdiv = new U.UF.UI.form(
  5483. "AI智能体",
  5484. $$("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' }), {
  5485. "id": "aigptCourse",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. case "classroomObservation":
  5494. _formdiv = new U.UF.UI.form(
  5495. "课堂观察",
  5496. $$("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 }), {
  5497. "id": "classroomObservation",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5504. break;
  5505. case "pblCourse":
  5506. _formdiv = new U.UF.UI.form(
  5507. "学生PBL",
  5508. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/pblCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5509. "id": "pblCourse",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5516. break;
  5517. }
  5518. //U.MD.D.I.openClick(str);
  5519. //如果有任务栏信息
  5520. if (_taskbar) {
  5521. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5522. }
  5523. }
  5524. // U.MD.D.I.openClick = function(str){
  5525. // var click = '';
  5526. // switch(str){
  5527. // case 'friend':
  5528. // click = '我的好友';
  5529. // break;
  5530. // case 'domain':
  5531. // click = '域名管理';
  5532. // break;
  5533. // case 'disk':
  5534. // click = '我的云盘';
  5535. // break;
  5536. // case 'word':
  5537. // click = 'Word';
  5538. // break;
  5539. // case 'excel':
  5540. // click = 'Execl';
  5541. // break;
  5542. // case 'txt':
  5543. // click = '文本文件';
  5544. // break;
  5545. // case 'lookupFriend':
  5546. // click = '查找好友';
  5547. // break;
  5548. // case 'ftp':
  5549. // click = 'FTP';
  5550. // break;
  5551. // case 'group':
  5552. // click = '群组';
  5553. // break;
  5554. // case 'set':
  5555. // click = '我的设置';
  5556. // break;
  5557. // case 'systemSet':
  5558. // click = '系统设置';
  5559. // break;
  5560. // case 'boomYun':
  5561. // click = '互联办公';
  5562. // break;
  5563. // case 'xz':
  5564. // click = '云端下载';
  5565. // break;
  5566. // case 'client':
  5567. // click = '有思浏览器';
  5568. // break;
  5569. // case 'backEndProgramming':
  5570. // click = '在线后台编程';
  5571. // break;
  5572. // case 'frontEndProgramming':
  5573. // click = '在线前端编程';
  5574. // break;
  5575. // default: break;
  5576. // }
  5577. // if(U.MD.D.I.Ip && click){
  5578. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5579. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5580. // })
  5581. // }
  5582. // }
  5583. /**
  5584. *函数作用:ajax简易函数,使用post格式
  5585. *@param url {data} 后台地址
  5586. *@param data {data} 参数json
  5587. *@param fn {data} 回调函数
  5588. *
  5589. */
  5590. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5591. // var xhr = new XMLHttpRequest();
  5592. // xhr.open("GET",url,true);
  5593. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5594. // xhr.onreadystatechange = function(){
  5595. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5596. // fn.call(this,xhr.responseText);
  5597. // }
  5598. // };
  5599. // xhr.send();
  5600. // }
  5601. /*判断是否是内网IP*/
  5602. // U.MD.D.I.isInnerIPFn = function(str){
  5603. // var curPageUrl = str;
  5604. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5605. // curPageUrl =curPageUrl.replace(reg1,'');
  5606. // // console.log('curPageUrl-1 '+curPageUrl);
  5607. // var reg2 = /\:+/g;//替换冒号为一点
  5608. // curPageUrl =curPageUrl.replace(reg2,'.');
  5609. // // console.log('curPageUrl-2 '+curPageUrl);
  5610. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5611. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5612. // if(curPageUrl[2] != '16'){
  5613. // return ipAddress;
  5614. // }else{
  5615. // return false;
  5616. // }
  5617. // }
  5618. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5619. // //compatibility for firefox and chrome
  5620. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5621. // var pc = new myPeerConnection({
  5622. // iceServers: []
  5623. // }),
  5624. // noop = function() {},
  5625. // localIPs = {},
  5626. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5627. // key;
  5628. // function iterateIP(ip) {
  5629. // if (!localIPs[ip]) onNewIP(ip);
  5630. // localIPs[ip] = true;
  5631. // }
  5632. // //create a bogus data channel
  5633. // pc.createDataChannel("");
  5634. // // create offer and set local description
  5635. // pc.createOffer().then(function(sdp) {
  5636. // sdp.sdp.split('\n').forEach(function(line) {
  5637. // if (line.indexOf('candidate') < 0) return;
  5638. // line.match(ipRegex).forEach(iterateIP);
  5639. // });
  5640. // pc.setLocalDescription(sdp, noop, noop);
  5641. // }).catch(function(reason) {
  5642. // // An error occurred, so handle the failure to connect
  5643. // });
  5644. // //sten for candidate events
  5645. // pc.onicecandidate = function(ice) {
  5646. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5647. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5648. // };
  5649. // }
  5650. // U.MD.D.I.getUserIpBool = function(callback){
  5651. // U.MD.D.I.getUserIP(function(ip){
  5652. // alert("Got IP! :" + ip);
  5653. // });
  5654. //}
  5655. //#endregion
  5656. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5657. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5658. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5659. _userinfo = US.userInfo, //登录用户信息
  5660. _userid = US.userInfo.userid //登录用户id
  5661. let _iframe;
  5662. let _cid = cid,
  5663. _stage = stage,
  5664. _task = task,
  5665. _tool = tool;
  5666. var _jie = $$("div", {
  5667. "style": {
  5668. "position": "absolute",
  5669. "bottom": "50px",
  5670. "right": "50px",
  5671. "zIndex": "9999",
  5672. "backgroundColor": "#2268bc",
  5673. "color": "#fff",
  5674. "padding": "12px 20px",
  5675. "cursor": "pointer",
  5676. "borderRadius": "4px",
  5677. },
  5678. "innerHTML": "提交作业"
  5679. })
  5680. let aTool = ''
  5681. let _loading = document.createElement('div')
  5682. _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;"
  5683. // _loading.id = "";
  5684. let _lchild = document.createElement('div')
  5685. let _limg = document.createElement('img')
  5686. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5687. _limg.style = "width: 26px;margin-right: 10px;"
  5688. _lchild.appendChild(_limg)
  5689. let _lspan = document.createElement('span')
  5690. _lspan.innerHTML = "上传中..."
  5691. _lchild.appendChild(_lspan)
  5692. _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%);"
  5693. _loading.appendChild(_lchild)
  5694. var _box = $$('div', {
  5695. "style": {
  5696. "position": "relative",
  5697. "width": "100%",
  5698. "height": "100%",
  5699. },
  5700. })
  5701. _box.appendChild(_loading)
  5702. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5703. switch (str) {
  5704. case "whiteboard":
  5705. aTool = 1;
  5706. _iframe = $$("iframe", {
  5707. "frameborder": "no",
  5708. "border": "0",
  5709. "scrolling ": "no",
  5710. "style": {
  5711. "cssText": "border:0;width:100%;height:100%"
  5712. },
  5713. "src": "https://beta.iwb.cocorobo.cn/"
  5714. })
  5715. _box.appendChild(_iframe);
  5716. _box.appendChild(_jie);
  5717. _formdiv = new U.UF.UI.form(
  5718. "电子白板",
  5719. _box, {
  5720. "id": "whiteboard" + cid + stage + task + tool,
  5721. "style": {
  5722. "width": "90%",
  5723. "height": "90%",
  5724. "overflow": 'hidden'
  5725. },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, {
  5730. "style": {
  5731. "height": "36px"
  5732. }
  5733. }).form; //创建窗体
  5734. _taskbar = {
  5735. "id": str + _formdiv.id,
  5736. "style": {
  5737. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5738. },
  5739. "name": "电子白板",
  5740. "forms": _formdiv,
  5741. "click": function () {
  5742. U.MD.D.I.openApplication(str, obj, info);
  5743. }
  5744. }
  5745. break;
  5746. case "mind":
  5747. aTool = 3;
  5748. _iframe = $$("iframe", {
  5749. "frameborder": "no",
  5750. "border": "0",
  5751. "scrolling ": "no",
  5752. "style": {
  5753. "cssText": "border:0;width:100%;height:100%"
  5754. },
  5755. "src": "/kityminder-editor/dist/index.html"
  5756. })
  5757. _box.appendChild(_iframe);
  5758. _box.appendChild(_jie);
  5759. _formdiv = new U.UF.UI.form(
  5760. "思维导图",
  5761. _box, { //"/jsmind/example/demo.html"
  5762. "id": "mind" + cid + stage + task + tool,
  5763. "style": {
  5764. "width": "90%",
  5765. "height": "90%",
  5766. "overflow": 'hidden'
  5767. },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, {
  5772. "style": {
  5773. "height": "36px"
  5774. }
  5775. }).form; //创建窗体
  5776. _taskbar = {
  5777. "id": str + _formdiv.id,
  5778. "style": {
  5779. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5780. },
  5781. "name": "思维导图",
  5782. "forms": _formdiv,
  5783. "click": function () {
  5784. U.MD.D.I.openApplication(str, obj, info);
  5785. }
  5786. }
  5787. break;
  5788. case "MindMap":
  5789. aTool = 3;
  5790. _iframe = $$("iframe", {
  5791. "frameborder": "no",
  5792. "border": "0",
  5793. "scrolling ": "no",
  5794. "style": {
  5795. "cssText": "border:0;width:100%;height:100%"
  5796. },
  5797. "src": "//cloud.cocorobo.cn/mind/"
  5798. })
  5799. _box.appendChild(_iframe);
  5800. _box.appendChild(_jie);
  5801. _formdiv = new U.UF.UI.form(
  5802. "思维导图",
  5803. _box, { //"/jsmind/example/demo.html"
  5804. "id": "mind" + cid + stage + task + tool,
  5805. "style": {
  5806. "width": "90%",
  5807. "height": "90%",
  5808. "overflow": 'hidden'
  5809. },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, {
  5814. "style": {
  5815. "height": "36px"
  5816. }
  5817. }).form; //创建窗体
  5818. _taskbar = {
  5819. "id": str + _formdiv.id,
  5820. "style": {
  5821. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5822. },
  5823. "name": "思维导图",
  5824. "forms": _formdiv,
  5825. "click": function () {
  5826. U.MD.D.I.openApplication(str, obj, info);
  5827. }
  5828. }
  5829. break;
  5830. case "doc":
  5831. aTool = 6;
  5832. _iframe = $$("iframe", {
  5833. "frameborder": "no",
  5834. "border": "0",
  5835. "scrolling ": "no",
  5836. "style": {
  5837. "cssText": "border:0;width:100%;height:100%"
  5838. },
  5839. "src": "/Office/Word/WordEditArea.htm"
  5840. })
  5841. _box.appendChild(_iframe);
  5842. _box.appendChild(_jie);
  5843. _formdiv = new U.UF.UI.form(
  5844. "协同文档",
  5845. _box, {
  5846. "id": "doc" + cid + stage + task + tool,
  5847. "style": {
  5848. "width": "90%",
  5849. "height": "90%",
  5850. "overflow": 'hidden'
  5851. },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, {
  5856. "style": {
  5857. "height": "36px"
  5858. }
  5859. }).form; //创建窗体
  5860. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5861. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5862. })
  5863. _taskbar = {
  5864. "id": str + _formdiv.id,
  5865. "style": {
  5866. "backgroundImage": "url(/img/icon/doc.png)"
  5867. },
  5868. "name": "协同文档",
  5869. "forms": _formdiv,
  5870. "click": function () {
  5871. U.MD.D.I.openApplication(str, obj, info);
  5872. }
  5873. }
  5874. break;
  5875. case "mindNetwork": //好友打开
  5876. aTool = 7;
  5877. _iframe = $$("iframe", {
  5878. "webkitallowfullscreen": "",
  5879. "mozallowfullscreen": "",
  5880. "allowfullscreen": "",
  5881. "frameborder": "no",
  5882. "border": "0",
  5883. "scrolling ": "no",
  5884. "style": {
  5885. "cssText": "border:0; width:100%; height:100%;"
  5886. },
  5887. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5888. })
  5889. _box.appendChild(_iframe);
  5890. _box.appendChild(_jie);
  5891. _formdiv = new U.UF.UI.form(
  5892. "思维网格",
  5893. _box, {
  5894. "id": "mindNetwork" + cid + stage + task + tool,
  5895. "style": {
  5896. "width": "90%",
  5897. "height": "90%",
  5898. "overflow": 'hidden'
  5899. },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, {
  5904. "style": {
  5905. "height": "36px"
  5906. }
  5907. }).form; //创建窗体
  5908. _taskbar = {
  5909. "id": str + _formdiv.id,
  5910. "style": {
  5911. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5912. },
  5913. "name": "思维网格",
  5914. "forms": _formdiv,
  5915. "click": function () {
  5916. U.MD.D.I.openApplication(str, obj, info);
  5917. }
  5918. }
  5919. break;
  5920. case "courseDesign":
  5921. _iframe = $$("iframe", {
  5922. "webkitallowfullscreen": "",
  5923. "mozallowfullscreen": "",
  5924. "allowfullscreen": "",
  5925. "frameborder": "no",
  5926. "border": "0",
  5927. "scrolling ": "no",
  5928. "style": {
  5929. "cssText": "border:0; width:100%; height:100%;"
  5930. },
  5931. "src": "/course-design-vue"
  5932. })
  5933. _box.appendChild(_iframe);
  5934. _box.appendChild(_jie);
  5935. _formdiv = new U.UF.UI.form(
  5936. "项目设计",
  5937. _box, {
  5938. "id": "courseDesign" + cid + stage + task + tool,
  5939. "style": {
  5940. "width": "90%",
  5941. "height": "90%",
  5942. "overflow": 'hidden'
  5943. },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, {
  5948. "style": {
  5949. "height": "36px"
  5950. }
  5951. }).form; //创建窗体
  5952. _taskbar = {
  5953. "id": str + _formdiv.id,
  5954. "style": {
  5955. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5956. },
  5957. "name": "项目设计",
  5958. "forms": _formdiv,
  5959. "click": function () {
  5960. U.MD.D.I.openApplication(str, obj, info);
  5961. }
  5962. }
  5963. break;
  5964. }
  5965. const script1 = document.createElement("script");
  5966. script1.type = "text/javascript";
  5967. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5968. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5969. const script2 = document.createElement("script");
  5970. script2.type = "text/javascript";
  5971. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5972. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5973. const script3 = document.createElement("script");
  5974. script3.type = "text/javascript";
  5975. script3.charset = "UTF-8";
  5976. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5977. const script4 = document.createElement("script");
  5978. script4.type = "text/javascript";
  5979. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5980. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5981. if (_iframe) {
  5982. if (str == 'doc') {
  5983. _iframe = _formdiv.querySelector('iframe')
  5984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5985. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5986. _iframe.contentWindow.document.body.appendChild(script1);
  5987. _iframe.contentWindow.document.body.appendChild(script2);
  5988. // _iframe.contentWindow.document.body.appendChild(script3);
  5989. _iframe.contentWindow.document.body.appendChild(script4);
  5990. })
  5991. if (onloadListener) {
  5992. _iframe.contentDocument.location.reload()
  5993. } else {
  5994. _iframe.contentDocument.location.reload()
  5995. }
  5996. } else if (str == 'courseDesign') {
  5997. U.UF.DL.iframeLoad(_iframe, function () {
  5998. // _iframe.contentWindow.U.MD.O.W.load();
  5999. // _iframe.contentWindow.document.body.appendChild(script1);
  6000. _iframe.contentWindow.document.body.appendChild(script2);
  6001. _iframe.contentWindow.document.body.appendChild(script4);
  6002. })
  6003. } else if (str == 'mind') {
  6004. _iframe = _formdiv.querySelector('iframe')
  6005. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6006. //
  6007. _iframe.contentWindow.document.body.appendChild(script1);
  6008. _iframe.contentWindow.document.body.appendChild(script2);
  6009. _iframe.contentWindow.document.body.appendChild(script4);
  6010. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6011. })
  6012. if (onloadListener) {
  6013. _iframe.contentDocument.location.reload()
  6014. } else {
  6015. _iframe.contentDocument.location.reload()
  6016. }
  6017. } else if (str == 'whiteboard') {
  6018. _iframe = _formdiv.querySelector('iframe')
  6019. let onloadListener = _iframe.onload = () => {
  6020. _iframe.contentWindow.document.body.appendChild(script1);
  6021. _iframe.contentWindow.document.body.appendChild(script2);
  6022. _iframe.contentWindow.document.body.appendChild(script4);
  6023. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6024. };
  6025. // if (onloadListener) {
  6026. // try {
  6027. // _iframe.src += "?cocorobo="+new Date().getTime()
  6028. // _iframe.contentWindow.document.location.reload()
  6029. // } catch (error) {
  6030. // }
  6031. // } else {
  6032. // _iframe.contentDocument.location.reload()
  6033. // }
  6034. } else {
  6035. _iframe.onload = () => {
  6036. _iframe.contentWindow.document.body.appendChild(script1);
  6037. _iframe.contentWindow.document.body.appendChild(script2);
  6038. // _iframe.contentWindow.document.body.appendChild(script3);
  6039. _iframe.contentWindow.document.body.appendChild(script4);
  6040. };
  6041. }
  6042. _jie.onclick = async () => {
  6043. let text = ''
  6044. if (aTool == 1) {
  6045. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6046. } else if (aTool == 6) {
  6047. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6048. } else if (aTool == 3) {
  6049. text = await U.MD.D.I.getEditorContent(_iframe);
  6050. }
  6051. _loading.style.display = 'flex'
  6052. console.log(_loading);
  6053. var _ajs = _iframe.contentWindow.document.createElement("script");
  6054. _ajs.type = "text/javascript";
  6055. _ajs.innerHTML =
  6056. // 'console.log(' + _loading + ');\n' +
  6057. 'var _js = document.createElement("script");\n' +
  6058. '_js.type="text/javascript";\n' +
  6059. '_js.charset="UTF-8";\n' +
  6060. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6061. "_js.onload = function(){\n" +
  6062. ' var a = document.getElementsByTagName("img")\n' +
  6063. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6064. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6065. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6066. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6067. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6068. "beforeUpload_shishi(file," +
  6069. "'" +
  6070. _userid +
  6071. "'" +
  6072. ", " +
  6073. "'" +
  6074. _cid +
  6075. "'" +
  6076. ", " +
  6077. "'" +
  6078. _stage +
  6079. "'" +
  6080. ", " +
  6081. "'" +
  6082. _task +
  6083. "'" +
  6084. ", " +
  6085. "'" +
  6086. _tool +
  6087. "'" +
  6088. ", " +
  6089. "'" +
  6090. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6091. "'" +
  6092. ", " +
  6093. "'" +
  6094. aTool +
  6095. "'" +
  6096. ", " +
  6097. "`" +
  6098. text +
  6099. "`" +
  6100. ")\n" +
  6101. " });\n" +
  6102. "}\n" +
  6103. "document.head.appendChild(_js);\n";
  6104. _iframe.contentWindow.document.head.appendChild(_ajs);
  6105. }
  6106. }
  6107. //U.MD.D.I.openClick(str);
  6108. //如果有任务栏信息
  6109. // if (_taskbar) {
  6110. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6111. // }
  6112. }
  6113. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6114. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6115. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6116. _userinfo = US.userInfo, //登录用户信息
  6117. _userid = US.userInfo.userid //登录用户id
  6118. let _iframe;
  6119. let _cid = cid,
  6120. _stage = stage,
  6121. _task = task,
  6122. _tool = tool;
  6123. var _jie = $$("div", {
  6124. "style": {
  6125. "position": "absolute",
  6126. "bottom": "50px",
  6127. "right": "50px",
  6128. "zIndex": "9999",
  6129. "backgroundColor": "#2268bc",
  6130. "color": "#fff",
  6131. "padding": "12px 20px",
  6132. "cursor": "pointer",
  6133. "borderRadius": "4px",
  6134. },
  6135. "innerHTML": "提交作业"
  6136. })
  6137. let aTool = ''
  6138. let _loading = document.createElement('div')
  6139. _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;"
  6140. // _loading.id = "";
  6141. let _lchild = document.createElement('div')
  6142. let _limg = document.createElement('img')
  6143. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6144. _limg.style = "width: 26px;margin-right: 10px;"
  6145. _lchild.appendChild(_limg)
  6146. let _lspan = document.createElement('span')
  6147. _lspan.innerHTML = "上传中..."
  6148. _lchild.appendChild(_lspan)
  6149. _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%);"
  6150. _loading.appendChild(_lchild)
  6151. let _box = $$('div', {
  6152. "style": {
  6153. "position": "relative",
  6154. "width": "100%",
  6155. "height": "100%",
  6156. },
  6157. })
  6158. _box.appendChild(_loading)
  6159. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6160. switch (str) {
  6161. case "whiteboard":
  6162. aTool = 1;
  6163. _iframe = $$("iframe", {
  6164. "frameborder": "no",
  6165. "border": "0",
  6166. "scrolling ": "no",
  6167. "style": {
  6168. "cssText": "border:0;width:100%;height:100%"
  6169. },
  6170. "src": "https://beta.iwb.cocorobo.cn/"
  6171. })
  6172. _box.appendChild(_iframe);
  6173. _box.appendChild(_jie);
  6174. _formdiv = new U.UF.UI.form(
  6175. "电子白板",
  6176. _box, {
  6177. "id": "whiteboard" + cid + stage + task + tool,
  6178. "style": {
  6179. "width": "90%",
  6180. "height": "90%",
  6181. "overflow": 'hidden'
  6182. },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, {
  6187. "style": {
  6188. "height": "36px"
  6189. }
  6190. }).form; //创建窗体
  6191. _taskbar = {
  6192. "id": str + _formdiv.id,
  6193. "style": {
  6194. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6195. },
  6196. "name": "电子白板",
  6197. "forms": _formdiv,
  6198. "click": function () {
  6199. U.MD.D.I.openApplication(str, obj, info);
  6200. }
  6201. }
  6202. break;
  6203. case "mind":
  6204. aTool = 3;
  6205. _iframe = $$("iframe", {
  6206. "frameborder": "no",
  6207. "border": "0",
  6208. "scrolling ": "no",
  6209. "style": {
  6210. "cssText": "border:0;width:100%;height:100%"
  6211. },
  6212. "src": "/kityminder-editor/dist/index.html"
  6213. })
  6214. _box.appendChild(_iframe);
  6215. _box.appendChild(_jie);
  6216. _formdiv = new U.UF.UI.form(
  6217. "思维导图",
  6218. _box, { //"/jsmind/example/demo.html"
  6219. "id": "mind" + cid + stage + task + tool,
  6220. "style": {
  6221. "width": "90%",
  6222. "height": "90%",
  6223. "overflow": 'hidden'
  6224. },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, {
  6229. "style": {
  6230. "height": "36px"
  6231. }
  6232. }).form; //创建窗体
  6233. _taskbar = {
  6234. "id": str + _formdiv.id,
  6235. "style": {
  6236. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6237. },
  6238. "name": "思维导图",
  6239. "forms": _formdiv,
  6240. "click": function () {
  6241. U.MD.D.I.openApplication(str, obj, info);
  6242. }
  6243. }
  6244. break;
  6245. case "MindMap":
  6246. aTool = 3;
  6247. _iframe = $$("iframe", {
  6248. "frameborder": "no",
  6249. "border": "0",
  6250. "scrolling ": "no",
  6251. "style": {
  6252. "cssText": "border:0;width:100%;height:100%"
  6253. },
  6254. "src": "//cloud.cocorobo.cn/mind/"
  6255. })
  6256. _box.appendChild(_iframe);
  6257. _box.appendChild(_jie);
  6258. _formdiv = new U.UF.UI.form(
  6259. "思维导图",
  6260. _box, { //"/jsmind/example/demo.html"
  6261. "id": "mind" + cid + stage + task + tool,
  6262. "style": {
  6263. "width": "90%",
  6264. "height": "90%",
  6265. "overflow": 'hidden'
  6266. },
  6267. "onresize": function () { }
  6268. }, {
  6269. closecallback: function () { }
  6270. }, {
  6271. "style": {
  6272. "height": "36px"
  6273. }
  6274. }).form; //创建窗体
  6275. _taskbar = {
  6276. "id": str + _formdiv.id,
  6277. "style": {
  6278. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6279. },
  6280. "name": "思维导图",
  6281. "forms": _formdiv,
  6282. "click": function () {
  6283. U.MD.D.I.openApplication(str, obj, info);
  6284. }
  6285. }
  6286. break;
  6287. case "doc":
  6288. aTool = 6;
  6289. _iframe = $$("iframe", {
  6290. "frameborder": "no",
  6291. "border": "0",
  6292. "scrolling ": "no",
  6293. "style": {
  6294. "cssText": "border:0;width:100%;height:100%"
  6295. },
  6296. "src": "/Office/Word/WordEditArea.htm"
  6297. })
  6298. _box.appendChild(_iframe);
  6299. _box.appendChild(_jie);
  6300. _formdiv = new U.UF.UI.form(
  6301. "协同文档",
  6302. _box, {
  6303. "id": "doc" + cid + stage + task + tool,
  6304. "style": {
  6305. "width": "90%",
  6306. "height": "90%",
  6307. "overflow": 'hidden'
  6308. },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, {
  6313. "style": {
  6314. "height": "36px"
  6315. }
  6316. }).form; //创建窗体
  6317. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6318. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6319. })
  6320. _taskbar = {
  6321. "id": str + _formdiv.id,
  6322. "style": {
  6323. "backgroundImage": "url(/img/icon/doc.png)"
  6324. },
  6325. "name": "协同文档",
  6326. "forms": _formdiv,
  6327. "click": function () {
  6328. U.MD.D.I.openApplication(str, obj, info);
  6329. }
  6330. }
  6331. break;
  6332. case "mindNetwork": //好友打开
  6333. aTool = 7;
  6334. _iframe = $$("iframe", {
  6335. "webkitallowfullscreen": "",
  6336. "mozallowfullscreen": "",
  6337. "allowfullscreen": "",
  6338. "frameborder": "no",
  6339. "border": "0",
  6340. "scrolling ": "no",
  6341. "style": {
  6342. "cssText": "border:0; width:100%; height:100%;"
  6343. },
  6344. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6345. })
  6346. _box.appendChild(_iframe);
  6347. _box.appendChild(_jie);
  6348. _formdiv = new U.UF.UI.form(
  6349. "思维网格",
  6350. _box, {
  6351. "id": "mindNetwork" + cid + stage + task + tool,
  6352. "style": {
  6353. "width": "90%",
  6354. "height": "90%",
  6355. "overflow": 'hidden'
  6356. },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, {
  6361. "style": {
  6362. "height": "36px"
  6363. }
  6364. }).form; //创建窗体
  6365. _taskbar = {
  6366. "id": str + _formdiv.id,
  6367. "style": {
  6368. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6369. },
  6370. "name": "思维网格",
  6371. "forms": _formdiv,
  6372. "click": function () {
  6373. U.MD.D.I.openApplication(str, obj, info);
  6374. }
  6375. }
  6376. break;
  6377. case "courseDesign":
  6378. _iframe = $$("iframe", {
  6379. "webkitallowfullscreen": "",
  6380. "mozallowfullscreen": "",
  6381. "allowfullscreen": "",
  6382. "frameborder": "no",
  6383. "border": "0",
  6384. "scrolling ": "no",
  6385. "style": {
  6386. "cssText": "border:0; width:100%; height:100%;"
  6387. },
  6388. "src": "/course-design-vue"
  6389. })
  6390. _box.appendChild(_iframe);
  6391. _box.appendChild(_jie);
  6392. _formdiv = new U.UF.UI.form(
  6393. "项目设计",
  6394. _box, {
  6395. "id": "courseDesign" + cid + stage + task + tool,
  6396. "style": {
  6397. "width": "90%",
  6398. "height": "90%",
  6399. "overflow": 'hidden'
  6400. },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, {
  6405. "style": {
  6406. "height": "36px"
  6407. }
  6408. }).form; //创建窗体
  6409. _taskbar = {
  6410. "id": str + _formdiv.id,
  6411. "style": {
  6412. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6413. },
  6414. "name": "项目设计",
  6415. "forms": _formdiv,
  6416. "click": function () {
  6417. U.MD.D.I.openApplication(str, obj, info);
  6418. }
  6419. }
  6420. break;
  6421. }
  6422. const script1 = document.createElement("script");
  6423. script1.type = "text/javascript";
  6424. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6425. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6426. const script2 = document.createElement("script");
  6427. script2.type = "text/javascript";
  6428. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6429. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6430. const script3 = document.createElement("script");
  6431. script3.type = "text/javascript";
  6432. script3.charset = "UTF-8";
  6433. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6434. const script4 = document.createElement("script");
  6435. script4.type = "text/javascript";
  6436. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6437. script4.src = window.origin + "/js/Common/jietu2E.js";
  6438. if (_iframe) {
  6439. if (str == 'doc') {
  6440. _iframe = _formdiv.querySelector('iframe')
  6441. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6442. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6443. _iframe.contentWindow.document.body.appendChild(script1);
  6444. _iframe.contentWindow.document.body.appendChild(script2);
  6445. // _iframe.contentWindow.document.body.appendChild(script3);
  6446. _iframe.contentWindow.document.body.appendChild(script4);
  6447. })
  6448. if (onloadListener) {
  6449. _iframe.contentDocument.location.reload()
  6450. } else {
  6451. _iframe.contentDocument.location.reload()
  6452. }
  6453. } else if (str == 'courseDesign') {
  6454. U.UF.DL.iframeLoad(_iframe, function () {
  6455. // _iframe.contentWindow.U.MD.O.W.load();
  6456. // _iframe.contentWindow.document.body.appendChild(script1);
  6457. _iframe.contentWindow.document.body.appendChild(script2);
  6458. _iframe.contentWindow.document.body.appendChild(script4);
  6459. })
  6460. } else if (str == 'mind') {
  6461. _iframe = _formdiv.querySelector('iframe')
  6462. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6463. //
  6464. _iframe.contentWindow.document.body.appendChild(script1);
  6465. _iframe.contentWindow.document.body.appendChild(script2);
  6466. _iframe.contentWindow.document.body.appendChild(script4);
  6467. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6468. })
  6469. if (onloadListener) {
  6470. _iframe.contentDocument.location.reload()
  6471. } else {
  6472. _iframe.contentDocument.location.reload()
  6473. }
  6474. } else if (str == 'whiteboard') {
  6475. _iframe = _formdiv.querySelector('iframe')
  6476. let onloadListener = _iframe.onload = () => {
  6477. _iframe.contentWindow.document.body.appendChild(script1);
  6478. _iframe.contentWindow.document.body.appendChild(script2);
  6479. _iframe.contentWindow.document.body.appendChild(script4);
  6480. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6481. };
  6482. // if (onloadListener) {
  6483. // try {
  6484. // _iframe.src += "?cocorobo="+new Date().getTime()
  6485. // _iframe.contentWindow.document.location.reload()
  6486. // } catch (error) {
  6487. // }
  6488. // } else {
  6489. // _iframe.contentDocument.location.reload()
  6490. // }
  6491. } else {
  6492. _iframe.onload = () => {
  6493. _iframe.contentWindow.document.body.appendChild(script1);
  6494. _iframe.contentWindow.document.body.appendChild(script2);
  6495. // _iframe.contentWindow.document.body.appendChild(script3);
  6496. _iframe.contentWindow.document.body.appendChild(script4);
  6497. };
  6498. }
  6499. _jie.onclick = async () => {
  6500. let text = ''
  6501. if (aTool == 1) {
  6502. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6503. } else if (aTool == 6) {
  6504. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6505. } else if (aTool == 3) {
  6506. text = await U.MD.D.I.getEditorContent(_iframe);
  6507. }
  6508. _loading.style.display = 'flex'
  6509. console.log(_loading);
  6510. var _ajs = _iframe.contentWindow.document.createElement("script");
  6511. _ajs.type = "text/javascript";
  6512. _ajs.innerHTML =
  6513. // 'console.log(' + _loading + ');\n' +
  6514. 'var _js = document.createElement("script");\n' +
  6515. '_js.type="text/javascript";\n' +
  6516. '_js.charset="UTF-8";\n' +
  6517. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6518. "_js.onload = function(){\n" +
  6519. ' var a = document.getElementsByTagName("img")\n' +
  6520. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6521. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6522. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6523. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6524. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6525. "beforeUpload_shishi(file," +
  6526. "'" +
  6527. _userid +
  6528. "'" +
  6529. ", " +
  6530. "'" +
  6531. _cid +
  6532. "'" +
  6533. ", " +
  6534. "'" +
  6535. _stage +
  6536. "'" +
  6537. ", " +
  6538. "'" +
  6539. _task +
  6540. "'" +
  6541. ", " +
  6542. "'" +
  6543. _tool +
  6544. "'" +
  6545. ", " +
  6546. "'" +
  6547. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6548. "'" +
  6549. ", " +
  6550. "'" +
  6551. aTool +
  6552. "'" +
  6553. ", " +
  6554. "`" +
  6555. text +
  6556. "`" +
  6557. ")\n" +
  6558. " });\n" +
  6559. "}\n" +
  6560. "document.head.appendChild(_js);\n";
  6561. _iframe.contentWindow.document.head.appendChild(_ajs);
  6562. }
  6563. }
  6564. //U.MD.D.I.openClick(str);
  6565. //如果有任务栏信息
  6566. // if (_taskbar) {
  6567. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6568. // }
  6569. }
  6570. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6571. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6572. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6573. _userid = student.userid, //登录用户id
  6574. _username = student.student //用户名字
  6575. let _iframe;
  6576. let _cid = cid,
  6577. _stage = stage,
  6578. _task = task,
  6579. _tool = tool;
  6580. var _jie = $$("div", {
  6581. "style": {
  6582. "position": "absolute",
  6583. "bottom": "50px",
  6584. "right": "50px",
  6585. "zIndex": "9999",
  6586. "backgroundColor": "#2268bc",
  6587. "color": "#fff",
  6588. "padding": "12px 20px",
  6589. "cursor": "pointer",
  6590. "borderRadius": "4px",
  6591. },
  6592. "innerHTML": "提交作业"
  6593. })
  6594. let aTool = ''
  6595. let _loading = document.createElement('div')
  6596. _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;"
  6597. // _loading.id = "";
  6598. let _lchild = document.createElement('div')
  6599. let _limg = document.createElement('img')
  6600. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6601. _limg.style = "width: 26px;margin-right: 10px;"
  6602. _lchild.appendChild(_limg)
  6603. let _lspan = document.createElement('span')
  6604. _lspan.innerHTML = "上传中..."
  6605. _lchild.appendChild(_lspan)
  6606. _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%);"
  6607. _loading.appendChild(_lchild)
  6608. var _box = $$('div', {
  6609. "style": {
  6610. "position": "relative",
  6611. "width": "100%",
  6612. "height": "100%",
  6613. },
  6614. })
  6615. _box.appendChild(_loading)
  6616. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6617. switch (str) {
  6618. case "whiteboard":
  6619. aTool = 1;
  6620. _iframe = $$("iframe", {
  6621. "frameborder": "no",
  6622. "border": "0",
  6623. "scrolling ": "no",
  6624. "style": {
  6625. "cssText": "border:0;width:100%;height:100%"
  6626. },
  6627. "src": "https://beta.iwb.cocorobo.cn/"
  6628. })
  6629. _box.appendChild(_iframe);
  6630. _box.appendChild(_jie);
  6631. _formdiv = new U.UF.UI.form(
  6632. "电子白板-" + _username,
  6633. _box, {
  6634. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6635. "style": {
  6636. "width": "90%",
  6637. "height": "90%",
  6638. "overflow": 'hidden'
  6639. },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, {
  6644. "style": {
  6645. "height": "36px"
  6646. }
  6647. }).form; //创建窗体
  6648. _taskbar = {
  6649. "id": str + _formdiv.id,
  6650. "style": {
  6651. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6652. },
  6653. "name": "电子白板",
  6654. "forms": _formdiv,
  6655. "click": function () {
  6656. U.MD.D.I.openApplication(str, obj, info);
  6657. }
  6658. }
  6659. break;
  6660. case "mind":
  6661. aTool = 3;
  6662. _iframe = $$("iframe", {
  6663. "frameborder": "no",
  6664. "border": "0",
  6665. "scrolling ": "no",
  6666. "style": {
  6667. "cssText": "border:0;width:100%;height:100%"
  6668. },
  6669. "src": "/kityminder-editor/dist/index.html"
  6670. })
  6671. _box.appendChild(_iframe);
  6672. _box.appendChild(_jie);
  6673. _formdiv = new U.UF.UI.form(
  6674. "思维导图-" + _username,
  6675. _box, { //"/jsmind/example/demo.html"
  6676. "id": "mind" + cid + stage + task + tool + _userid,
  6677. "style": {
  6678. "width": "90%",
  6679. "height": "90%",
  6680. "overflow": 'hidden'
  6681. },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, {
  6686. "style": {
  6687. "height": "36px"
  6688. }
  6689. }).form; //创建窗体
  6690. _taskbar = {
  6691. "id": str + _formdiv.id,
  6692. "style": {
  6693. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6694. },
  6695. "name": "思维导图",
  6696. "forms": _formdiv,
  6697. "click": function () {
  6698. U.MD.D.I.openApplication(str, obj, info);
  6699. }
  6700. }
  6701. break;
  6702. case "MindMap":
  6703. aTool = 3;
  6704. _iframe = $$("iframe", {
  6705. "frameborder": "no",
  6706. "border": "0",
  6707. "scrolling ": "no",
  6708. "style": {
  6709. "cssText": "border:0;width:100%;height:100%"
  6710. },
  6711. "src": "//cloud.cocorobo.cn/mind/"
  6712. })
  6713. _box.appendChild(_iframe);
  6714. _box.appendChild(_jie);
  6715. _formdiv = new U.UF.UI.form(
  6716. "思维导图-" + _username,
  6717. _box, { //"/jsmind/example/demo.html"
  6718. "id": "mind" + cid + stage + task + tool + _userid,
  6719. "style": {
  6720. "width": "90%",
  6721. "height": "90%",
  6722. "overflow": 'hidden'
  6723. },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, {
  6728. "style": {
  6729. "height": "36px"
  6730. }
  6731. }).form; //创建窗体
  6732. _taskbar = {
  6733. "id": str + _formdiv.id,
  6734. "style": {
  6735. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6736. },
  6737. "name": "思维导图",
  6738. "forms": _formdiv,
  6739. "click": function () {
  6740. U.MD.D.I.openApplication(str, obj, info);
  6741. }
  6742. }
  6743. break;
  6744. case "doc":
  6745. aTool = 6;
  6746. _iframe = $$("iframe", {
  6747. "frameborder": "no",
  6748. "border": "0",
  6749. "scrolling ": "no",
  6750. "style": {
  6751. "cssText": "border:0;width:100%;height:100%"
  6752. },
  6753. "src": "/Office/Word/WordEditArea.htm"
  6754. })
  6755. _box.appendChild(_iframe);
  6756. _box.appendChild(_jie);
  6757. _formdiv = new U.UF.UI.form(
  6758. "协同文档-" + _username,
  6759. _box, {
  6760. "id": "doc" + cid + stage + task + tool + _userid,
  6761. "style": {
  6762. "width": "90%",
  6763. "height": "90%",
  6764. "overflow": 'hidden'
  6765. },
  6766. "onresize": function () { }
  6767. }, {
  6768. closecallback: function () { }
  6769. }, {
  6770. "style": {
  6771. "height": "36px"
  6772. }
  6773. }).form; //创建窗体
  6774. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6775. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6776. })
  6777. _taskbar = {
  6778. "id": str + _formdiv.id,
  6779. "style": {
  6780. "backgroundImage": "url(/img/icon/doc.png)"
  6781. },
  6782. "name": "协同文档",
  6783. "forms": _formdiv,
  6784. "click": function () {
  6785. U.MD.D.I.openApplication(str, obj, info);
  6786. }
  6787. }
  6788. break;
  6789. case "mindNetwork": //好友打开
  6790. aTool = 7;
  6791. _iframe = $$("iframe", {
  6792. "webkitallowfullscreen": "",
  6793. "mozallowfullscreen": "",
  6794. "allowfullscreen": "",
  6795. "frameborder": "no",
  6796. "border": "0",
  6797. "scrolling ": "no",
  6798. "style": {
  6799. "cssText": "border:0; width:100%; height:100%;"
  6800. },
  6801. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6802. })
  6803. _box.appendChild(_iframe);
  6804. _box.appendChild(_jie);
  6805. _formdiv = new U.UF.UI.form(
  6806. "思维网格-" + _username,
  6807. _box, {
  6808. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6809. "style": {
  6810. "width": "90%",
  6811. "height": "90%",
  6812. "overflow": 'hidden'
  6813. },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, {
  6818. "style": {
  6819. "height": "36px"
  6820. }
  6821. }).form; //创建窗体
  6822. _taskbar = {
  6823. "id": str + _formdiv.id,
  6824. "style": {
  6825. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6826. },
  6827. "name": "思维网格",
  6828. "forms": _formdiv,
  6829. "click": function () {
  6830. U.MD.D.I.openApplication(str, obj, info);
  6831. }
  6832. }
  6833. break;
  6834. case "courseDesign":
  6835. _iframe = $$("iframe", {
  6836. "webkitallowfullscreen": "",
  6837. "mozallowfullscreen": "",
  6838. "allowfullscreen": "",
  6839. "frameborder": "no",
  6840. "border": "0",
  6841. "scrolling ": "no",
  6842. "style": {
  6843. "cssText": "border:0; width:100%; height:100%;"
  6844. },
  6845. "src": "/course-design-vue"
  6846. })
  6847. _box.appendChild(_iframe);
  6848. _box.appendChild(_jie);
  6849. _formdiv = new U.UF.UI.form(
  6850. "项目设计-" + _username,
  6851. _box, {
  6852. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6853. "style": {
  6854. "width": "90%",
  6855. "height": "90%",
  6856. "overflow": 'hidden'
  6857. },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, {
  6862. "style": {
  6863. "height": "36px"
  6864. }
  6865. }).form; //创建窗体
  6866. _taskbar = {
  6867. "id": str + _formdiv.id,
  6868. "style": {
  6869. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6870. },
  6871. "name": "项目设计",
  6872. "forms": _formdiv,
  6873. "click": function () {
  6874. U.MD.D.I.openApplication(str, obj, info);
  6875. }
  6876. }
  6877. break;
  6878. }
  6879. const script1 = document.createElement("script");
  6880. script1.type = "text/javascript";
  6881. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6882. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6883. const script2 = document.createElement("script");
  6884. script2.type = "text/javascript";
  6885. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6886. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6887. const script3 = document.createElement("script");
  6888. script3.type = "text/javascript";
  6889. script3.charset = "UTF-8";
  6890. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6891. const script4 = document.createElement("script");
  6892. script4.type = "text/javascript";
  6893. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6894. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6895. if (_iframe) {
  6896. if (str == 'doc') {
  6897. _iframe = _formdiv.querySelector('iframe')
  6898. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6899. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6900. _iframe.contentWindow.document.body.appendChild(script1);
  6901. _iframe.contentWindow.document.body.appendChild(script2);
  6902. // _iframe.contentWindow.document.body.appendChild(script3);
  6903. _iframe.contentWindow.document.body.appendChild(script4);
  6904. })
  6905. if (onloadListener) {
  6906. _iframe.contentDocument.location.reload()
  6907. } else {
  6908. _iframe.contentDocument.location.reload()
  6909. }
  6910. } else if (str == 'courseDesign') {
  6911. U.UF.DL.iframeLoad(_iframe, function () {
  6912. // _iframe.contentWindow.U.MD.O.W.load();
  6913. // _iframe.contentWindow.document.body.appendChild(script1);
  6914. _iframe.contentWindow.document.body.appendChild(script2);
  6915. _iframe.contentWindow.document.body.appendChild(script4);
  6916. })
  6917. } else if (str == 'mind') {
  6918. _iframe = _formdiv.querySelector('iframe')
  6919. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6920. //
  6921. _iframe.contentWindow.document.body.appendChild(script1);
  6922. _iframe.contentWindow.document.body.appendChild(script2);
  6923. _iframe.contentWindow.document.body.appendChild(script4);
  6924. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6925. })
  6926. if (onloadListener) {
  6927. _iframe.contentDocument.location.reload()
  6928. } else {
  6929. _iframe.contentDocument.location.reload()
  6930. }
  6931. } else if (str == 'whiteboard') {
  6932. _iframe = _formdiv.querySelector('iframe')
  6933. let onloadListener = _iframe.onload = () => {
  6934. _iframe.contentWindow.document.body.appendChild(script1);
  6935. _iframe.contentWindow.document.body.appendChild(script2);
  6936. _iframe.contentWindow.document.body.appendChild(script4);
  6937. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6938. };
  6939. // if (onloadListener) {
  6940. // try {
  6941. // _iframe.src += "?cocorobo="+new Date().getTime()
  6942. // _iframe.contentWindow.document.location.reload()
  6943. // } catch (error) {
  6944. // }
  6945. // } else {
  6946. // _iframe.contentDocument.location.reload()
  6947. // }
  6948. } else {
  6949. _iframe.onload = () => {
  6950. _iframe.contentWindow.document.body.appendChild(script1);
  6951. _iframe.contentWindow.document.body.appendChild(script2);
  6952. // _iframe.contentWindow.document.body.appendChild(script3);
  6953. _iframe.contentWindow.document.body.appendChild(script4);
  6954. };
  6955. }
  6956. _jie.onclick = async () => {
  6957. let text = ''
  6958. if (aTool == 1) {
  6959. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6960. } else if (aTool == 6) {
  6961. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6962. } else if (aTool == 3) {
  6963. text = await U.MD.D.I.getEditorContent(_iframe);
  6964. }
  6965. _loading.style.display = 'flex'
  6966. console.log(_loading);
  6967. var _ajs = _iframe.contentWindow.document.createElement("script");
  6968. _ajs.type = "text/javascript";
  6969. _ajs.innerHTML =
  6970. // 'console.log(' + _loading + ');\n' +
  6971. 'var _js = document.createElement("script");\n' +
  6972. '_js.type="text/javascript";\n' +
  6973. '_js.charset="UTF-8";\n' +
  6974. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6975. "_js.onload = function(){\n" +
  6976. ' var a = document.getElementsByTagName("img")\n' +
  6977. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6978. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6979. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6980. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6981. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6982. "beforeUpload_shishi(file," +
  6983. "'" +
  6984. _userid +
  6985. "'" +
  6986. ", " +
  6987. "'" +
  6988. _cid +
  6989. "'" +
  6990. ", " +
  6991. "'" +
  6992. _stage +
  6993. "'" +
  6994. ", " +
  6995. "'" +
  6996. _task +
  6997. "'" +
  6998. ", " +
  6999. "'" +
  7000. _tool +
  7001. "'" +
  7002. ", " +
  7003. "'" +
  7004. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7005. "'" +
  7006. ", " +
  7007. "'" +
  7008. aTool +
  7009. "'" +
  7010. ", " +
  7011. "`" +
  7012. text +
  7013. "`" +
  7014. ")\n" +
  7015. " });\n" +
  7016. "}\n" +
  7017. "document.head.appendChild(_js);\n";
  7018. _iframe.contentWindow.document.head.appendChild(_ajs);
  7019. }
  7020. }
  7021. }
  7022. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7023. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7024. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7025. _userid = student.userid, //登录用户id
  7026. _username = student.student //用户名字
  7027. let _iframe;
  7028. let _cid = cid,
  7029. _stage = stage,
  7030. _task = task,
  7031. _tool = tool;
  7032. var _jie = $$("div", {
  7033. "style": {
  7034. "position": "absolute",
  7035. "bottom": "50px",
  7036. "right": "50px",
  7037. "zIndex": "9999",
  7038. "backgroundColor": "#2268bc",
  7039. "color": "#fff",
  7040. "padding": "12px 20px",
  7041. "cursor": "pointer",
  7042. "borderRadius": "4px",
  7043. },
  7044. "innerHTML": "提交作业"
  7045. })
  7046. let aTool = ''
  7047. let _loading = document.createElement('div')
  7048. _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;"
  7049. // _loading.id = "";
  7050. let _lchild = document.createElement('div')
  7051. let _limg = document.createElement('img')
  7052. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7053. _limg.style = "width: 26px;margin-right: 10px;"
  7054. _lchild.appendChild(_limg)
  7055. let _lspan = document.createElement('span')
  7056. _lspan.innerHTML = "上传中..."
  7057. _lchild.appendChild(_lspan)
  7058. _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%);"
  7059. _loading.appendChild(_lchild)
  7060. var _box = $$('div', {
  7061. "style": {
  7062. "position": "relative",
  7063. "width": "100%",
  7064. "height": "100%",
  7065. },
  7066. })
  7067. _box.appendChild(_loading)
  7068. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7069. switch (str) {
  7070. case "whiteboard":
  7071. aTool = 1;
  7072. _iframe = $$("iframe", {
  7073. "frameborder": "no",
  7074. "border": "0",
  7075. "scrolling ": "no",
  7076. "style": {
  7077. "cssText": "border:0;width:100%;height:100%"
  7078. },
  7079. "src": "https://beta.iwb.cocorobo.cn/"
  7080. })
  7081. _box.appendChild(_iframe);
  7082. _box.appendChild(_jie);
  7083. _formdiv = new U.UF.UI.form(
  7084. "电子白板-" + _username,
  7085. _box, {
  7086. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7087. "style": {
  7088. "width": "90%",
  7089. "height": "90%",
  7090. "overflow": 'hidden'
  7091. },
  7092. "onresize": function () { }
  7093. }, {
  7094. closecallback: function () { }
  7095. }, {
  7096. "style": {
  7097. "height": "36px"
  7098. }
  7099. }).form; //创建窗体
  7100. _taskbar = {
  7101. "id": str + _formdiv.id,
  7102. "style": {
  7103. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7104. },
  7105. "name": "电子白板",
  7106. "forms": _formdiv,
  7107. "click": function () {
  7108. U.MD.D.I.openApplication(str, obj, info);
  7109. }
  7110. }
  7111. break;
  7112. case "mind":
  7113. aTool = 3;
  7114. _iframe = $$("iframe", {
  7115. "frameborder": "no",
  7116. "border": "0",
  7117. "scrolling ": "no",
  7118. "style": {
  7119. "cssText": "border:0;width:100%;height:100%"
  7120. },
  7121. "src": "/kityminder-editor/dist/index.html"
  7122. })
  7123. _box.appendChild(_iframe);
  7124. _box.appendChild(_jie);
  7125. _formdiv = new U.UF.UI.form(
  7126. "思维导图-" + _username,
  7127. _box, { //"/jsmind/example/demo.html"
  7128. "id": "mind" + cid + stage + task + tool + _userid,
  7129. "style": {
  7130. "width": "90%",
  7131. "height": "90%",
  7132. "overflow": 'hidden'
  7133. },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, {
  7138. "style": {
  7139. "height": "36px"
  7140. }
  7141. }).form; //创建窗体
  7142. _taskbar = {
  7143. "id": str + _formdiv.id,
  7144. "style": {
  7145. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7146. },
  7147. "name": "思维导图",
  7148. "forms": _formdiv,
  7149. "click": function () {
  7150. U.MD.D.I.openApplication(str, obj, info);
  7151. }
  7152. }
  7153. break;
  7154. case "MindMap":
  7155. aTool = 3;
  7156. _iframe = $$("iframe", {
  7157. "frameborder": "no",
  7158. "border": "0",
  7159. "scrolling ": "no",
  7160. "style": {
  7161. "cssText": "border:0;width:100%;height:100%"
  7162. },
  7163. "src": "//cloud.cocorobo.cn/mind/"
  7164. })
  7165. _box.appendChild(_iframe);
  7166. _box.appendChild(_jie);
  7167. _formdiv = new U.UF.UI.form(
  7168. "思维导图-" + _username,
  7169. _box, { //"/jsmind/example/demo.html"
  7170. "id": "mind" + cid + stage + task + tool + _userid,
  7171. "style": {
  7172. "width": "90%",
  7173. "height": "90%",
  7174. "overflow": 'hidden'
  7175. },
  7176. "onresize": function () { }
  7177. }, {
  7178. closecallback: function () { }
  7179. }, {
  7180. "style": {
  7181. "height": "36px"
  7182. }
  7183. }).form; //创建窗体
  7184. _taskbar = {
  7185. "id": str + _formdiv.id,
  7186. "style": {
  7187. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7188. },
  7189. "name": "思维导图",
  7190. "forms": _formdiv,
  7191. "click": function () {
  7192. U.MD.D.I.openApplication(str, obj, info);
  7193. }
  7194. }
  7195. break;
  7196. case "doc":
  7197. aTool = 6;
  7198. _iframe = $$("iframe", {
  7199. "frameborder": "no",
  7200. "border": "0",
  7201. "scrolling ": "no",
  7202. "style": {
  7203. "cssText": "border:0;width:100%;height:100%"
  7204. },
  7205. "src": "/Office/Word/WordEditArea.htm"
  7206. })
  7207. _box.appendChild(_iframe);
  7208. _box.appendChild(_jie);
  7209. _formdiv = new U.UF.UI.form(
  7210. "协同文档-" + _username,
  7211. _box, {
  7212. "id": "doc" + cid + stage + task + tool + _userid,
  7213. "style": {
  7214. "width": "90%",
  7215. "height": "90%",
  7216. "overflow": 'hidden'
  7217. },
  7218. "onresize": function () { }
  7219. }, {
  7220. closecallback: function () { }
  7221. }, {
  7222. "style": {
  7223. "height": "36px"
  7224. }
  7225. }).form; //创建窗体
  7226. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7227. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7228. })
  7229. _taskbar = {
  7230. "id": str + _formdiv.id,
  7231. "style": {
  7232. "backgroundImage": "url(/img/icon/doc.png)"
  7233. },
  7234. "name": "协同文档",
  7235. "forms": _formdiv,
  7236. "click": function () {
  7237. U.MD.D.I.openApplication(str, obj, info);
  7238. }
  7239. }
  7240. break;
  7241. case "mindNetwork": //好友打开
  7242. aTool = 7;
  7243. _iframe = $$("iframe", {
  7244. "webkitallowfullscreen": "",
  7245. "mozallowfullscreen": "",
  7246. "allowfullscreen": "",
  7247. "frameborder": "no",
  7248. "border": "0",
  7249. "scrolling ": "no",
  7250. "style": {
  7251. "cssText": "border:0; width:100%; height:100%;"
  7252. },
  7253. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7254. })
  7255. _box.appendChild(_iframe);
  7256. _box.appendChild(_jie);
  7257. _formdiv = new U.UF.UI.form(
  7258. "思维网格-" + _username,
  7259. _box, {
  7260. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7261. "style": {
  7262. "width": "90%",
  7263. "height": "90%",
  7264. "overflow": 'hidden'
  7265. },
  7266. "onresize": function () { }
  7267. }, {
  7268. closecallback: function () { }
  7269. }, {
  7270. "style": {
  7271. "height": "36px"
  7272. }
  7273. }).form; //创建窗体
  7274. _taskbar = {
  7275. "id": str + _formdiv.id,
  7276. "style": {
  7277. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7278. },
  7279. "name": "思维网格",
  7280. "forms": _formdiv,
  7281. "click": function () {
  7282. U.MD.D.I.openApplication(str, obj, info);
  7283. }
  7284. }
  7285. break;
  7286. case "courseDesign":
  7287. _iframe = $$("iframe", {
  7288. "webkitallowfullscreen": "",
  7289. "mozallowfullscreen": "",
  7290. "allowfullscreen": "",
  7291. "frameborder": "no",
  7292. "border": "0",
  7293. "scrolling ": "no",
  7294. "style": {
  7295. "cssText": "border:0; width:100%; height:100%;"
  7296. },
  7297. "src": "/course-design-vue"
  7298. })
  7299. _box.appendChild(_iframe);
  7300. _box.appendChild(_jie);
  7301. _formdiv = new U.UF.UI.form(
  7302. "项目设计-" + _username,
  7303. _box, {
  7304. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7305. "style": {
  7306. "width": "90%",
  7307. "height": "90%",
  7308. "overflow": 'hidden'
  7309. },
  7310. "onresize": function () { }
  7311. }, {
  7312. closecallback: function () { }
  7313. }, {
  7314. "style": {
  7315. "height": "36px"
  7316. }
  7317. }).form; //创建窗体
  7318. _taskbar = {
  7319. "id": str + _formdiv.id,
  7320. "style": {
  7321. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7322. },
  7323. "name": "项目设计",
  7324. "forms": _formdiv,
  7325. "click": function () {
  7326. U.MD.D.I.openApplication(str, obj, info);
  7327. }
  7328. }
  7329. break;
  7330. }
  7331. const script1 = document.createElement("script");
  7332. script1.type = "text/javascript";
  7333. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7334. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7335. const script2 = document.createElement("script");
  7336. script2.type = "text/javascript";
  7337. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7338. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7339. const script3 = document.createElement("script");
  7340. script3.type = "text/javascript";
  7341. script3.charset = "UTF-8";
  7342. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7343. const script4 = document.createElement("script");
  7344. script4.type = "text/javascript";
  7345. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7346. script4.src = window.origin + "/js/Common/jietu2E.js";
  7347. if (_iframe) {
  7348. if (str == 'doc') {
  7349. _iframe = _formdiv.querySelector('iframe')
  7350. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7351. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7352. _iframe.contentWindow.document.body.appendChild(script1);
  7353. _iframe.contentWindow.document.body.appendChild(script2);
  7354. // _iframe.contentWindow.document.body.appendChild(script3);
  7355. _iframe.contentWindow.document.body.appendChild(script4);
  7356. })
  7357. if (onloadListener) {
  7358. _iframe.contentDocument.location.reload()
  7359. } else {
  7360. _iframe.contentDocument.location.reload()
  7361. }
  7362. } else if (str == 'courseDesign') {
  7363. U.UF.DL.iframeLoad(_iframe, function () {
  7364. // _iframe.contentWindow.U.MD.O.W.load();
  7365. // _iframe.contentWindow.document.body.appendChild(script1);
  7366. _iframe.contentWindow.document.body.appendChild(script2);
  7367. _iframe.contentWindow.document.body.appendChild(script4);
  7368. })
  7369. } else if (str == 'mind') {
  7370. _iframe = _formdiv.querySelector('iframe')
  7371. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7372. //
  7373. _iframe.contentWindow.document.body.appendChild(script1);
  7374. _iframe.contentWindow.document.body.appendChild(script2);
  7375. _iframe.contentWindow.document.body.appendChild(script4);
  7376. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7377. })
  7378. if (onloadListener) {
  7379. _iframe.contentDocument.location.reload()
  7380. } else {
  7381. _iframe.contentDocument.location.reload()
  7382. }
  7383. } else if (str == 'whiteboard') {
  7384. _iframe = _formdiv.querySelector('iframe')
  7385. let onloadListener = _iframe.onload = () => {
  7386. _iframe.contentWindow.document.body.appendChild(script1);
  7387. _iframe.contentWindow.document.body.appendChild(script2);
  7388. _iframe.contentWindow.document.body.appendChild(script4);
  7389. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7390. };
  7391. // if (onloadListener) {
  7392. // try {
  7393. // _iframe.src += "?cocorobo="+new Date().getTime()
  7394. // _iframe.contentWindow.document.location.reload()
  7395. // } catch (error) {
  7396. // }
  7397. // } else {
  7398. // _iframe.contentDocument.location.reload()
  7399. // }
  7400. } else {
  7401. _iframe.onload = () => {
  7402. _iframe.contentWindow.document.body.appendChild(script1);
  7403. _iframe.contentWindow.document.body.appendChild(script2);
  7404. // _iframe.contentWindow.document.body.appendChild(script3);
  7405. _iframe.contentWindow.document.body.appendChild(script4);
  7406. };
  7407. }
  7408. _jie.onclick = async () => {
  7409. let text = ''
  7410. if (aTool == 1) {
  7411. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7412. } else if (aTool == 6) {
  7413. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7414. } else if (aTool == 3) {
  7415. text = await U.MD.D.I.getEditorContent(_iframe);
  7416. }
  7417. _loading.style.display = 'flex'
  7418. console.log(_loading);
  7419. var _ajs = _iframe.contentWindow.document.createElement("script");
  7420. _ajs.type = "text/javascript";
  7421. _ajs.innerHTML =
  7422. // 'console.log(' + _loading + ');\n' +
  7423. 'var _js = document.createElement("script");\n' +
  7424. '_js.type="text/javascript";\n' +
  7425. '_js.charset="UTF-8";\n' +
  7426. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7427. "_js.onload = function(){\n" +
  7428. ' var a = document.getElementsByTagName("img")\n' +
  7429. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7430. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7431. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7432. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7433. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7434. "beforeUpload_shishi(file," +
  7435. "'" +
  7436. _userid +
  7437. "'" +
  7438. ", " +
  7439. "'" +
  7440. _cid +
  7441. "'" +
  7442. ", " +
  7443. "'" +
  7444. _stage +
  7445. "'" +
  7446. ", " +
  7447. "'" +
  7448. _task +
  7449. "'" +
  7450. ", " +
  7451. "'" +
  7452. _tool +
  7453. "'" +
  7454. ", " +
  7455. "'" +
  7456. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7457. "'" +
  7458. ", " +
  7459. "'" +
  7460. aTool +
  7461. "'" +
  7462. ", " +
  7463. "`" +
  7464. text +
  7465. "`" +
  7466. ")\n" +
  7467. " });\n" +
  7468. "}\n" +
  7469. "document.head.appendChild(_js);\n";
  7470. _iframe.contentWindow.document.head.appendChild(_ajs);
  7471. }
  7472. }
  7473. }
  7474. U.MD.D.I.getEditorContent = function (iframe) {
  7475. return new Promise((resolve, reject) => {
  7476. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7477. console.log(content);
  7478. resolve(content)
  7479. });
  7480. });
  7481. }
  7482. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7483. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7484. // if (res.value[0].length > 0) {
  7485. // // resolve(res.value[0][0].text);
  7486. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7487. // $(fileInput).val('');
  7488. // });
  7489. // }
  7490. // }, [], { "type": "GET", "withCredentials": true });
  7491. var xmlhttp;
  7492. var Mac, Sn, DeviceId
  7493. if (window.XMLHttpRequest) {
  7494. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7495. xmlhttp = new XMLHttpRequest();
  7496. } else {
  7497. // IE6, IE5 浏览器执行代码
  7498. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7499. }
  7500. xmlhttp.onreadystatechange = function () {
  7501. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7502. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7503. // resolve(res.value[0][0].text);
  7504. if (type == '2') {
  7505. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7506. } else if (type == '3') {
  7507. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7508. }
  7509. } else {
  7510. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7511. }
  7512. }
  7513. }
  7514. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7515. xmlhttp.send();
  7516. }
  7517. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7518. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7519. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7520. _userinfo = US.userInfo, //登录用户信息
  7521. _userid = US.userInfo.userid //登录用户id
  7522. let _iframe;
  7523. let _cid = cid,
  7524. _stage = stage,
  7525. _task = task,
  7526. _tool = tool;
  7527. var _jie = $$("div", {
  7528. "style": {
  7529. "position": "absolute",
  7530. "bottom": "50px",
  7531. "right": "50px",
  7532. "zIndex": "9999",
  7533. "backgroundColor": "#2268bc",
  7534. "color": "#fff",
  7535. "padding": "12px 20px",
  7536. "cursor": "pointer",
  7537. "borderRadius": "4px",
  7538. },
  7539. "innerHTML": "确认并提交"
  7540. })
  7541. let aTool = ''
  7542. let _loading = document.createElement('div')
  7543. _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;"
  7544. // _loading.id = "";
  7545. let _lchild = document.createElement('div')
  7546. let _limg = document.createElement('img')
  7547. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7548. _limg.style = "width: 26px;margin-right: 10px;"
  7549. _lchild.appendChild(_limg)
  7550. let _lspan = document.createElement('span')
  7551. _lspan.innerHTML = "上传中..."
  7552. _lchild.appendChild(_lspan)
  7553. _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%);"
  7554. _loading.appendChild(_lchild)
  7555. var _box = $$('div', {
  7556. "style": {
  7557. "position": "relative",
  7558. "width": "100%",
  7559. "height": "100%",
  7560. },
  7561. })
  7562. _box.appendChild(_loading)
  7563. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7564. switch (str) {
  7565. case "whiteboard":
  7566. aTool = 1;
  7567. _iframe = $$("iframe", {
  7568. "frameborder": "no",
  7569. "border": "0",
  7570. "scrolling ": "no",
  7571. "style": {
  7572. "cssText": "border:0;width:100%;height:100%"
  7573. },
  7574. "src": "https://beta.iwb.cocorobo.cn/"
  7575. })
  7576. _box.appendChild(_iframe);
  7577. _box.appendChild(_jie);
  7578. _formdiv = new U.UF.UI.form(
  7579. "电子白板",
  7580. _box, {
  7581. "id": "whiteboards" + cid + stage + task + tool,
  7582. "style": {
  7583. "width": "90%",
  7584. "height": "90%",
  7585. "overflow": 'hidden'
  7586. },
  7587. "onresize": function () { }
  7588. }, {
  7589. closecallback: function () { }
  7590. }, {
  7591. "style": {
  7592. "height": "36px"
  7593. }
  7594. }).form; //创建窗体
  7595. _taskbar = {
  7596. "id": str + _formdiv.id,
  7597. "style": {
  7598. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7599. },
  7600. "name": "电子白板",
  7601. "forms": _formdiv,
  7602. "click": function () {
  7603. U.MD.D.I.openApplication(str, obj, info);
  7604. }
  7605. }
  7606. break;
  7607. case "mind":
  7608. aTool = 3;
  7609. _iframe = $$("iframe", {
  7610. "frameborder": "no",
  7611. "border": "0",
  7612. "scrolling ": "no",
  7613. "style": {
  7614. "cssText": "border:0;width:100%;height:100%"
  7615. },
  7616. "src": "/kityminder-editor/dist/index.html"
  7617. });
  7618. _box.appendChild(_iframe);
  7619. _box.appendChild(_jie);
  7620. _formdiv = new U.UF.UI.form(
  7621. "思维导图",
  7622. _box, { //"/jsmind/example/demo.html"
  7623. "id": "minds" + cid + stage + task + tool,
  7624. "style": {
  7625. "width": "90%",
  7626. "height": "90%",
  7627. "overflow": 'hidden'
  7628. },
  7629. "onresize": function () { }
  7630. }, {
  7631. closecallback: function () { }
  7632. }, {
  7633. "style": {
  7634. "height": "36px"
  7635. }
  7636. }).form; //创建窗体
  7637. _taskbar = {
  7638. "id": str + _formdiv.id,
  7639. "style": {
  7640. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7641. },
  7642. "name": "思维导图",
  7643. "forms": _formdiv,
  7644. "click": function () {
  7645. U.MD.D.I.openApplication(str, obj, info);
  7646. }
  7647. }
  7648. break;
  7649. case "doc":
  7650. aTool = 6;
  7651. _iframe = $$("iframe", {
  7652. "frameborder": "no",
  7653. "border": "0",
  7654. "scrolling ": "no",
  7655. "style": {
  7656. "cssText": "border:0;width:100%;height:100%"
  7657. },
  7658. "src": "/Office/Word/WordEditArea.htm"
  7659. })
  7660. _box.appendChild(_iframe);
  7661. _box.appendChild(_jie);
  7662. _formdiv = new U.UF.UI.form(
  7663. "协同文档",
  7664. _box, {
  7665. "id": "docs" + cid + stage + task + tool,
  7666. "style": {
  7667. "width": "90%",
  7668. "height": "90%",
  7669. "overflow": 'hidden'
  7670. },
  7671. "onresize": function () { }
  7672. }, {
  7673. closecallback: function () { }
  7674. }, {
  7675. "style": {
  7676. "height": "36px"
  7677. }
  7678. }).form; //创建窗体
  7679. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7680. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7681. })
  7682. _taskbar = {
  7683. "id": str + _formdiv.id,
  7684. "style": {
  7685. "backgroundImage": "url(/img/icon/doc.png)"
  7686. },
  7687. "name": "协同文档",
  7688. "forms": _formdiv,
  7689. "click": function () {
  7690. U.MD.D.I.openApplication(str, obj, info);
  7691. }
  7692. }
  7693. break;
  7694. }
  7695. const script1 = document.createElement("script");
  7696. script1.type = "text/javascript";
  7697. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7698. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7699. const script2 = document.createElement("script");
  7700. script2.type = "text/javascript";
  7701. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7702. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7703. const script3 = document.createElement("script");
  7704. script3.type = "text/javascript";
  7705. script3.charset = "UTF-8";
  7706. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7707. const script4 = document.createElement("script");
  7708. script4.type = "text/javascript";
  7709. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7710. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7711. if (_iframe) {
  7712. if (str == 'doc') {
  7713. _iframe = _formdiv.querySelector('iframe')
  7714. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7715. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7716. _iframe.contentWindow.document.body.appendChild(script1);
  7717. _iframe.contentWindow.document.body.appendChild(script2);
  7718. // _iframe.contentWindow.document.body.appendChild(script3);
  7719. _iframe.contentWindow.document.body.appendChild(script4);
  7720. })
  7721. if (onloadListener) {
  7722. _iframe.contentDocument.location.reload()
  7723. } else {
  7724. _iframe.contentDocument.location.reload()
  7725. }
  7726. } else if (str == 'mind') {
  7727. _iframe = _formdiv.querySelector('iframe')
  7728. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7729. _iframe.contentWindow.document.body.appendChild(script1);
  7730. _iframe.contentWindow.document.body.appendChild(script2);
  7731. _iframe.contentWindow.document.body.appendChild(script4);
  7732. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7733. })
  7734. if (onloadListener) {
  7735. _iframe.contentDocument.location.reload()
  7736. } else {
  7737. _iframe.contentDocument.location.reload()
  7738. }
  7739. } else {
  7740. _iframe.onload = () => {
  7741. _iframe.contentWindow.document.body.appendChild(script1);
  7742. _iframe.contentWindow.document.body.appendChild(script2);
  7743. // _iframe.contentWindow.document.body.appendChild(script3);
  7744. _iframe.contentWindow.document.body.appendChild(script4);
  7745. };
  7746. }
  7747. _jie.onclick = async () => {
  7748. let text = ''
  7749. if (aTool == 6) {
  7750. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7751. } else if (aTool == 3) {
  7752. text = await U.MD.D.I.getEditorContent(_iframe);
  7753. }
  7754. _loading.style.display = 'flex'
  7755. console.log(_loading);
  7756. var _ajs = _iframe.contentWindow.document.createElement("script");
  7757. _ajs.type = "text/javascript";
  7758. _ajs.innerHTML =
  7759. // 'console.log(' + _loading + ');\n' +
  7760. 'var _js = document.createElement("script");\n' +
  7761. '_js.type="text/javascript";\n' +
  7762. '_js.charset="UTF-8";\n' +
  7763. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7764. "_js.onload = function(){\n" +
  7765. ' var a = document.getElementsByTagName("img")\n' +
  7766. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7767. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7768. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7769. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7770. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7771. "beforeUpload_shishi(file," +
  7772. "'" +
  7773. _userid +
  7774. "'" +
  7775. ", " +
  7776. "'" +
  7777. _cid +
  7778. "'" +
  7779. ", " +
  7780. "'" +
  7781. _stage +
  7782. "'" +
  7783. ", " +
  7784. "'" +
  7785. _task +
  7786. "'" +
  7787. ", " +
  7788. "'" +
  7789. _tool +
  7790. "'" +
  7791. ", " +
  7792. "'" +
  7793. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7794. "'" +
  7795. ", " +
  7796. "'" +
  7797. aTool +
  7798. "'" +
  7799. ", " +
  7800. "`" +
  7801. text +
  7802. "`" +
  7803. ")\n" +
  7804. " });\n" +
  7805. "}\n" +
  7806. "document.head.appendChild(_js);\n";
  7807. _iframe.contentWindow.document.head.appendChild(_ajs);
  7808. }
  7809. }
  7810. //U.MD.D.I.openClick(str);
  7811. //如果有任务栏信息
  7812. // if (_taskbar) {
  7813. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7814. // }
  7815. }
  7816. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7817. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7818. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7819. _userinfo = US.userInfo, //登录用户信息
  7820. _userid = US.userInfo.userid //登录用户id
  7821. let _iframe;
  7822. let _cid = cid,
  7823. _stage = stage,
  7824. _task = task,
  7825. _tool = tool;
  7826. var _jie = $$("div", {
  7827. "style": {
  7828. "position": "absolute",
  7829. "bottom": "50px",
  7830. "right": "50px",
  7831. "zIndex": "9999",
  7832. "backgroundColor": "#2268bc",
  7833. "color": "#fff",
  7834. "padding": "12px 20px",
  7835. "cursor": "pointer",
  7836. "borderRadius": "4px",
  7837. },
  7838. "innerHTML": "确认并提交"
  7839. })
  7840. let aTool = ''
  7841. let _loading = document.createElement('div')
  7842. _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;"
  7843. // _loading.id = "";
  7844. let _lchild = document.createElement('div')
  7845. let _limg = document.createElement('img')
  7846. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7847. _limg.style = "width: 26px;margin-right: 10px;"
  7848. _lchild.appendChild(_limg)
  7849. let _lspan = document.createElement('span')
  7850. _lspan.innerHTML = "上传中..."
  7851. _lchild.appendChild(_lspan)
  7852. _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%);"
  7853. _loading.appendChild(_lchild)
  7854. var _box = $$('div', {
  7855. "style": {
  7856. "position": "relative",
  7857. "width": "100%",
  7858. "height": "100%",
  7859. },
  7860. })
  7861. _box.appendChild(_loading)
  7862. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7863. switch (str) {
  7864. case "whiteboard":
  7865. aTool = 1;
  7866. _iframe = $$("iframe", {
  7867. "frameborder": "no",
  7868. "border": "0",
  7869. "scrolling ": "no",
  7870. "style": {
  7871. "cssText": "border:0;width:100%;height:100%"
  7872. },
  7873. "src": "https://beta.iwb.cocorobo.cn/"
  7874. })
  7875. _box.appendChild(_iframe);
  7876. _box.appendChild(_jie);
  7877. _formdiv = new U.UF.UI.form(
  7878. "电子白板",
  7879. _box, {
  7880. "id": "whiteboards" + cid + stage + task + tool,
  7881. "style": {
  7882. "width": "90%",
  7883. "height": "90%",
  7884. "overflow": 'hidden'
  7885. },
  7886. "onresize": function () { }
  7887. }, {
  7888. closecallback: function () { }
  7889. }, {
  7890. "style": {
  7891. "height": "36px"
  7892. }
  7893. }).form; //创建窗体
  7894. _taskbar = {
  7895. "id": str + _formdiv.id,
  7896. "style": {
  7897. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7898. },
  7899. "name": "电子白板",
  7900. "forms": _formdiv,
  7901. "click": function () {
  7902. U.MD.D.I.openApplication(str, obj, info);
  7903. }
  7904. }
  7905. break;
  7906. case "mind":
  7907. aTool = 3;
  7908. _iframe = $$("iframe", {
  7909. "frameborder": "no",
  7910. "border": "0",
  7911. "scrolling ": "no",
  7912. "style": {
  7913. "cssText": "border:0;width:100%;height:100%"
  7914. },
  7915. "src": "/kityminder-editor/dist/index.html"
  7916. });
  7917. _box.appendChild(_iframe);
  7918. _box.appendChild(_jie);
  7919. _formdiv = new U.UF.UI.form(
  7920. "思维导图",
  7921. _box, { //"/jsmind/example/demo.html"
  7922. "id": "minds" + cid + stage + task + tool,
  7923. "style": {
  7924. "width": "90%",
  7925. "height": "90%",
  7926. "overflow": 'hidden'
  7927. },
  7928. "onresize": function () { }
  7929. }, {
  7930. closecallback: function () { }
  7931. }, {
  7932. "style": {
  7933. "height": "36px"
  7934. }
  7935. }).form; //创建窗体
  7936. _taskbar = {
  7937. "id": str + _formdiv.id,
  7938. "style": {
  7939. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7940. },
  7941. "name": "思维导图",
  7942. "forms": _formdiv,
  7943. "click": function () {
  7944. U.MD.D.I.openApplication(str, obj, info);
  7945. }
  7946. }
  7947. break;
  7948. case "doc":
  7949. aTool = 6;
  7950. _iframe = $$("iframe", {
  7951. "frameborder": "no",
  7952. "border": "0",
  7953. "scrolling ": "no",
  7954. "style": {
  7955. "cssText": "border:0;width:100%;height:100%"
  7956. },
  7957. "src": "/Office/Word/WordEditArea.htm"
  7958. })
  7959. _box.appendChild(_iframe);
  7960. _box.appendChild(_jie);
  7961. _formdiv = new U.UF.UI.form(
  7962. "协同文档",
  7963. _box, {
  7964. "id": "docs" + cid + stage + task + tool,
  7965. "style": {
  7966. "width": "90%",
  7967. "height": "90%",
  7968. "overflow": 'hidden'
  7969. },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, {
  7974. "style": {
  7975. "height": "36px"
  7976. }
  7977. }).form; //创建窗体
  7978. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7979. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7980. })
  7981. _taskbar = {
  7982. "id": str + _formdiv.id,
  7983. "style": {
  7984. "backgroundImage": "url(/img/icon/doc.png)"
  7985. },
  7986. "name": "协同文档",
  7987. "forms": _formdiv,
  7988. "click": function () {
  7989. U.MD.D.I.openApplication(str, obj, info);
  7990. }
  7991. }
  7992. break;
  7993. }
  7994. const script1 = document.createElement("script");
  7995. script1.type = "text/javascript";
  7996. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7997. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7998. const script2 = document.createElement("script");
  7999. script2.type = "text/javascript";
  8000. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8001. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8002. const script3 = document.createElement("script");
  8003. script3.type = "text/javascript";
  8004. script3.charset = "UTF-8";
  8005. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8006. const script4 = document.createElement("script");
  8007. script4.type = "text/javascript";
  8008. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8009. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8010. if (_iframe) {
  8011. if (str == 'doc') {
  8012. _iframe = _formdiv.querySelector('iframe')
  8013. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8014. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8015. _iframe.contentWindow.document.body.appendChild(script1);
  8016. _iframe.contentWindow.document.body.appendChild(script2);
  8017. // _iframe.contentWindow.document.body.appendChild(script3);
  8018. _iframe.contentWindow.document.body.appendChild(script4);
  8019. })
  8020. if (onloadListener) {
  8021. _iframe.contentDocument.location.reload()
  8022. } else {
  8023. _iframe.contentDocument.location.reload()
  8024. }
  8025. } else if (str == 'mind') {
  8026. _iframe = _formdiv.querySelector('iframe')
  8027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8028. _iframe.contentWindow.document.body.appendChild(script1);
  8029. _iframe.contentWindow.document.body.appendChild(script2);
  8030. _iframe.contentWindow.document.body.appendChild(script4);
  8031. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8032. })
  8033. if (onloadListener) {
  8034. _iframe.contentDocument.location.reload()
  8035. } else {
  8036. _iframe.contentDocument.location.reload()
  8037. }
  8038. } else {
  8039. _iframe.onload = () => {
  8040. _iframe.contentWindow.document.body.appendChild(script1);
  8041. _iframe.contentWindow.document.body.appendChild(script2);
  8042. // _iframe.contentWindow.document.body.appendChild(script3);
  8043. _iframe.contentWindow.document.body.appendChild(script4);
  8044. };
  8045. }
  8046. _jie.onclick = async () => {
  8047. let text = ''
  8048. if (aTool == 6) {
  8049. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8050. } else if (aTool == 3) {
  8051. text = await U.MD.D.I.getEditorContent(_iframe);
  8052. }
  8053. _loading.style.display = 'flex'
  8054. console.log(_loading);
  8055. var _ajs = _iframe.contentWindow.document.createElement("script");
  8056. _ajs.type = "text/javascript";
  8057. _ajs.innerHTML =
  8058. // 'console.log(' + _loading + ');\n' +
  8059. 'var _js = document.createElement("script");\n' +
  8060. '_js.type="text/javascript";\n' +
  8061. '_js.charset="UTF-8";\n' +
  8062. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8063. "_js.onload = function(){\n" +
  8064. ' var a = document.getElementsByTagName("img")\n' +
  8065. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8066. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8067. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8068. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8069. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8070. "beforeUpload_shishi(file," +
  8071. "'" +
  8072. _userid +
  8073. "'" +
  8074. ", " +
  8075. "'" +
  8076. _cid +
  8077. "'" +
  8078. ", " +
  8079. "'" +
  8080. _stage +
  8081. "'" +
  8082. ", " +
  8083. "'" +
  8084. _task +
  8085. "'" +
  8086. ", " +
  8087. "'" +
  8088. _tool +
  8089. "'" +
  8090. ", " +
  8091. "'" +
  8092. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8093. "'" +
  8094. ", " +
  8095. "'" +
  8096. aTool +
  8097. "'" +
  8098. ", " +
  8099. "`" +
  8100. text +
  8101. "`" +
  8102. ")\n" +
  8103. " });\n" +
  8104. "}\n" +
  8105. "document.head.appendChild(_js);\n";
  8106. _iframe.contentWindow.document.head.appendChild(_ajs);
  8107. }
  8108. }
  8109. //U.MD.D.I.openClick(str);
  8110. //如果有任务栏信息
  8111. // if (_taskbar) {
  8112. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8113. // }
  8114. }
  8115. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8116. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8117. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8118. _userinfo = US.userInfo, //登录用户信息
  8119. _userid = US.userInfo.userid //登录用户id
  8120. let _iframe;
  8121. let _cid = cid,
  8122. _stage = stage,
  8123. _task = task,
  8124. _tool = tool;
  8125. var _jie = $$("div", {
  8126. "style": {
  8127. "position": "absolute",
  8128. "bottom": "50px",
  8129. "right": "50px",
  8130. "zIndex": "9999",
  8131. "backgroundColor": "#2268bc",
  8132. "color": "#fff",
  8133. "padding": "12px 20px",
  8134. "cursor": "pointer",
  8135. "borderRadius": "4px",
  8136. },
  8137. "innerHTML": "上传模板"
  8138. })
  8139. let aTool = ''
  8140. let _loading = document.createElement('div')
  8141. _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;"
  8142. // _loading.id = "";
  8143. let _lchild = document.createElement('div')
  8144. let _limg = document.createElement('img')
  8145. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8146. _limg.style = "width: 26px;margin-right: 10px;"
  8147. _lchild.appendChild(_limg)
  8148. let _lspan = document.createElement('span')
  8149. _lspan.innerHTML = "上传中..."
  8150. _lchild.appendChild(_lspan)
  8151. _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%);"
  8152. _loading.appendChild(_lchild)
  8153. var _box = $$('div', {
  8154. "style": {
  8155. "position": "relative",
  8156. "width": "100%",
  8157. "height": "100%",
  8158. },
  8159. })
  8160. _box.appendChild(_loading)
  8161. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8162. switch (str) {
  8163. case "whiteboard":
  8164. aTool = 1;
  8165. _iframe = $$("iframe", {
  8166. "frameborder": "no",
  8167. "border": "0",
  8168. "scrolling ": "no",
  8169. "style": {
  8170. "cssText": "border:0;width:100%;height:100%"
  8171. },
  8172. "src": "https://beta.iwb.cocorobo.cn/"
  8173. })
  8174. _box.appendChild(_iframe);
  8175. _box.appendChild(_jie);
  8176. _formdiv = new U.UF.UI.form(
  8177. "电子白板",
  8178. _box, {
  8179. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8180. "style": {
  8181. "width": "90%",
  8182. "height": "90%",
  8183. "overflow": 'hidden'
  8184. },
  8185. "onresize": function () { }
  8186. }, {
  8187. closecallback: function () { }
  8188. }, {
  8189. "style": {
  8190. "height": "36px"
  8191. }
  8192. }).form; //创建窗体
  8193. _taskbar = {
  8194. "id": str + _formdiv.id,
  8195. "style": {
  8196. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8197. },
  8198. "name": "电子白板",
  8199. "forms": _formdiv,
  8200. "click": function () {
  8201. U.MD.D.I.openApplication(str, obj, info);
  8202. }
  8203. }
  8204. break;
  8205. case "mind":
  8206. aTool = 3;
  8207. _iframe = $$("iframe", {
  8208. "frameborder": "no",
  8209. "border": "0",
  8210. "scrolling ": "no",
  8211. "style": {
  8212. "cssText": "border:0;width:100%;height:100%"
  8213. },
  8214. "src": "/kityminder-editor/dist/index.html"
  8215. });
  8216. _box.appendChild(_iframe);
  8217. _box.appendChild(_jie);
  8218. _formdiv = new U.UF.UI.form(
  8219. "思维导图",
  8220. _box, { //"/jsmind/example/demo.html"
  8221. "id": "minds_Yu" + cid + stage + task + tool,
  8222. "style": {
  8223. "width": "90%",
  8224. "height": "90%",
  8225. "overflow": 'hidden'
  8226. },
  8227. "onresize": function () { }
  8228. }, {
  8229. closecallback: function () { }
  8230. }, {
  8231. "style": {
  8232. "height": "36px"
  8233. }
  8234. }).form; //创建窗体
  8235. _taskbar = {
  8236. "id": str + _formdiv.id,
  8237. "style": {
  8238. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8239. },
  8240. "name": "思维导图",
  8241. "forms": _formdiv,
  8242. "click": function () {
  8243. U.MD.D.I.openApplication(str, obj, info);
  8244. }
  8245. }
  8246. break;
  8247. case "doc":
  8248. aTool = 6;
  8249. _iframe = $$("iframe", {
  8250. "frameborder": "no",
  8251. "border": "0",
  8252. "scrolling ": "no",
  8253. "style": {
  8254. "cssText": "border:0;width:100%;height:100%"
  8255. },
  8256. "src": "/Office/Word/WordEditArea.htm"
  8257. })
  8258. _box.appendChild(_iframe);
  8259. _box.appendChild(_jie);
  8260. _formdiv = new U.UF.UI.form(
  8261. "协同文档",
  8262. _box, {
  8263. "id": "docs_Yu" + cid + stage + task + tool,
  8264. "style": {
  8265. "width": "90%",
  8266. "height": "90%",
  8267. "overflow": 'hidden'
  8268. },
  8269. "onresize": function () { }
  8270. }, {
  8271. closecallback: function () { }
  8272. }, {
  8273. "style": {
  8274. "height": "36px"
  8275. }
  8276. }).form; //创建窗体
  8277. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8278. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8279. })
  8280. _taskbar = {
  8281. "id": str + _formdiv.id,
  8282. "style": {
  8283. "backgroundImage": "url(/img/icon/doc.png)"
  8284. },
  8285. "name": "协同文档",
  8286. "forms": _formdiv,
  8287. "click": function () {
  8288. U.MD.D.I.openApplication(str, obj, info);
  8289. }
  8290. }
  8291. break;
  8292. case "CocoPi":
  8293. aTool = 57;
  8294. _iframe = $$("iframe", {
  8295. "allowpaymentrequest": "allowpaymentrequest",
  8296. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8297. "webkitallowfullscreen": "",
  8298. "mozallowfullscreen": "",
  8299. "frameborder": "no",
  8300. "border": "0",
  8301. "scrolling ": "no",
  8302. "style": {
  8303. "cssText": "border:0;width:100%;height:100%"
  8304. },
  8305. "src": "https://pi.cocorobo.cn/"
  8306. })
  8307. _box.appendChild(_iframe);
  8308. _box.appendChild(_jie);
  8309. _formdiv = new U.UF.UI.form(
  8310. "CocoPi",
  8311. _box, {
  8312. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8313. "style": {
  8314. "width": "90%",
  8315. "height": "90%",
  8316. "overflow": 'hidden'
  8317. },
  8318. "onresize": function () { }
  8319. }, {
  8320. closecallback: function () { }
  8321. }, {
  8322. "style": {
  8323. "height": "36px"
  8324. }
  8325. }).form; //创建窗体
  8326. _taskbar = {
  8327. "id": str + _formdiv.id,
  8328. "style": {
  8329. "backgroundImage": "url(/img/icon/cocopi.png)"
  8330. },
  8331. "name": "CocoPi",
  8332. "forms": _formdiv,
  8333. "click": function () {
  8334. U.MD.D.I.openApplication(str, obj, info);
  8335. }
  8336. }
  8337. break;
  8338. }
  8339. if (_iframe) {
  8340. if (str == 'doc') {
  8341. _iframe = _formdiv.querySelector('iframe')
  8342. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8343. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8344. })
  8345. if (onloadListener) {
  8346. _iframe.contentDocument.location.reload()
  8347. } else {
  8348. _iframe.contentDocument.location.reload()
  8349. }
  8350. } else if (str == 'mind') {
  8351. _iframe = _formdiv.querySelector('iframe')
  8352. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8353. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8354. })
  8355. if (onloadListener) {
  8356. _iframe.contentDocument.location.reload()
  8357. } else {
  8358. _iframe.contentDocument.location.reload()
  8359. }
  8360. } else if (str == 'whiteboard') {
  8361. _iframe = _formdiv.querySelector('iframe')
  8362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8363. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8364. })
  8365. // if (onloadListener) {
  8366. // try {
  8367. // _iframe.src += "?cocorobo="+new Date().getTime()
  8368. // _iframe.contentWindow.document.location.reload()
  8369. // } catch (error) {
  8370. // }
  8371. // } else {
  8372. // _iframe.contentDocument.location.reload()
  8373. // }
  8374. } else if (str == 'CocoPi') {
  8375. _iframe = _formdiv.querySelector('iframe')
  8376. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8377. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8378. })
  8379. if (onloadListener) {
  8380. _iframe.contentDocument.location.reload()
  8381. } else {
  8382. _iframe.contentDocument.location.reload()
  8383. }
  8384. } else {
  8385. _iframe.onload = () => { };
  8386. }
  8387. _jie.onclick = async () => {
  8388. let text = ''
  8389. let type = '2'
  8390. if (aTool == 1) {
  8391. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8392. type = '3'
  8393. } else if (aTool == 6) {
  8394. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8395. type = '1'
  8396. } else if (aTool == 3) {
  8397. text = await U.MD.D.I.getEditorContent(_iframe);
  8398. type = '2'
  8399. } else if (aTool == 57) {
  8400. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8401. type = '4'
  8402. }
  8403. _loading.style.display = 'flex'
  8404. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8405. }
  8406. }
  8407. //U.MD.D.I.openClick(str);
  8408. //如果有任务栏信息
  8409. // if (_taskbar) {
  8410. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8411. // }
  8412. }
  8413. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8414. var xmlhttp;
  8415. var Mac, Sn, DeviceId
  8416. if (window.XMLHttpRequest) {
  8417. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8418. xmlhttp = new XMLHttpRequest();
  8419. } else {
  8420. // IE6, IE5 浏览器执行代码
  8421. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8422. }
  8423. xmlhttp.onreadystatechange = function () {
  8424. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8425. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8426. // resolve(res.value[0][0].text);
  8427. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8428. }
  8429. }
  8430. }
  8431. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8432. xmlhttp.send();
  8433. }
  8434. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8435. var xmlhttp;
  8436. var Mac, Sn, DeviceId
  8437. if (window.XMLHttpRequest) {
  8438. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8439. xmlhttp = new XMLHttpRequest();
  8440. } else {
  8441. // IE6, IE5 浏览器执行代码
  8442. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8443. }
  8444. xmlhttp.onreadystatechange = function () {
  8445. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8446. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8447. // resolve(res.value[0][0].text);
  8448. if (type == '2') {
  8449. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8450. } else if (type == '3') {
  8451. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8452. } else if (type == '4') {
  8453. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8454. }
  8455. } else {
  8456. if (type == '2') {
  8457. iframe.contentWindow.editor.minder.importData('json', '')
  8458. } else if (type == '3') {
  8459. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8460. } else if (type == '4') {
  8461. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8462. }
  8463. }
  8464. }
  8465. }
  8466. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8467. xmlhttp.send();
  8468. }
  8469. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8470. var xmlhttp;
  8471. var Mac, Sn, DeviceId
  8472. if (window.XMLHttpRequest) {
  8473. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8474. xmlhttp = new XMLHttpRequest();
  8475. } else {
  8476. // IE6, IE5 浏览器执行代码
  8477. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8478. }
  8479. xmlhttp.onreadystatechange = function () {
  8480. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8481. if (xmlhttp.response) {
  8482. // resolve(res.value[0][0].text);
  8483. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8484. // $(fileInput).val('');
  8485. // });
  8486. span.innerHTML = '上传成功'
  8487. setTimeout(() => {
  8488. loading.style.display = 'none'
  8489. }, 1000);
  8490. }
  8491. }
  8492. }
  8493. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8494. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8495. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8496. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8497. // 设置请求头,表示请求体的编码格式
  8498. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8499. // 设置请求体,使用url-encoded格式的数据
  8500. }
  8501. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8502. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8503. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8504. _userinfo = US.userInfo, //登录用户信息
  8505. _userid = US.userInfo.userid //登录用户id
  8506. let _iframe;
  8507. let _cid = cid,
  8508. _stage = stage,
  8509. _task = task,
  8510. _tool = tool;
  8511. var _jie = $$("div", {
  8512. "style": {
  8513. "position": "absolute",
  8514. "bottom": "50px",
  8515. "right": "50px",
  8516. "zIndex": "9999",
  8517. "backgroundColor": "#2268bc",
  8518. "color": "#fff",
  8519. "padding": "12px 20px",
  8520. "cursor": "pointer",
  8521. "borderRadius": "4px",
  8522. },
  8523. "innerHTML": "提交作业"
  8524. })
  8525. let aTool = ''
  8526. let _loading = document.createElement('div')
  8527. _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;"
  8528. // _loading.id = "";
  8529. let _lchild = document.createElement('div')
  8530. let _limg = document.createElement('img')
  8531. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8532. _limg.style = "width: 26px;margin-right: 10px;"
  8533. _lchild.appendChild(_limg)
  8534. let _lspan = document.createElement('span')
  8535. _lspan.innerHTML = "上传中..."
  8536. _lchild.appendChild(_lspan)
  8537. _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%);"
  8538. _loading.appendChild(_lchild)
  8539. var _box = $$('div', {
  8540. "style": {
  8541. "position": "relative",
  8542. "width": "100%",
  8543. "height": "100%",
  8544. },
  8545. })
  8546. _box.appendChild(_loading)
  8547. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8548. switch (str) {
  8549. case "CocoPi":
  8550. aTool = 57;
  8551. _iframe = $$("iframe", {
  8552. "allowpaymentrequest": "allowpaymentrequest",
  8553. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8554. "webkitallowfullscreen": "",
  8555. "mozallowfullscreen": "",
  8556. "frameborder": "no",
  8557. "border": "0",
  8558. "scrolling ": "no",
  8559. "style": {
  8560. "cssText": "border:0;width:100%;height:100%"
  8561. },
  8562. "src": "https://pi.cocorobo.cn/"
  8563. })
  8564. _box.appendChild(_iframe);
  8565. _box.appendChild(_jie);
  8566. _formdiv = new U.UF.UI.form(
  8567. "CocoPi",
  8568. _box, {
  8569. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8570. "style": {
  8571. "width": "90%",
  8572. "height": "90%",
  8573. "overflow": 'hidden'
  8574. },
  8575. "onresize": function () { }
  8576. }, {
  8577. closecallback: function () { }
  8578. }, {
  8579. "style": {
  8580. "height": "36px"
  8581. }
  8582. }).form; //创建窗体
  8583. _taskbar = {
  8584. "id": str + _formdiv.id,
  8585. "style": {
  8586. "backgroundImage": "url(/img/icon/cocopi.png)"
  8587. },
  8588. "name": "CocoPi",
  8589. "forms": _formdiv,
  8590. "click": function () {
  8591. U.MD.D.I.openApplication(str, obj, info);
  8592. }
  8593. }
  8594. break;
  8595. }
  8596. if (_iframe) {
  8597. if (str == 'CocoPi') {
  8598. _iframe = _formdiv.querySelector('iframe')
  8599. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8600. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8601. })
  8602. if (onloadListener) {
  8603. _iframe.contentDocument.location.reload()
  8604. } else {
  8605. _iframe.contentDocument.location.reload()
  8606. }
  8607. }
  8608. _jie.onclick = async () => {
  8609. let text = ''
  8610. if (aTool == 57) {
  8611. text = _iframe.contentWindow.getLoadXmlStr()
  8612. }
  8613. _loading.style.display = 'flex'
  8614. console.log(_loading);
  8615. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8616. _loading.style.display = 'none'
  8617. let _div = document.createElement('div')
  8618. _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;"
  8619. let _inner = document.createElement('div')
  8620. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8621. _inner.innerHTML = "上传成功"
  8622. _div.appendChild(_inner)
  8623. _iframe.contentWindow.window.document.body.appendChild(_div)
  8624. _div.onclick = () => {
  8625. _iframe.contentWindow.window.document.body.removeChild(_div)
  8626. }
  8627. setTimeout(() => {
  8628. _iframe.contentWindow.window.document.body.removeChild(_div)
  8629. }, 1000);
  8630. }, [], { "type": "POST", "withCredentials": true });
  8631. }
  8632. }
  8633. }
  8634. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8635. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8636. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8637. _userid = student.userid, //登录用户id
  8638. _username = student.student //用户名字
  8639. let _iframe;
  8640. let _cid = cid,
  8641. _stage = stage,
  8642. _task = task,
  8643. _tool = tool;
  8644. var _jie = $$("div", {
  8645. "style": {
  8646. "position": "absolute",
  8647. "bottom": "50px",
  8648. "right": "50px",
  8649. "zIndex": "9999",
  8650. "backgroundColor": "#2268bc",
  8651. "color": "#fff",
  8652. "padding": "12px 20px",
  8653. "cursor": "pointer",
  8654. "borderRadius": "4px",
  8655. },
  8656. "innerHTML": "提交作业"
  8657. })
  8658. let aTool = ''
  8659. let _loading = document.createElement('div')
  8660. _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;"
  8661. // _loading.id = "";
  8662. let _lchild = document.createElement('div')
  8663. let _limg = document.createElement('img')
  8664. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8665. _limg.style = "width: 26px;margin-right: 10px;"
  8666. _lchild.appendChild(_limg)
  8667. let _lspan = document.createElement('span')
  8668. _lspan.innerHTML = "上传中..."
  8669. _lchild.appendChild(_lspan)
  8670. _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%);"
  8671. _loading.appendChild(_lchild)
  8672. var _box = $$('div', {
  8673. "style": {
  8674. "position": "relative",
  8675. "width": "100%",
  8676. "height": "100%",
  8677. },
  8678. })
  8679. _box.appendChild(_loading)
  8680. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8681. switch (str) {
  8682. case "CocoPi":
  8683. aTool = 57;
  8684. _iframe = $$("iframe", {
  8685. "allowpaymentrequest": "allowpaymentrequest",
  8686. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8687. "webkitallowfullscreen": "",
  8688. "mozallowfullscreen": "",
  8689. "frameborder": "no",
  8690. "border": "0",
  8691. "scrolling ": "no",
  8692. "style": {
  8693. "cssText": "border:0;width:100%;height:100%"
  8694. },
  8695. "src": "https://pi.cocorobo.cn/"
  8696. })
  8697. _box.appendChild(_iframe);
  8698. _box.appendChild(_jie);
  8699. _formdiv = new U.UF.UI.form(
  8700. "CocoPi-" + _username,
  8701. _box, {
  8702. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8703. "style": {
  8704. "width": "90%",
  8705. "height": "90%",
  8706. "overflow": 'hidden'
  8707. },
  8708. "onresize": function () { }
  8709. }, {
  8710. closecallback: function () { }
  8711. }, {
  8712. "style": {
  8713. "height": "36px"
  8714. }
  8715. }).form; //创建窗体
  8716. _taskbar = {
  8717. "id": str + _formdiv.id,
  8718. "style": {
  8719. "backgroundImage": "url(/img/icon/cocopi.png)"
  8720. },
  8721. "name": "CocoPi",
  8722. "forms": _formdiv,
  8723. "click": function () {
  8724. U.MD.D.I.openApplication(str, obj, info);
  8725. }
  8726. }
  8727. break;
  8728. }
  8729. if (_iframe) {
  8730. if (str == 'CocoPi') {
  8731. _iframe = _formdiv.querySelector('iframe')
  8732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8733. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8734. })
  8735. if (onloadListener) {
  8736. _iframe.contentDocument.location.reload()
  8737. } else {
  8738. _iframe.contentDocument.location.reload()
  8739. }
  8740. }
  8741. _jie.onclick = async () => {
  8742. let text = ''
  8743. if (aTool == 57) {
  8744. text = _iframe.contentWindow.getLoadXmlStr()
  8745. }
  8746. _loading.style.display = 'flex'
  8747. console.log(_loading);
  8748. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8749. _loading.style.display = 'none'
  8750. let _div = document.createElement('div')
  8751. _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;"
  8752. let _inner = document.createElement('div')
  8753. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8754. _inner.innerHTML = "上传成功"
  8755. _div.appendChild(_inner)
  8756. _iframe.contentWindow.window.document.body.appendChild(_div)
  8757. _div.onclick = () => {
  8758. _iframe.contentWindow.window.document.body.removeChild(_div)
  8759. }
  8760. setTimeout(() => {
  8761. _iframe.contentWindow.window.document.body.removeChild(_div)
  8762. }, 1000);
  8763. }, [], { "type": "POST", "withCredentials": true });
  8764. }
  8765. }
  8766. }
  8767. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8768. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8769. if (res.value[0].length > 0) {
  8770. if (atool == 57) {
  8771. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8772. }
  8773. } else {
  8774. if (atool == 57) {
  8775. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8776. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8777. }
  8778. }
  8779. }, [], { "type": "POST", "withCredentials": true });
  8780. }