DeskTop.js 515 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536
  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. ];
  213. U.MD.D.I.szulsDeskIcon = [
  214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  216. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  217. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  218. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  219. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  220. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  221. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  222. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  223. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  224. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  225. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  226. ];
  227. U.MD.D.I.hanDeskIcon = [
  228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  230. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  231. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  232. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  233. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  234. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  236. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  237. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  238. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  240. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  241. ];
  242. U.MD.D.I.GMteacherDeskIcon = [
  243. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  244. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  245. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  246. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  247. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  248. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  249. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  250. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  251. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  252. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  253. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  254. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  255. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  256. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  257. ];
  258. U.MD.D.I.GMstudentDeskIcon = [
  259. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  260. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  261. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  262. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  263. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  264. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  265. ];
  266. //北师大
  267. U.MD.D.I.BSDNSteacherDeskIcon = [
  268. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  269. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  271. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  272. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  301. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  302. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  303. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  304. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. //松山湖
  309. U.MD.D.I.SONGteacherDeskIcon = [
  310. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  311. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  314. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  315. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  316. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  317. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  318. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  319. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  320. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  321. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  322. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  323. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  324. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  325. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  326. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  327. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  328. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  329. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  330. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  331. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  332. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  333. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  334. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  335. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  336. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  337. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  338. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  339. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  340. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  342. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  343. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  344. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  347. ];
  348. U.MD.D.I.tcStudentDeskIcon = [
  349. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  350. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  351. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  352. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  353. ];
  354. U.MD.D.I.tcTeacherDeskIcon = [
  355. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  356. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  357. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  358. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  359. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  360. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  361. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  362. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  363. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  364. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  366. ];
  367. U.MD.D.I.tcOrganizerDeskIcon = [
  368. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  369. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  370. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  371. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  372. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  373. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  374. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  375. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  376. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  377. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  378. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  379. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  380. ];
  381. U.MD.D.I.szscStudentDeskIcon = [
  382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  384. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  385. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  387. ];
  388. U.MD.D.I.szscTeacherDeskIcon = [
  389. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  390. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  391. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  392. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  393. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  394. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  395. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  396. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  397. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  398. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  400. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  401. ];
  402. U.MD.D.I.szscOrganizerDeskIcon = [
  403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  405. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  407. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  408. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  409. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  410. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  427. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  428. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  429. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  430. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  431. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  432. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  433. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  435. ];
  436. U.MD.D.I.wankeAdminDeskIcon = [
  437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  441. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  443. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  444. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  445. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  446. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  447. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  448. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  449. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  453. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  454. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  455. ];
  456. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  457. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  458. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  459. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  460. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  461. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  463. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  464. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  465. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  469. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  470. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  471. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  472. ];
  473. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  474. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  475. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  476. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  477. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  478. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  479. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  480. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  481. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  482. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  483. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  484. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  485. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  486. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  488. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  489. ];
  490. //明德教师桌面图标的全局变量
  491. U.MD.D.I.MingdeTeacherDeskIcon = [
  492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  493. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  494. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  495. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  496. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  497. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  498. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  499. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  500. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  501. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  502. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  503. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  504. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  505. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  506. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  507. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  508. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  509. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  510. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  511. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  512. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  513. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  514. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  515. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  516. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  517. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  518. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  519. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  520. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  521. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  522. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  523. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  524. ];
  525. //97c4ee8b-d010-4042-986d-e9d3c217264f
  526. //教师桌面图标的全局变量
  527. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  528. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  529. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  530. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  531. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  532. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  533. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  534. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  535. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  536. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  537. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  540. ];
  541. //福田
  542. U.MD.D.I.futianTeacherDeskIcon = [
  543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  544. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  545. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  546. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  547. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  548. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  549. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  551. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  552. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  553. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  554. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  555. ];
  556. //福田
  557. U.MD.D.I.futianAdminDeskIcon = [
  558. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  559. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  560. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  561. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  562. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  563. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  564. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  565. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  566. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  567. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  568. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  569. ];
  570. //lotech
  571. U.MD.D.I.lotechTeacherDeskIcon = [
  572. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  573. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  574. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  575. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  576. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  577. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  578. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  579. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  580. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  581. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  582. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  583. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. ];
  589. //龙华中心小学教师桌面图标的全局变量
  590. U.MD.D.I.longhuateacherDeskIcon = [
  591. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  592. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  593. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  594. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  595. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  596. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  597. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  598. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  599. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  600. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  601. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  602. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  604. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  605. ];
  606. //教科院实小教师桌面图标的全局变量
  607. U.MD.D.I.siesteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  612. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  613. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  618. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  621. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  622. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  623. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  624. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  625. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  627. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  628. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  629. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  630. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  632. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  633. ];
  634. //教科院实小教师桌面图标的全局变量
  635. U.MD.D.I.siesStudentDeskIcon = [
  636. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  640. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  641. ];
  642. //福田
  643. U.MD.D.I.gdjgTeacherDeskIcon = [
  644. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  645. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  646. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  648. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  649. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  650. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  651. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  653. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  654. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  658. ];
  659. //gdjg
  660. U.MD.D.I.gdjgAdminDeskIcon = [
  661. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  662. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  663. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  665. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  666. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  667. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  668. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  669. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  670. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  672. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  673. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  674. ];
  675. //hk
  676. U.MD.D.I.hkteacherDeskIcon = [
  677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  679. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  680. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  681. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  682. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  683. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  684. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  686. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  687. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  688. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  689. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  690. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  691. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  693. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  694. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  695. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  696. ];
  697. //hk
  698. U.MD.D.I.hkStudentDeskIcon = [
  699. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkaceteacherDeskIcon = [
  708. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  709. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  711. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  712. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  714. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  715. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  717. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  718. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  719. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  720. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  721. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  722. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  724. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  727. ];
  728. //hk
  729. U.MD.D.I.hkaceStudentDeskIcon = [
  730. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  731. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  732. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  733. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  734. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  736. ];
  737. //香海正覺蓮社佛教正覺中學
  738. U.MD.D.I.hkZJLSteacherDeskIcon = [
  739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  746. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  747. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  748. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  749. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  750. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  751. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  752. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. ];
  756. //香海正覺蓮社佛教正覺中學
  757. U.MD.D.I.hkZJLSStudentDeskIcon = [
  758. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  761. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  762. ];
  763. //云海
  764. U.MD.D.I.yunhaiTeacherDeskIcon = [
  765. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  766. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  767. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  768. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  769. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  770. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  771. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  772. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  773. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  774. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  775. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  776. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  777. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  778. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  779. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  781. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  782. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  783. ];
  784. //福田
  785. U.MD.D.I.heyuanTeacherDeskIcon = [
  786. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  787. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  788. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  789. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  790. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  791. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  792. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  793. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  794. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  795. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  797. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  798. ];
  799. //福田
  800. U.MD.D.I.heyuanAdminDeskIcon = [
  801. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  802. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  806. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  807. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  808. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  814. U.MD.D.I.szherTeacherDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  823. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  826. ];
  827. //dsei
  828. U.MD.D.I.dseiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  836. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  837. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  838. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  839. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  840. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  841. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  842. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  843. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  844. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  845. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  846. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  847. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  848. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  849. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  850. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  851. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  852. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  853. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  854. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  855. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  856. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  857. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  858. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  859. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  860. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  861. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  862. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  863. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  864. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  865. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  866. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  867. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  868. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  869. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  870. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  871. ];
  872. //dsei
  873. U.MD.D.I.dseiAdminDeskIcon = [
  874. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  875. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  876. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  877. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  878. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  879. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  880. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  881. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  882. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  883. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  884. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  885. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  886. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  887. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  888. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  889. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  890. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  891. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  892. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  893. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  894. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  895. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  896. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  897. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  898. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  899. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  900. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  901. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  902. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  903. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  904. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  905. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  906. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  907. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  908. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  909. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  910. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  911. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  913. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  914. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  915. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  936. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  937. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  938. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  939. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  940. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  943. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  944. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  945. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  946. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  947. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  948. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  949. ];
  950. //未来教育基地
  951. U.MD.D.I.szjkyAdminDeskIcon = [
  952. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  953. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  957. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  958. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  959. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  960. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  961. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  962. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  963. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  964. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  966. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  967. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  968. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  969. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  970. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  971. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  972. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  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.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //#region 桌面初始化a
  1205. /**
  1206. * 初始化桌面的起始函数
  1207. *
  1208. */
  1209. U.MD.D.I.init = function () {
  1210. if ($("#U_MD_D_K")[0]) {
  1211. //初始化桌面图标
  1212. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1213. // var clickUrl = ':12588/requestIp.php';
  1214. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1215. // U.MD.D.I.Ip = data;
  1216. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1217. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1218. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1219. // })
  1220. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1221. // })
  1222. }
  1223. }
  1224. /**
  1225. * 模式切换
  1226. *
  1227. */
  1228. U.MD.D.I.ModeCheck = function (type) {
  1229. if (US.Config.type == type) {
  1230. return
  1231. }
  1232. US.Config.type = type
  1233. $('.U_PBL_Check .active')[0].className = ''
  1234. if (type == 1) {
  1235. $('.U_PBL_Check div')[0].className = 'active'
  1236. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1237. } else {
  1238. $('.U_PBL_Check div')[1].className = 'active'
  1239. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1240. }
  1241. //初始化桌面图标
  1242. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1243. if (type == 2) {
  1244. U.MD.D.I.openApplication("project")
  1245. }
  1246. }
  1247. /**
  1248. * 隐藏任务栏
  1249. *
  1250. * @param {element} 桌面元素
  1251. */
  1252. U.MD.D.I.hiddenTaskbar = function (el) {
  1253. //任务栏位置变小
  1254. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1255. //桌面的位置变大
  1256. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1257. }
  1258. /**
  1259. * 隐藏任务栏
  1260. *
  1261. * @param {element} 桌面元素
  1262. */
  1263. U.MD.D.I.hiddenTaskbarout = function (el) {
  1264. //任务栏位置变小
  1265. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1266. //任务栏位置变化
  1267. U.selectEl(el).css({ "bottom": "-60px" });
  1268. //桌面的位置变大
  1269. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1270. }
  1271. }
  1272. /**
  1273. * 初始化打印桌面图标
  1274. *
  1275. * @param {element} 桌面元素
  1276. */
  1277. U.MD.D.I.initDesktopIcons = function (el, type) {
  1278. var i, //用于循环
  1279. _content, //桌面图标元素
  1280. _iconcontent, //桌面图标元素
  1281. _frag = $$("frag"), //定义一个碎片元素
  1282. _type = US.userInfo.type,
  1283. _org = US.userInfo.org,
  1284. _oid = US.userInfo.organizeid,
  1285. _role = US.userInfo.role,
  1286. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1287. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1288. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1289. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1290. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1291. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1292. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1293. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1294. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1295. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1296. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1297. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1298. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1299. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1300. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1301. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1302. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1303. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1304. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1305. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1306. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1307. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1308. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1309. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1310. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1311. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1312. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1313. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1314. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1315. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1316. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1317. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1318. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1319. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1320. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1321. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1322. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1323. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1324. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1325. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1326. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1327. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1328. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1329. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1330. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1331. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1332. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1333. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1334. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1335. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1336. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1337. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1338. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1339. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1340. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1341. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1342. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1343. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1344. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1345. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1346. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1347. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1348. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1349. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1350. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1351. 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'];
  1352. 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'];
  1353. //清楚桌面图标
  1354. el.innerHTML = "";
  1355. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1356. _teacherDesktopIconInfo.push(
  1357. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1358. { "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)" } },
  1359. )
  1360. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1361. }
  1362. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1363. _teacherDesktopIconInfo.push(
  1364. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1365. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1366. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1368. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1369. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1370. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1371. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1372. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1373. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1374. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. )
  1377. }
  1378. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1379. // _teacherDesktopIconInfo.push(
  1380. // )
  1381. // }
  1382. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1383. _teacherDesktopIconInfo.push(
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. )
  1387. }
  1388. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1389. _teacherDesktopIconInfo.push(
  1390. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1394. )
  1395. _studentDesktopIconInfo.push(
  1396. )
  1397. }
  1398. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1399. _teacherDesktopIconInfo.push(
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. )
  1402. _studentDesktopIconInfo.push(
  1403. )
  1404. }
  1405. //麒麟二中 和 民新小学
  1406. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1407. _teacherDesktopIconInfo.push(
  1408. )
  1409. }
  1410. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1411. _teacherDesktopIconInfo.push(
  1412. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1413. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1414. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1415. )
  1416. }
  1417. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1418. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1419. _teacherDesktopIconInfo.push(
  1420. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1421. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1422. )
  1423. }
  1424. //麒麟二中
  1425. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1426. _studentDesktopIconInfo.push(
  1427. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1428. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1429. )
  1430. }
  1431. //万科双语
  1432. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1433. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1434. if (el.Name == '项目管理') {
  1435. el.Name = 'PBL项目'
  1436. }
  1437. return el
  1438. })
  1439. _studentDesktopIconInfo3.push(
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. )
  1442. }
  1443. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1444. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1445. return el.Name != '魔盒识字' && el.Name != '24点'
  1446. })
  1447. }
  1448. 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) {
  1449. _studentDesktopIconInfo.push(
  1450. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1451. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1452. )
  1453. }
  1454. //循环创建桌面图标
  1455. if (type == 1) {
  1456. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1457. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1458. _content = $$("div", {
  1459. className: "U_MD_D_KO",
  1460. "onmousedown": U.UF.C.closure(function (obj) {
  1461. //防止拖动图标即打开了桌面应用
  1462. U.MD.D.click(this, obj);
  1463. }, [_studentDesktopIconInfo[i]]),
  1464. "onclick": U.UF.C.closure(function (obj) {
  1465. //防止拖动图标即打开了桌面应用
  1466. U.MD.D.click(this, obj);
  1467. }, [_studentDesktopIconInfo[i]])
  1468. }, _frag); //
  1469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1472. }
  1473. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1474. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1475. _content = $$("div", {
  1476. className: "U_MD_D_KO",
  1477. "onmousedown": U.UF.C.closure(function (obj) {
  1478. //防止拖动图标即打开了桌面应用
  1479. U.MD.D.click(this, obj);
  1480. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1481. "onclick": U.UF.C.closure(function (obj) {
  1482. //防止拖动图标即打开了桌面应用
  1483. U.MD.D.click(this, obj);
  1484. }, [_hkZJLSStudentDeskIconInfo[i]])
  1485. }, _frag); //
  1486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1489. } //
  1490. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1491. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1492. _content = $$("div", {
  1493. className: "U_MD_D_KO",
  1494. "onmousedown": U.UF.C.closure(function (obj) {
  1495. //防止拖动图标即打开了桌面应用
  1496. U.MD.D.click(this, obj);
  1497. }, [_jccssylStudentDeskIconInfo[i]]),
  1498. "onclick": U.UF.C.closure(function (obj) {
  1499. //防止拖动图标即打开了桌面应用
  1500. U.MD.D.click(this, obj);
  1501. }, [_jccssylStudentDeskIconInfo[i]])
  1502. }, _frag); //
  1503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1506. }
  1507. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1508. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1509. _content = $$("div", {
  1510. className: "U_MD_D_KO",
  1511. "onmousedown": U.UF.C.closure(function (obj) {
  1512. //防止拖动图标即打开了桌面应用
  1513. U.MD.D.click(this, obj);
  1514. }, [_caleStudentDeskIconInfo[i]]),
  1515. "onclick": U.UF.C.closure(function (obj) {
  1516. //防止拖动图标即打开了桌面应用
  1517. U.MD.D.click(this, obj);
  1518. }, [_caleStudentDeskIconInfo[i]])
  1519. }, _frag); //
  1520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1523. }
  1524. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1525. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1526. _content = $$("div", {
  1527. className: "U_MD_D_KO",
  1528. "onmousedown": U.UF.C.closure(function (obj) {
  1529. //防止拖动图标即打开了桌面应用
  1530. U.MD.D.click(this, obj);
  1531. }, [_thuioeStudentDeskIconInfo[i]]),
  1532. "onclick": U.UF.C.closure(function (obj) {
  1533. //防止拖动图标即打开了桌面应用
  1534. U.MD.D.click(this, obj);
  1535. }, [_thuioeStudentDeskIconInfo[i]])
  1536. }, _frag); //
  1537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1540. }
  1541. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1542. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1543. _content = $$("div", {
  1544. className: "U_MD_D_KO",
  1545. "onmousedown": U.UF.C.closure(function (obj) {
  1546. //防止拖动图标即打开了桌面应用
  1547. U.MD.D.click(this, obj);
  1548. }, [_tpcStudentDeskIconInfo[i]]),
  1549. "onclick": U.UF.C.closure(function (obj) {
  1550. //防止拖动图标即打开了桌面应用
  1551. U.MD.D.click(this, obj);
  1552. }, [_tpcStudentDeskIconInfo[i]])
  1553. }, _frag); //
  1554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1557. } //
  1558. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1559. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1560. _content = $$("div", {
  1561. className: "U_MD_D_KO",
  1562. "onmousedown": U.UF.C.closure(function (obj) {
  1563. //防止拖动图标即打开了桌面应用
  1564. U.MD.D.click(this, obj);
  1565. }, [_chjyjStudentDeskIconInfo[i]]),
  1566. "onclick": U.UF.C.closure(function (obj) {
  1567. //防止拖动图标即打开了桌面应用
  1568. U.MD.D.click(this, obj);
  1569. }, [_chjyjStudentDeskIconInfo[i]])
  1570. }, _frag); //
  1571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1574. }
  1575. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1576. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1577. _content = $$("div", {
  1578. className: "U_MD_D_KO",
  1579. "onmousedown": U.UF.C.closure(function (obj) {
  1580. //防止拖动图标即打开了桌面应用
  1581. U.MD.D.click(this, obj);
  1582. }, [_szjkyStudentDeskIconInfo[i]]),
  1583. "onclick": U.UF.C.closure(function (obj) {
  1584. //防止拖动图标即打开了桌面应用
  1585. U.MD.D.click(this, obj);
  1586. }, [_szjkyStudentDeskIconInfo[i]])
  1587. }, _frag); //
  1588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1591. }
  1592. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1593. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1594. _content = $$("div", {
  1595. className: "U_MD_D_KO",
  1596. "onmousedown": U.UF.C.closure(function (obj) {
  1597. //防止拖动图标即打开了桌面应用
  1598. U.MD.D.click(this, obj);
  1599. }, [_dseiStudentDeskIconInfo[i]]),
  1600. "onclick": U.UF.C.closure(function (obj) {
  1601. //防止拖动图标即打开了桌面应用
  1602. U.MD.D.click(this, obj);
  1603. }, [_dseiStudentDeskIconInfo[i]])
  1604. }, _frag); //
  1605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1608. }
  1609. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1610. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1611. _content = $$("div", {
  1612. className: "U_MD_D_KO",
  1613. "onmousedown": U.UF.C.closure(function (obj) {
  1614. //防止拖动图标即打开了桌面应用
  1615. U.MD.D.click(this, obj);
  1616. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1617. "onclick": U.UF.C.closure(function (obj) {
  1618. //防止拖动图标即打开了桌面应用
  1619. U.MD.D.click(this, obj);
  1620. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1621. }, _frag); //
  1622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1625. }
  1626. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1627. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1628. _content = $$("div", {
  1629. className: "U_MD_D_KO",
  1630. "onmousedown": U.UF.C.closure(function (obj) {
  1631. //防止拖动图标即打开了桌面应用
  1632. U.MD.D.click(this, obj);
  1633. }, [_siesStudentDeskIconInfo[i]]),
  1634. "onclick": U.UF.C.closure(function (obj) {
  1635. //防止拖动图标即打开了桌面应用
  1636. U.MD.D.click(this, obj);
  1637. }, [_siesStudentDeskIconInfo[i]])
  1638. }, _frag); //
  1639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1642. }
  1643. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1644. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1645. _content = $$("div", {
  1646. className: "U_MD_D_KO",
  1647. "onmousedown": U.UF.C.closure(function (obj) {
  1648. //防止拖动图标即打开了桌面应用
  1649. U.MD.D.click(this, obj);
  1650. }, [_hkStudentDeskIconInfo[i]]),
  1651. "onclick": U.UF.C.closure(function (obj) {
  1652. //防止拖动图标即打开了桌面应用
  1653. U.MD.D.click(this, obj);
  1654. }, [_hkStudentDeskIconInfo[i]])
  1655. }, _frag); //
  1656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1659. }
  1660. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1661. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1662. _content = $$("div", {
  1663. className: "U_MD_D_KO",
  1664. "onmousedown": U.UF.C.closure(function (obj) {
  1665. //防止拖动图标即打开了桌面应用
  1666. U.MD.D.click(this, obj);
  1667. }, [_hkaceStudentDeskIconInfo[i]]),
  1668. "onclick": U.UF.C.closure(function (obj) {
  1669. //防止拖动图标即打开了桌面应用
  1670. U.MD.D.click(this, obj);
  1671. }, [_hkaceStudentDeskIconInfo[i]])
  1672. }, _frag); //
  1673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1676. }
  1677. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1678. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1679. _content = $$("div", {
  1680. className: "U_MD_D_KO",
  1681. "onmousedown": U.UF.C.closure(function (obj) {
  1682. //防止拖动图标即打开了桌面应用
  1683. U.MD.D.click(this, obj);
  1684. }, [_studentDesktopIconInfo[i]]),
  1685. "onclick": U.UF.C.closure(function (obj) {
  1686. //防止拖动图标即打开了桌面应用
  1687. U.MD.D.click(this, obj);
  1688. }, [_studentDesktopIconInfo[i]])
  1689. }, _frag); //
  1690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1693. }
  1694. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1695. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1696. _content = $$("div", {
  1697. className: "U_MD_D_KO",
  1698. "onmousedown": U.UF.C.closure(function (obj) {
  1699. //防止拖动图标即打开了桌面应用
  1700. U.MD.D.click(this, obj);
  1701. }, [_tcStudentDeskIconInfo[i]]),
  1702. "onclick": U.UF.C.closure(function (obj) {
  1703. //防止拖动图标即打开了桌面应用
  1704. U.MD.D.click(this, obj);
  1705. }, [_tcStudentDeskIconInfo[i]])
  1706. }, _frag); //
  1707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1710. }
  1711. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1712. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1713. _content = $$("div", {
  1714. className: "U_MD_D_KO",
  1715. "onmousedown": U.UF.C.closure(function (obj) {
  1716. //防止拖动图标即打开了桌面应用
  1717. U.MD.D.click(this, obj);
  1718. }, [_szscStudentDeskIconInfo[i]]),
  1719. "onclick": U.UF.C.closure(function (obj) {
  1720. //防止拖动图标即打开了桌面应用
  1721. U.MD.D.click(this, obj);
  1722. }, [_szscStudentDeskIconInfo[i]])
  1723. }, _frag); //
  1724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1727. }
  1728. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1729. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1730. _content = $$("div", {
  1731. className: "U_MD_D_KO",
  1732. "onmousedown": U.UF.C.closure(function (obj) {
  1733. //防止拖动图标即打开了桌面应用
  1734. U.MD.D.click(this, obj);
  1735. }, [_studentDesktopIconInfo3[i]]),
  1736. "onclick": U.UF.C.closure(function (obj) {
  1737. //防止拖动图标即打开了桌面应用
  1738. U.MD.D.click(this, obj);
  1739. }, [_studentDesktopIconInfo3[i]])
  1740. }, _frag); //
  1741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1744. }
  1745. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1746. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1747. _content = $$("div", {
  1748. className: "U_MD_D_KO",
  1749. "onmousedown": U.UF.C.closure(function (obj) {
  1750. //防止拖动图标即打开了桌面应用
  1751. U.MD.D.click(this, obj);
  1752. }, [_studentDesktopIconInfo2[i]]),
  1753. "onclick": U.UF.C.closure(function (obj) {
  1754. //防止拖动图标即打开了桌面应用
  1755. U.MD.D.click(this, obj);
  1756. }, [_studentDesktopIconInfo2[i]])
  1757. }, _frag); //
  1758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1761. }
  1762. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1763. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1764. _content = $$("div", {
  1765. className: "U_MD_D_KO",
  1766. "onmousedown": U.UF.C.closure(function (obj) {
  1767. //防止拖动图标即打开了桌面应用
  1768. U.MD.D.click(this, obj);
  1769. }, [_wanketeacherDesktopIconInfo[i]]),
  1770. "onclick": U.UF.C.closure(function (obj) {
  1771. //防止拖动图标即打开了桌面应用
  1772. U.MD.D.click(this, obj);
  1773. }, [_wanketeacherDesktopIconInfo[i]])
  1774. }, _frag); //
  1775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1778. }
  1779. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1780. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1781. _content = $$("div", {
  1782. className: "U_MD_D_KO",
  1783. "onmousedown": U.UF.C.closure(function (obj) {
  1784. //防止拖动图标即打开了桌面应用
  1785. U.MD.D.click(this, obj);
  1786. }, [_wankeAdminDesktopIconInfo[i]]),
  1787. "onclick": U.UF.C.closure(function (obj) {
  1788. //防止拖动图标即打开了桌面应用
  1789. U.MD.D.click(this, obj);
  1790. }, [_wankeAdminDesktopIconInfo[i]])
  1791. }, _frag); //
  1792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1795. }
  1796. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1797. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1798. _content = $$("div", {
  1799. className: "U_MD_D_KO",
  1800. "onmousedown": U.UF.C.closure(function (obj) {
  1801. //防止拖动图标即打开了桌面应用
  1802. U.MD.D.click(this, obj);
  1803. }, [_jccssylTeacherDeskIconInfo[i]]),
  1804. "onclick": U.UF.C.closure(function (obj) {
  1805. //防止拖动图标即打开了桌面应用
  1806. U.MD.D.click(this, obj);
  1807. }, [_jccssylTeacherDeskIconInfo[i]])
  1808. }, _frag); //
  1809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1812. }
  1813. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1814. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1815. _content = $$("div", {
  1816. className: "U_MD_D_KO",
  1817. "onmousedown": U.UF.C.closure(function (obj) {
  1818. //防止拖动图标即打开了桌面应用
  1819. U.MD.D.click(this, obj);
  1820. }, [_caleTeacherDeskIconInfo[i]]),
  1821. "onclick": U.UF.C.closure(function (obj) {
  1822. //防止拖动图标即打开了桌面应用
  1823. U.MD.D.click(this, obj);
  1824. }, [_caleTeacherDeskIconInfo[i]])
  1825. }, _frag); //
  1826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1829. }
  1830. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1831. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1832. _content = $$("div", {
  1833. className: "U_MD_D_KO",
  1834. "onmousedown": U.UF.C.closure(function (obj) {
  1835. //防止拖动图标即打开了桌面应用
  1836. U.MD.D.click(this, obj);
  1837. }, [_tpcOrganizerDeskIconInfo[i]]),
  1838. "onclick": U.UF.C.closure(function (obj) {
  1839. //防止拖动图标即打开了桌面应用
  1840. U.MD.D.click(this, obj);
  1841. }, [_tpcOrganizerDeskIconInfo[i]])
  1842. }, _frag); //
  1843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1846. }
  1847. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1848. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1849. _content = $$("div", {
  1850. className: "U_MD_D_KO",
  1851. "onmousedown": U.UF.C.closure(function (obj) {
  1852. //防止拖动图标即打开了桌面应用
  1853. U.MD.D.click(this, obj);
  1854. }, [_tpcTeacherDeskIconInfo[i]]),
  1855. "onclick": U.UF.C.closure(function (obj) {
  1856. //防止拖动图标即打开了桌面应用
  1857. U.MD.D.click(this, obj);
  1858. }, [_tpcTeacherDeskIconInfo[i]])
  1859. }, _frag); //
  1860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1863. }
  1864. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1865. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1866. _content = $$("div", {
  1867. className: "U_MD_D_KO",
  1868. "onmousedown": U.UF.C.closure(function (obj) {
  1869. //防止拖动图标即打开了桌面应用
  1870. U.MD.D.click(this, obj);
  1871. }, [_teacherDesktopIconInfo2[i]]),
  1872. "onclick": U.UF.C.closure(function (obj) {
  1873. //防止拖动图标即打开了桌面应用
  1874. U.MD.D.click(this, obj);
  1875. }, [_teacherDesktopIconInfo2[i]])
  1876. }, _frag); //
  1877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1880. }
  1881. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1882. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1883. _content = $$("div", {
  1884. className: "U_MD_D_KO",
  1885. "onmousedown": U.UF.C.closure(function (obj) {
  1886. //防止拖动图标即打开了桌面应用
  1887. U.MD.D.click(this, obj);
  1888. }, [_thuioeTeacherDeskIconInfo[i]]),
  1889. "onclick": U.UF.C.closure(function (obj) {
  1890. //防止拖动图标即打开了桌面应用
  1891. U.MD.D.click(this, obj);
  1892. }, [_thuioeTeacherDeskIconInfo[i]])
  1893. }, _frag); //
  1894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1897. }
  1898. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1899. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1900. _content = $$("div", {
  1901. className: "U_MD_D_KO",
  1902. "onmousedown": U.UF.C.closure(function (obj) {
  1903. //防止拖动图标即打开了桌面应用
  1904. U.MD.D.click(this, obj);
  1905. }, [_lotechTeacherDeskIconInfo[i]]),
  1906. "onclick": U.UF.C.closure(function (obj) {
  1907. //防止拖动图标即打开了桌面应用
  1908. U.MD.D.click(this, obj);
  1909. }, [_lotechTeacherDeskIconInfo[i]])
  1910. }, _frag); //
  1911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1914. }//
  1915. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1916. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1917. _content = $$("div", {
  1918. className: "U_MD_D_KO",
  1919. "onmousedown": U.UF.C.closure(function (obj) {
  1920. //防止拖动图标即打开了桌面应用
  1921. U.MD.D.click(this, obj);
  1922. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1923. "onclick": U.UF.C.closure(function (obj) {
  1924. //防止拖动图标即打开了桌面应用
  1925. U.MD.D.click(this, obj);
  1926. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1927. }, _frag); //
  1928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1931. }
  1932. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1933. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1934. _content = $$("div", {
  1935. className: "U_MD_D_KO",
  1936. "onmousedown": U.UF.C.closure(function (obj) {
  1937. //防止拖动图标即打开了桌面应用
  1938. U.MD.D.click(this, obj);
  1939. }, [_siesTeacherDeskIconInfo[i]]),
  1940. "onclick": U.UF.C.closure(function (obj) {
  1941. //防止拖动图标即打开了桌面应用
  1942. U.MD.D.click(this, obj);
  1943. }, [_siesTeacherDeskIconInfo[i]])
  1944. }, _frag); //
  1945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  1947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  1948. }
  1949. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  1950. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  1951. _content = $$("div", {
  1952. className: "U_MD_D_KO",
  1953. "onmousedown": U.UF.C.closure(function (obj) {
  1954. //防止拖动图标即打开了桌面应用
  1955. U.MD.D.click(this, obj);
  1956. }, [_longhuaTeacherDeskIconInfo[i]]),
  1957. "onclick": U.UF.C.closure(function (obj) {
  1958. //防止拖动图标即打开了桌面应用
  1959. U.MD.D.click(this, obj);
  1960. }, [_longhuaTeacherDeskIconInfo[i]])
  1961. }, _frag); //
  1962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  1964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  1965. }
  1966. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  1967. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  1968. _content = $$("div", {
  1969. className: "U_MD_D_KO",
  1970. "onmousedown": U.UF.C.closure(function (obj) {
  1971. //防止拖动图标即打开了桌面应用
  1972. U.MD.D.click(this, obj);
  1973. }, [_yunhaiTeacherDeskIconInfo[i]]),
  1974. "onclick": U.UF.C.closure(function (obj) {
  1975. //防止拖动图标即打开了桌面应用
  1976. U.MD.D.click(this, obj);
  1977. }, [_yunhaiTeacherDeskIconInfo[i]])
  1978. }, _frag); //
  1979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  1981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  1982. } //_hkStudentDeskIconInfo
  1983. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1984. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  1985. _content = $$("div", {
  1986. className: "U_MD_D_KO",
  1987. "onmousedown": U.UF.C.closure(function (obj) {
  1988. //防止拖动图标即打开了桌面应用
  1989. U.MD.D.click(this, obj);
  1990. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  1991. "onclick": U.UF.C.closure(function (obj) {
  1992. //防止拖动图标即打开了桌面应用
  1993. U.MD.D.click(this, obj);
  1994. }, [_hkZJLSTeacherDeskIconInfo[i]])
  1995. }, _frag); //
  1996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  1998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  1999. }
  2000. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2001. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2002. _content = $$("div", {
  2003. className: "U_MD_D_KO",
  2004. "onmousedown": U.UF.C.closure(function (obj) {
  2005. //防止拖动图标即打开了桌面应用
  2006. U.MD.D.click(this, obj);
  2007. }, [_hkTeacherDeskIconInfo[i]]),
  2008. "onclick": U.UF.C.closure(function (obj) {
  2009. //防止拖动图标即打开了桌面应用
  2010. U.MD.D.click(this, obj);
  2011. }, [_hkTeacherDeskIconInfo[i]])
  2012. }, _frag); //
  2013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2016. }
  2017. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2018. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2019. _content = $$("div", {
  2020. className: "U_MD_D_KO",
  2021. "onmousedown": U.UF.C.closure(function (obj) {
  2022. //防止拖动图标即打开了桌面应用
  2023. U.MD.D.click(this, obj);
  2024. }, [_hkaceTeacherDeskIconInfo[i]]),
  2025. "onclick": U.UF.C.closure(function (obj) {
  2026. //防止拖动图标即打开了桌面应用
  2027. U.MD.D.click(this, obj);
  2028. }, [_hkaceTeacherDeskIconInfo[i]])
  2029. }, _frag); //
  2030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2033. }
  2034. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2035. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2036. _content = $$("div", {
  2037. className: "U_MD_D_KO",
  2038. "onmousedown": U.UF.C.closure(function (obj) {
  2039. //防止拖动图标即打开了桌面应用
  2040. U.MD.D.click(this, obj);
  2041. }, [_gdjgAdminDeskIconInfo[i]]),
  2042. "onclick": U.UF.C.closure(function (obj) {
  2043. //防止拖动图标即打开了桌面应用
  2044. U.MD.D.click(this, obj);
  2045. }, [_gdjgAdminDeskIconInfo[i]])
  2046. }, _frag); //
  2047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2050. }
  2051. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2052. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2053. _content = $$("div", {
  2054. className: "U_MD_D_KO",
  2055. "onmousedown": U.UF.C.closure(function (obj) {
  2056. //防止拖动图标即打开了桌面应用
  2057. U.MD.D.click(this, obj);
  2058. }, [_gdjgTeacherDeskIconInfo[i]]),
  2059. "onclick": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_gdjgTeacherDeskIconInfo[i]])
  2063. }, _frag); //
  2064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2067. }
  2068. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2069. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2070. _content = $$("div", {
  2071. className: "U_MD_D_KO",
  2072. "onmousedown": U.UF.C.closure(function (obj) {
  2073. //防止拖动图标即打开了桌面应用
  2074. U.MD.D.click(this, obj);
  2075. }, [_szherTeacherDeskIconInfo[i]]),
  2076. "onclick": U.UF.C.closure(function (obj) {
  2077. //防止拖动图标即打开了桌面应用
  2078. U.MD.D.click(this, obj);
  2079. }, [_szherTeacherDeskIconInfo[i]])
  2080. }, _frag); //
  2081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2084. }
  2085. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2086. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2087. _content = $$("div", {
  2088. className: "U_MD_D_KO",
  2089. "onmousedown": U.UF.C.closure(function (obj) {
  2090. //防止拖动图标即打开了桌面应用
  2091. U.MD.D.click(this, obj);
  2092. }, [_heyuannAdminDeskIconInfo[i]]),
  2093. "onclick": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_heyuannAdminDeskIconInfo[i]])
  2097. }, _frag); //
  2098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2101. }
  2102. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2103. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2104. _content = $$("div", {
  2105. className: "U_MD_D_KO",
  2106. "onmousedown": U.UF.C.closure(function (obj) {
  2107. //防止拖动图标即打开了桌面应用
  2108. U.MD.D.click(this, obj);
  2109. }, [_heyuanTeacherDeskIconInfo[i]]),
  2110. "onclick": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_heyuanTeacherDeskIconInfo[i]])
  2114. }, _frag); //
  2115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2118. } //
  2119. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2120. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2121. _content = $$("div", {
  2122. className: "U_MD_D_KO",
  2123. "onmousedown": U.UF.C.closure(function (obj) {
  2124. //防止拖动图标即打开了桌面应用
  2125. U.MD.D.click(this, obj);
  2126. }, [_dseiAdminDeskIconInfo[i]]),
  2127. "onclick": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_dseiAdminDeskIconInfo[i]])
  2131. }, _frag); //
  2132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2135. }
  2136. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2137. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2138. _content = $$("div", {
  2139. className: "U_MD_D_KO",
  2140. "onmousedown": U.UF.C.closure(function (obj) {
  2141. //防止拖动图标即打开了桌面应用
  2142. U.MD.D.click(this, obj);
  2143. }, [_dseiTeacherDeskIconInfo[i]]),
  2144. "onclick": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_dseiTeacherDeskIconInfo[i]])
  2148. }, _frag); //
  2149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2152. } //
  2153. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2154. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2155. _content = $$("div", {
  2156. className: "U_MD_D_KO",
  2157. "onmousedown": U.UF.C.closure(function (obj) {
  2158. //防止拖动图标即打开了桌面应用
  2159. U.MD.D.click(this, obj);
  2160. }, [_chjyjAdminDeskIconInfo[i]]),
  2161. "onclick": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_chjyjAdminDeskIconInfo[i]])
  2165. }, _frag); //
  2166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2169. }//
  2170. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2171. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2172. _content = $$("div", {
  2173. className: "U_MD_D_KO",
  2174. "onmousedown": U.UF.C.closure(function (obj) {
  2175. //防止拖动图标即打开了桌面应用
  2176. U.MD.D.click(this, obj);
  2177. }, [_chjyjTeacherDeskIconInfo[i]]),
  2178. "onclick": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_chjyjTeacherDeskIconInfo[i]])
  2182. }, _frag); //
  2183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2186. }
  2187. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2188. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2189. _content = $$("div", {
  2190. className: "U_MD_D_KO",
  2191. "onmousedown": U.UF.C.closure(function (obj) {
  2192. //防止拖动图标即打开了桌面应用
  2193. U.MD.D.click(this, obj);
  2194. }, [_szjkyAdminDeskIconInfo[i]]),
  2195. "onclick": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_szjkyAdminDeskIconInfo[i]])
  2199. }, _frag); //
  2200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2203. }//
  2204. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2205. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2206. _content = $$("div", {
  2207. className: "U_MD_D_KO",
  2208. "onmousedown": U.UF.C.closure(function (obj) {
  2209. //防止拖动图标即打开了桌面应用
  2210. U.MD.D.click(this, obj);
  2211. }, [_szjkyTeacherDeskIconInfo[i]]),
  2212. "onclick": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_szjkyTeacherDeskIconInfo[i]])
  2216. }, _frag); //
  2217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2220. }
  2221. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2222. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2223. _content = $$("div", {
  2224. className: "U_MD_D_KO",
  2225. "onmousedown": U.UF.C.closure(function (obj) {
  2226. //防止拖动图标即打开了桌面应用
  2227. U.MD.D.click(this, obj);
  2228. }, [_futianAdminDeskIconInfo[i]]),
  2229. "onclick": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_futianAdminDeskIconInfo[i]])
  2233. }, _frag); //
  2234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2237. }
  2238. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2239. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2240. _content = $$("div", {
  2241. className: "U_MD_D_KO",
  2242. "onmousedown": U.UF.C.closure(function (obj) {
  2243. //防止拖动图标即打开了桌面应用
  2244. U.MD.D.click(this, obj);
  2245. }, [_futianTeacherDeskIconInfo[i]]),
  2246. "onclick": U.UF.C.closure(function (obj) {
  2247. //防止拖动图标即打开了桌面应用
  2248. U.MD.D.click(this, obj);
  2249. }, [_futianTeacherDeskIconInfo[i]])
  2250. }, _frag); //
  2251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2254. }
  2255. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2256. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  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. }, [_MingdeTeacherDeskIcon[i]]),
  2263. "onclick": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_MingdeTeacherDeskIcon[i]])
  2267. }, _frag); //
  2268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2271. }
  2272. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2273. for (i = 0; i < _lhsAdminDesktopIconInfo.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. }, [_lhsAdminDesktopIconInfo[i]]),
  2280. "onclick": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_lhsAdminDesktopIconInfo[i]])
  2284. }, _frag); //
  2285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2288. }
  2289. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2290. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2291. _content = $$("div", {
  2292. className: "U_MD_D_KO",
  2293. "onmousedown": U.UF.C.closure(function (obj) {
  2294. //防止拖动图标即打开了桌面应用
  2295. U.MD.D.click(this, obj);
  2296. }, [_lhsteacherDesktopIconInfo[i]]),
  2297. "onclick": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_lhsteacherDesktopIconInfo[i]])
  2301. }, _frag); //
  2302. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2303. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2304. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2305. }
  2306. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2307. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2308. _content = $$("div", {
  2309. className: "U_MD_D_KO",
  2310. "onmousedown": U.UF.C.closure(function (obj) {
  2311. //防止拖动图标即打开了桌面应用
  2312. U.MD.D.click(this, obj);
  2313. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2314. "onclick": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_zhoujiateacherDesktopIconInfo[i]])
  2318. }, _frag); //
  2319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2322. }
  2323. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2324. for (i = 0; i < _hanDeskIcon.length; i++) {
  2325. _content = $$("div", {
  2326. className: "U_MD_D_KO",
  2327. "onmousedown": U.UF.C.closure(function (obj) {
  2328. //防止拖动图标即打开了桌面应用
  2329. U.MD.D.click(this, obj);
  2330. }, [_hanDeskIcon[i]]),
  2331. "onclick": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_hanDeskIcon[i]])
  2335. }, _frag); //
  2336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2339. }
  2340. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2341. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2342. _content = $$("div", {
  2343. className: "U_MD_D_KO",
  2344. "onmousedown": U.UF.C.closure(function (obj) {
  2345. //防止拖动图标即打开了桌面应用
  2346. U.MD.D.click(this, obj);
  2347. }, [_orgStemDeskIcon[i]]),
  2348. "onclick": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_orgStemDeskIcon[i]])
  2352. }, _frag); //
  2353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2356. }
  2357. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2358. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2359. _content = $$("div", {
  2360. className: "U_MD_D_KO",
  2361. "onmousedown": U.UF.C.closure(function (obj) {
  2362. //防止拖动图标即打开了桌面应用
  2363. U.MD.D.click(this, obj);
  2364. }, [_szulsDeskIcon[i]]),
  2365. "onclick": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_szulsDeskIcon[i]])
  2369. }, _frag); //
  2370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2373. }
  2374. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2375. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2376. _content = $$("div", {
  2377. className: "U_MD_D_KO",
  2378. "onmousedown": U.UF.C.closure(function (obj) {
  2379. //防止拖动图标即打开了桌面应用
  2380. U.MD.D.click(this, obj);
  2381. }, [_orgDesktopIconInfo[i]]),
  2382. "onclick": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_orgDesktopIconInfo[i]])
  2386. }, _frag); //
  2387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2390. }
  2391. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2392. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2393. _content = $$("div", {
  2394. className: "U_MD_D_KO",
  2395. "onmousedown": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_schoolDesktopIconInfo[i]]),
  2399. "onclick": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_schoolDesktopIconInfo[i]])
  2403. }, _frag); //
  2404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2407. }
  2408. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2409. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2410. _content = $$("div", {
  2411. className: "U_MD_D_KO",
  2412. "onmousedown": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_GMteacherDesktopIconInfo[i]]),
  2416. "onclick": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_GMteacherDesktopIconInfo[i]])
  2420. }, _frag); //
  2421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2424. }
  2425. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2426. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_SONGteacherDesktopIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_SONGteacherDesktopIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2443. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_GMstudentDesktopIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_GMstudentDesktopIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2458. }
  2459. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2460. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_tcTeacherDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_tcTeacherDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2475. }
  2476. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2477. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2478. _content = $$("div", {
  2479. className: "U_MD_D_KO",
  2480. "onmousedown": U.UF.C.closure(function (obj) {
  2481. //防止拖动图标即打开了桌面应用
  2482. U.MD.D.click(this, obj);
  2483. }, [_tcOrganizerDeskIconInfo[i]]),
  2484. "onclick": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_tcOrganizerDeskIconInfo[i]])
  2488. }, _frag); //
  2489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2492. }
  2493. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2494. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2495. _content = $$("div", {
  2496. className: "U_MD_D_KO",
  2497. "onmousedown": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_szscTeacherDeskIconInfo[i]]),
  2501. "onclick": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_szscTeacherDeskIconInfo[i]])
  2505. }, _frag); //
  2506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2509. }
  2510. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2511. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_szscOrganizerDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_szscOrganizerDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else {
  2528. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_teacherDesktopIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_teacherDesktopIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. }
  2545. } else {
  2546. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. style: { 'width': '124px', 'height': '145px' },
  2550. "onmousedown": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_easyDesktopIconInfo[i]]),
  2554. "onclick": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_easyDesktopIconInfo[i]])
  2558. }, _frag); //
  2559. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2562. }
  2563. }
  2564. if (type == 1) {
  2565. //加载好后给图标定位
  2566. U.MD.D.iconPostion($(_frag).Child());
  2567. } else {
  2568. //加载好后给图标定位
  2569. U.MD.D.iconPostion2($(_frag).Child());
  2570. }
  2571. //把图标加载到页面
  2572. el.appendChild(_frag);
  2573. }
  2574. /**
  2575. * 显示任务栏
  2576. *
  2577. * @param {element} 桌面元素
  2578. */
  2579. U.MD.D.I.displayTaskbar = function (el) {
  2580. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2581. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2582. //任务栏位置变化
  2583. U.selectEl(el).css({ "bottom": "0px" });
  2584. //桌面位置变话
  2585. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2586. }
  2587. }
  2588. //#region 桌面图标拖动逻辑
  2589. /**
  2590. * 桌面排列图标
  2591. *
  2592. * @param {element} 桌面元素
  2593. * @param {object} 上下相距的距离
  2594. * @param {object} 左右相距的距离
  2595. * @return {object} 命名空间
  2596. */
  2597. U.MD.D.iconPostion = function (childs, top, left) {
  2598. var i; //用于循环处理
  2599. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2600. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2601. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2602. for (i = 0; i < childs.length; i++) {
  2603. //如果竖排top超过了范围处理
  2604. if (top + 95 > US.height - 10) {
  2605. //left超过了页面范围处理,则向上重叠打印处理
  2606. if ((left + 180) > US.width) {
  2607. top -= 110;
  2608. left -= 90;
  2609. }
  2610. //没有超过范围,那么left+90添加到下一个竖排打印
  2611. else {
  2612. left += 90;
  2613. top = 15;
  2614. };
  2615. }
  2616. //给图标的位置赋值
  2617. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2618. if (i < childs.length - 1) {
  2619. //页面图标每次向下加95
  2620. top += 95;
  2621. }
  2622. }
  2623. //返回最后调用的图标的位置
  2624. return [top, left];
  2625. }
  2626. /**
  2627. * 桌面排列图标
  2628. *
  2629. * @param {element} 桌面元素
  2630. * @param {object} 上下相距的距离
  2631. * @param {object} 左右相距的距离
  2632. * @return {object} 命名空间
  2633. */
  2634. U.MD.D.iconPostion2 = function (childs, top, left) {
  2635. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2636. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2637. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2638. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2639. for (i = 0; i < childs.length; i++) {
  2640. //如果竖排top超过了范围处理
  2641. if (left + 150 > US.width - 10) {
  2642. //left超过了页面范围处理,则向上重叠打印处理
  2643. if ((top + 180) > US.Height) {
  2644. top -= 150;
  2645. left -= 150;
  2646. }
  2647. //没有超过范围,那么left+90添加到下一个竖排打印
  2648. else {
  2649. top += 150;
  2650. left = ol;
  2651. };
  2652. }
  2653. //给图标的位置赋值
  2654. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2655. if (i < childs.length - 1) {
  2656. //页面图标每次向下加95
  2657. left += 150;
  2658. }
  2659. }
  2660. //返回最后调用的图标的位置
  2661. return [top, left];
  2662. }
  2663. /**
  2664. * 桌面点击事件逻辑
  2665. *
  2666. * @param {element} 桌面元素
  2667. * @param {object} 上下相距的距离
  2668. * @param {object} 左右相距的距离
  2669. * @return {object} 命名空间
  2670. */
  2671. U.MD.D.click = function (el, obj) {
  2672. var _buttonnumber = event.button; //点击的按钮的事件值
  2673. var _userinfo = US.userInfo;
  2674. U.UF.EV.stopBubble(); //阻止向上冒泡
  2675. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2676. if (_buttonnumber < 2) {
  2677. //如果是click事件的处理
  2678. if (event.type == "click") {
  2679. //如果元素在mousemove事件中没有移动则出发click事件
  2680. if (!U.MD.D.I.IsDrag) {
  2681. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2682. U.alert("请先登录您的账号!");
  2683. setTimeout(() => {
  2684. U.MD.U.L.login();
  2685. }, 2000);
  2686. } else {
  2687. //打开应用处理
  2688. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2689. }
  2690. }
  2691. }
  2692. //如果是mouse事件的处理
  2693. else {
  2694. if (US.Config.type == '1') {
  2695. //拖动处理,添加拖动和拖动结束事件
  2696. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2697. }
  2698. }
  2699. U.MD.D.I.IsDrag = false;
  2700. }
  2701. }
  2702. /**
  2703. * 拖动的处理
  2704. *
  2705. */
  2706. U.MD.D.iconMove = function () {
  2707. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2708. U.MD.D.I.IsDrag = true;
  2709. }
  2710. /**
  2711. * 拖动结束后,这里是定位处理,以网状的形式定位
  2712. *
  2713. * @param {element} 拖动的元素
  2714. * @return {object} 命名空间
  2715. */
  2716. U.MD.D.iconUp = function (el) {
  2717. var _top = 15,
  2718. _left = 20,
  2719. _margin,
  2720. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2721. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2722. if (_positioninfo["OT"] > 15) {
  2723. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2724. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2725. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2726. }
  2727. if (_positioninfo["OL"] > 20) {
  2728. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2729. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2730. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2731. }
  2732. //while循环判断么一个重叠的元素
  2733. do {
  2734. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2735. _top = _positioninfo[0] + 95; //得到定位后的top
  2736. _left = _positioninfo[1]; //得到定位后的left
  2737. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2738. }
  2739. /**
  2740. * 判断拖动后图标是否重叠
  2741. *
  2742. * @param {element} 拖动的元素
  2743. * @param {element} 桌面所有的元素
  2744. * @param {array} 拖动元素的位置
  2745. ----------[0] 上 top
  2746. ----------[1] 左 left
  2747. * @return {object} 命名空间
  2748. */
  2749. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2750. //循环所有的图标
  2751. for (var i = 0; i < childs.length; i++) {
  2752. //判断有没有和该图标诶子重叠的元素
  2753. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2754. return childs[i]; //如果有返回
  2755. }
  2756. }
  2757. }
  2758. //#endregion
  2759. //#endregion
  2760. //#region 桌面应用
  2761. /**
  2762. * 打开应用
  2763. *
  2764. * @param {string} 类型
  2765. -----------------Disk 网盘系统
  2766. -----------------PDisk 学习系统网盘
  2767. -----------------Poto 图片
  2768. -----------------Video 视频
  2769. -----------------Music 音乐
  2770. -----------------Word word
  2771. -----------------Excel excel
  2772. -----------------Txt 记事本
  2773. -----------------PB 学习系统
  2774. -----------------Blog 朋友圈系统
  2775. -----------------FTP ftp系统
  2776. -----------------Group 好友群
  2777. -----------------SY 首页系统
  2778. -----------------Set 个人设置
  2779. -----------------XSet 系统设置
  2780. -----------------App 我们所有的app
  2781. -----------------BC c.1473.cn 平台
  2782. -----------------CWeb d.1473.cn 变成平台
  2783. -----------------其他的外联系统 我们统一用iframe打开
  2784. * @param {array} 类型
  2785. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2786. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2787. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2788. 如果第一个参数为其他,则无第二个参数
  2789. * @returns {array}
  2790. */
  2791. window.addEventListener('message', function (e) { // 监听 message 事件
  2792. // alert(e.data.type);
  2793. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2794. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2795. //3是展示全部阶段 2学生 1老师 4专家
  2796. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2797. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2798. //3是展示全部阶段 2学生 1老师 4专家
  2799. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2800. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2801. //3是展示全部阶段 2学生 1老师 4专家
  2802. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2803. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2804. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2805. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2806. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2807. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2808. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2809. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2810. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2811. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2812. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2813. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2814. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2815. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2816. //3是展示全部阶段 2学生 1老师 4专家
  2817. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2818. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2819. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2820. U.MD.D.I.selectUser();
  2821. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2822. var _formel = document.getElementById("study");
  2823. U.UF.F.windowZooming(_formel);
  2824. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2825. var _formel = document.getElementById("studyDetail");
  2826. U.UF.F.windowZooming(_formel);
  2827. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2828. var _formel = document.getElementById("studyDetail");
  2829. U.UF.F.windowZooming(_formel);
  2830. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2831. var _formel = document.getElementById("studentStudy");
  2832. U.UF.F.windowZooming(_formel);
  2833. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2834. // var _formel = document.getElementById("study");
  2835. //如果最大化了,那么就把他缩小
  2836. // if (_formel.ismaximize) {
  2837. // return;
  2838. // }
  2839. // U.UF.F.windowZooming(_formel);
  2840. // U.UF.F.topWindow(_formel);
  2841. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2842. // var _formel = document.getElementById("studyDetail");
  2843. //如果最大化了,那么就把他缩小
  2844. // if (_formel.ismaximize) {
  2845. // return;
  2846. // }
  2847. // U.UF.F.windowZooming(_formel);
  2848. // U.UF.F.topWindow(_formel);
  2849. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2850. // var _formel = document.getElementById("studentStudy");
  2851. // if (_formel.ismaximize) {
  2852. // return;
  2853. // }
  2854. // U.UF.F.windowZooming(_formel);
  2855. // U.UF.F.topWindow(_formel);
  2856. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2857. var _formel = document.getElementById("study");
  2858. // if (_formel.ismaximize) {
  2859. // return;
  2860. // }
  2861. // U.UF.F.windowZooming(_formel);
  2862. U.UF.F.topWindow(_formel);
  2863. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2864. var _formel = document.getElementById("studentIndex");
  2865. U.UF.F.windowZooming(_formel);
  2866. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2867. var _formel = document.getElementById("studyDetailS");
  2868. U.UF.F.windowZooming(_formel);
  2869. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2870. var _formel = document.getElementById("studioIndex");
  2871. U.UF.F.windowZooming(_formel);
  2872. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2873. var _formel = document.getElementById("studyDetailStudio");
  2874. U.UF.F.windowZooming(_formel);
  2875. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2876. var _formel = document.getElementById("studyDetailStudio");
  2877. U.UF.F.windowZooming(_formel);
  2878. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2879. var _formel = document.getElementById("studyDetailNT");
  2880. U.UF.F.windowZooming(_formel);
  2881. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2882. var _formel = document.getElementById("studyDetailS");
  2883. U.UF.F.windowZooming(_formel);
  2884. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2885. var _formel = document.getElementById("studyDetailS");
  2886. U.UF.F.topWindow(_formel);
  2887. } else if (e.data.tools && e.data.tools == "1") {
  2888. // U.MD.D.I.openApplication("whiteboard")
  2889. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2890. } else if (e.data.tools && e.data.tools == "2") {
  2891. U.MD.D.I.openApplication("note")
  2892. } else if (e.data.tools && e.data.tools == "3") {
  2893. // U.MD.D.I.openApplication("mind")
  2894. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2895. } else if (e.data.tools && e.data.tools == "4") {
  2896. U.MD.D.I.openApplication("investigation")
  2897. } else if (e.data.tools && e.data.tools == "6") {
  2898. // U.MD.D.I.openApplication("doc")
  2899. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2900. } else if (e.data.tools && e.data.tools == "7") {
  2901. // U.MD.D.I.openApplication("mindNetwork")
  2902. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2903. } else if (e.data.tools && e.data.tools == "8") {
  2904. U.MD.D.I.openApplication("library")
  2905. } else if (e.data.tools && e.data.tools == "17") {
  2906. U.MD.D.I.openApplication("stuLibrary")
  2907. } else if (e.data.tools && e.data.tools == "18") {
  2908. U.MD.D.I.openApplication("train")
  2909. } else if (e.data.tools && e.data.tools == "21") {
  2910. U.MD.D.I.openApplication("program")
  2911. } else if (e.data.tools && e.data.tools == "22") {
  2912. U.MD.D.I.openApplication("AIprogram2")
  2913. } else if (e.data.tools && e.data.tools == "23") {
  2914. U.MD.D.I.openApplication("Pythonprogram")
  2915. } else if (e.data.tools && e.data.tools == "24") {
  2916. U.MD.D.I.openApplication("AIprogram")
  2917. } else if (e.data.tools && e.data.tools == "25") {
  2918. U.MD.D.I.openApplication("sys")
  2919. } else if (e.data.tools && e.data.tools == "26") {
  2920. // U.MD.D.I.openApplication("courseDesign")
  2921. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2922. } else if (e.data.tools && e.data.tools == "31") {
  2923. U.MD.D.I.openApplication("netWorkPanel")
  2924. } else if (e.data.tools && e.data.tools == "32") {
  2925. U.MD.D.I.openApplication("codeEdit")
  2926. } else if (e.data.tools && e.data.tools == "57") {
  2927. U.MD.D.I.openApplication("CocoPi")
  2928. } else if (e.data.tools && e.data.tools == "63") {
  2929. U.MD.D.I.openApplication("Wood")
  2930. } else if (e.data.tools && e.data.tools == "58") {
  2931. U.MD.D.I.openApplication("car")
  2932. } else if (e.data.tools && e.data.tools == "59") {
  2933. U.MD.D.I.openApplication("lineSearch")
  2934. } else if (e.data.tools && e.data.tools == "60") {
  2935. U.MD.D.I.openApplication("deepLearning")
  2936. } else if (e.data.tools && e.data.tools == "61") {
  2937. U.MD.D.I.openApplication("allHistory")
  2938. } else if (e.data.tools && e.data.tools == "28") {
  2939. U.MD.D.I.openApplication("translation")
  2940. } else if (e.data.tools && e.data.tools == "37") {
  2941. U.MD.D.I.openApplication("mohe")
  2942. } else if (e.data.tools && e.data.tools == "38") {
  2943. U.MD.D.I.openApplication("24game")
  2944. } else if (e.data.tools && e.data.tools == "39") {
  2945. U.MD.D.I.openApplication("GeoGebra")
  2946. } else if (e.data.tools && e.data.tools == "43") {
  2947. U.MD.D.I.openApplication("studentEvaluate")
  2948. } else if (e.data.tools && e.data.tools == "44") {
  2949. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  2950. } else if (e.data.tools && e.data.tools == "46") {
  2951. U.MD.D.I.openApplication("project")
  2952. } else if (e.data.tools && e.data.tools == "1s") {
  2953. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2954. } else if (e.data.tools && e.data.tools == "3s") {
  2955. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2956. } else if (e.data.tools && e.data.tools == "6s") {
  2957. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2958. } else if (e.data.tools && e.data.tools == "1studio") {
  2959. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2960. } else if (e.data.tools && e.data.tools == "3studio") {
  2961. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2962. } else if (e.data.tools && e.data.tools == "6studio") {
  2963. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2964. } else if (e.data.tools && e.data.tools == "3y") {
  2965. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2966. } else if (e.data.tools && e.data.tools == "1y") {
  2967. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2968. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  2969. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  2970. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  2971. U.MD.D.I.openApplication("AIAnalyse")
  2972. } else if (e.data.tools && e.data.tools == "1teacher") {
  2973. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2974. } else if (e.data.tools && e.data.tools == "3teacher") {
  2975. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2976. } else if (e.data.tools && e.data.tools == "7teacher") {
  2977. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2978. } else if (e.data.tools && e.data.tools == "1teacherE") {
  2979. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2980. } else if (e.data.tools && e.data.tools == "3teacherE") {
  2981. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2982. } else if (e.data.tools && e.data.tools == "1E") {
  2983. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2984. } else if (e.data.tools && e.data.tools == "3E") {
  2985. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2986. } else if (e.data.tools && e.data.tools == "57y") {
  2987. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2988. } else if (e.data.tools && e.data.tools == "57u") {
  2989. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2990. } else if (e.data.tools && e.data.tools == "57teacher") {
  2991. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  2992. } else if (e.data.tools && e.data.tools == "64") {
  2993. U.MD.D.I.openApplication("AIChat")
  2994. } else if (e.data.tools && e.data.tools == "66") {
  2995. U.MD.D.I.openApplication("formulaEdi")
  2996. } else if (e.data.tools && e.data.tools == "67") {
  2997. U.MD.D.I.openApplication("molStr")
  2998. } else if (e.data.tools && e.data.tools == "68") {
  2999. U.MD.D.I.openApplication("timeAxis")
  3000. } else if (e.data.tools && e.data.tools == "openCourse") {
  3001. let _data = {
  3002. typea: e.data.typea || '',
  3003. typeb: e.data.typeb || '',
  3004. typed: e.data.typed || '',
  3005. }
  3006. U.MD.D.I.openInApplication("index", _data)
  3007. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3008. let _data = {
  3009. classid: e.data.classid || '',
  3010. }
  3011. U.MD.D.I.openInApplication("dataClass", _data)
  3012. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3013. let _data = {
  3014. cid: e.data.cid || '',
  3015. gid: e.data.gid || '',
  3016. }
  3017. U.MD.D.I.openInApplication("opencCscl", _data)
  3018. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3019. U.MD.D.I.openApplication("dataBoardTest")
  3020. }
  3021. });
  3022. U.MD.D.I.selectUser = function () {
  3023. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3024. if (res.value[0].length > 0) {
  3025. US.userInfo = res.value[0][0];
  3026. $(".userName")[0].innerHTML = US.userInfo.username;
  3027. }
  3028. }, [], { "type": "GET", "withCredentials": true });
  3029. }
  3030. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3031. var _userinfo = US.userInfo, //登录用户信息
  3032. _userid = US.userInfo.userid, //登录用户id
  3033. _oid = _userinfo.organizeid,
  3034. _type = US.userInfo.type,
  3035. _org = US.userInfo.org,
  3036. _role = US.userInfo.role,
  3037. _classId = US.userInfo.classid;
  3038. if (_type == 4) {
  3039. tType = 4
  3040. }
  3041. switch (str) {
  3042. case "studyDetailNT": //无终端模式
  3043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3044. setTimeout(() => {
  3045. U.MD.U.L.login();
  3046. }, 2000);
  3047. } else {
  3048. _formdiv = new U.UF.UI.form(
  3049. "课程详情",
  3050. $$("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 }), {
  3051. "id": "studyDetailNT",
  3052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3053. "onresize": function () { }
  3054. }, {
  3055. closecallback: function () { }
  3056. }, { "style": { "height": "36px" } }).form; //创建窗体
  3057. _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); } }
  3058. break;
  3059. }
  3060. case "studyDetail":
  3061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3062. setTimeout(() => {
  3063. U.MD.U.L.login();
  3064. }, 2000);
  3065. } else {
  3066. _formdiv = new U.UF.UI.form(
  3067. "课程详情",
  3068. $$("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 }), {
  3069. "id": "studyDetail",
  3070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3071. "onresize": function () { }
  3072. }, {
  3073. closecallback: function () { }
  3074. }, { "style": { "height": "36px" } }).form; //创建窗体
  3075. _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); } }
  3076. break;
  3077. }
  3078. case "studyDetailTrain":
  3079. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3080. setTimeout(() => {
  3081. U.MD.U.L.login();
  3082. }, 2000);
  3083. } else {
  3084. _formdiv = new U.UF.UI.form(
  3085. "培训详情",
  3086. $$("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 }), {
  3087. "id": "studyDetailTrain",
  3088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3089. "onresize": function () { }
  3090. }, {
  3091. closecallback: function () { }
  3092. }, { "style": { "height": "36px" } }).form; //创建窗体
  3093. _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); } }
  3094. break;
  3095. }
  3096. case "studyDetailS":
  3097. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3098. setTimeout(() => {
  3099. U.MD.U.L.login();
  3100. }, 2000);
  3101. } else {
  3102. _formdiv = new U.UF.UI.form(
  3103. "项目详情",
  3104. $$("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 }), {
  3105. "id": "studyDetailS",
  3106. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3107. "onresize": function () { }
  3108. }, {
  3109. closecallback: function () { }
  3110. }, { "style": { "height": "36px" } }).form; //创建窗体
  3111. _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); } }
  3112. break;
  3113. }
  3114. case "studyDetailStudio":
  3115. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3116. setTimeout(() => {
  3117. U.MD.U.L.login();
  3118. }, 2000);
  3119. } else {
  3120. _formdiv = new U.UF.UI.form(
  3121. "工作详情",
  3122. $$("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 }), {
  3123. "id": "studyDetailStudio",
  3124. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3125. "onresize": function () { }
  3126. }, {
  3127. closecallback: function () { }
  3128. }, { "style": { "height": "36px" } }).form; //创建窗体
  3129. _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); } }
  3130. break;
  3131. }
  3132. case "studyDetailS5":
  3133. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3134. setTimeout(() => {
  3135. U.MD.U.L.login();
  3136. }, 2000);
  3137. } else {
  3138. _formdiv = new U.UF.UI.form(
  3139. "项目详情",
  3140. $$("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 }), {
  3141. "id": "studyDetailS",
  3142. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3143. "onresize": function () { }
  3144. }, {
  3145. closecallback: function () { }
  3146. }, { "style": { "height": "36px" } }).form; //创建窗体
  3147. _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); } }
  3148. break;
  3149. }
  3150. case "studyDetailGM":
  3151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3152. setTimeout(() => {
  3153. U.MD.U.L.login();
  3154. }, 2000);
  3155. } else {
  3156. _formdiv = new U.UF.UI.form(
  3157. "课程详情",
  3158. $$("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 }), {
  3159. "id": "studyDetail",
  3160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3161. "onresize": function () { }
  3162. }, {
  3163. closecallback: function () { }
  3164. }, { "style": { "height": "36px" } }).form; //创建窗体
  3165. _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); } }
  3166. break;
  3167. }
  3168. case "hanUrl":
  3169. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3170. setTimeout(() => {
  3171. U.MD.U.L.login();
  3172. }, 2000);
  3173. } else {
  3174. _formdiv = new U.UF.UI.form(
  3175. "汉字宫",
  3176. $$("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" }), {
  3177. "id": "hanUrl",
  3178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3179. "onresize": function () { }
  3180. }, {
  3181. closecallback: function () { }
  3182. }, { "style": { "height": "36px" } }).form; //创建窗体
  3183. _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); } }
  3184. break;
  3185. }
  3186. case "index":
  3187. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3188. setTimeout(() => {
  3189. U.MD.U.L.login();
  3190. }, 2000);
  3191. } else {
  3192. _formdiv = new U.UF.UI.form(
  3193. "课程中心",
  3194. $$("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 }), {
  3195. "id": "study",
  3196. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3197. "onresize": function () { }
  3198. }, {
  3199. closecallback: function () { }
  3200. }, { "style": { "height": "36px" } }).form; //创建窗体
  3201. _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); } }
  3202. break;
  3203. }
  3204. case "dataClass":
  3205. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3206. setTimeout(() => {
  3207. U.MD.U.L.login();
  3208. }, 2000);
  3209. } else {
  3210. _formdiv = new U.UF.UI.form(
  3211. "数据报告",
  3212. $$("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 }), {
  3213. "id": "dataClass",
  3214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3215. "onresize": function () { }
  3216. }, {
  3217. closecallback: function () { }
  3218. }, { "style": { "height": "36px" } }).form; //创建窗体
  3219. _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); } }
  3220. break;
  3221. }
  3222. case "opencCscl":
  3223. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3224. setTimeout(() => {
  3225. U.MD.U.L.login();
  3226. }, 2000);
  3227. } else {
  3228. _formdiv = new U.UF.UI.form(
  3229. "协同建构",
  3230. $$("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 }), {
  3231. "id": "futureClass",
  3232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3233. "onresize": function () { }
  3234. }, {
  3235. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3236. }, { "style": { "height": "36px" } }).form; //创建窗体
  3237. _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); } }
  3238. break;
  3239. }
  3240. }
  3241. }
  3242. U.MD.D.I.openApplication = function (str, obj, info) {
  3243. obj = obj || {};
  3244. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3245. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3246. _userinfo = US.userInfo, //登录用户信息
  3247. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3248. _oid = obj.organizeid || _userinfo.organizeid,
  3249. _type = US.userInfo.type,
  3250. _org = US.userInfo.org,
  3251. _role = US.userInfo.role,
  3252. _classId = US.userInfo.classid,
  3253. _TscreenType = 1
  3254. _screenType = 2,
  3255. _SscreenType = 3;
  3256. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3257. return;
  3258. }
  3259. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3260. switch (str) {
  3261. case "studnetProject": //好友打开
  3262. _formdiv = new U.UF.UI.form(
  3263. "我的项目",
  3264. $$("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 }), {
  3265. "id": "studnetProject",
  3266. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3267. "onresize": function () { }
  3268. }, {
  3269. closecallback: function () { }
  3270. }, { "style": { "height": "36px" } }).form; //创建窗体
  3271. _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); } }
  3272. break;
  3273. case "studentEvaluate": //好友打开
  3274. _formdiv = new U.UF.UI.form(
  3275. "我的评价",
  3276. $$("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 }), {
  3277. "id": "studentEvaluate",
  3278. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3279. "onresize": function () { }
  3280. }, {
  3281. closecallback: function () { }
  3282. }, { "style": { "height": "36px" } }).form; //创建窗体
  3283. _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); } }
  3284. break;
  3285. case "my":
  3286. _formdiv = new U.UF.UI.form(
  3287. "我的资料",
  3288. $$("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 }), {
  3289. "id": "my",
  3290. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3291. "onresize": function () { }
  3292. }, {
  3293. closecallback: function () { }
  3294. }, { "style": { "height": "36px" } }).form; //创建窗体
  3295. _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); } }
  3296. break;
  3297. case "program":
  3298. _formdiv = new U.UF.UI.form(
  3299. "编程平台",
  3300. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3301. "id": "program",
  3302. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3303. "onresize": function () { }
  3304. }, {
  3305. closecallback: function () { }
  3306. }, { "style": { "height": "36px" } }).form; //创建窗体
  3307. _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); } }
  3308. break;
  3309. case "library":
  3310. _formdiv = new U.UF.UI.form(
  3311. "素材库",
  3312. $$("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 }), {
  3313. "id": "library",
  3314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3315. "onresize": function () { }
  3316. }, {
  3317. closecallback: function () { }
  3318. }, { "style": { "height": "36px" } }).form; //创建窗体
  3319. _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); } }
  3320. break;
  3321. case "whiteboard":
  3322. _formdiv = new U.UF.UI.form(
  3323. "电子白板",
  3324. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3325. "id": "whiteboard",
  3326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3327. "onresize": function () { }
  3328. }, {
  3329. closecallback: function () { }
  3330. }, { "style": { "height": "36px" } }).form; //创建窗体
  3331. _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); } }
  3332. break;
  3333. case "investigation":
  3334. _formdiv = new U.UF.UI.form(
  3335. "问卷调查",
  3336. $$("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 }), {
  3337. "id": "investigation",
  3338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3339. "onresize": function () { }
  3340. }, {
  3341. closecallback: function () { }
  3342. }, { "style": { "height": "36px" } }).form; //创建窗体
  3343. _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); } }
  3344. break;
  3345. case "note":
  3346. _formdiv = new U.UF.UI.form(
  3347. "便签分类",
  3348. $$("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 }), {
  3349. "id": "note",
  3350. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3351. "onresize": function () { }
  3352. }, {
  3353. closecallback: function () { }
  3354. }, { "style": { "height": "36px" } }).form; //创建窗体
  3355. _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); } }
  3356. break;
  3357. // case "score":
  3358. // _formdiv = new U.UF.UI.form(
  3359. // "量规评分",
  3360. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3361. // "id": "score",
  3362. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3363. // "onresize": function() {}
  3364. // }, {
  3365. // closecallback: function() {}
  3366. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3367. // _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); } }
  3368. // break;
  3369. case "mind":
  3370. _formdiv = new U.UF.UI.form(
  3371. "思维导图",
  3372. $$("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"
  3373. "id": "mind",
  3374. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3380. break;
  3381. case "doc":
  3382. // U.MD.D.I.isRoom();
  3383. _formdiv = new U.UF.UI.form(
  3384. "协同文档",
  3385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3386. "id": "doc",
  3387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3388. "onresize": function () { }
  3389. }, {
  3390. closecallback: function () { }
  3391. }, { "style": { "height": "36px" } }).form; //创建窗体
  3392. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3393. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3394. // })
  3395. _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); } }
  3396. break;
  3397. case "studentStudy":
  3398. _formdiv = new U.UF.UI.form(
  3399. "课程中心",
  3400. $$("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
  3401. "id": "studentStudy",
  3402. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3403. "onresize": function () { }
  3404. }, {
  3405. closecallback: function () { }
  3406. }, { "style": { "height": "36px" } }).form; //创建窗体
  3407. _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); } }
  3408. break;
  3409. case "train": //好友打开
  3410. _formdiv = new U.UF.UI.form(
  3411. "训练平台",
  3412. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3413. "id": "train",
  3414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3415. "onresize": function () { }
  3416. }, {
  3417. closecallback: function () { }
  3418. }, { "style": { "height": "36px" } }).form; //创建窗体
  3419. _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); } }
  3420. break;
  3421. case "mindNetwork": //好友打开
  3422. _formdiv = new U.UF.UI.form(
  3423. "思维网格",
  3424. $$("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 }), {
  3425. "id": "mindNetwork",
  3426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3427. "onresize": function () { }
  3428. }, {
  3429. closecallback: function () { }
  3430. }, { "style": { "height": "36px" } }).form; //创建窗体
  3431. _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); } }
  3432. break;
  3433. case "studentClassRoom": //好友打开
  3434. _formdiv = new U.UF.UI.form(
  3435. "实时课堂",
  3436. $$("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 }), {
  3437. "id": "studentClassRoom",
  3438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3439. "onresize": function () { }
  3440. }, {
  3441. closecallback: function () { }
  3442. }, { "style": { "height": "36px" } }).form; //创建窗体
  3443. _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); } }
  3444. setTimeout(() => {
  3445. U.UF.F.windowZooming(_formdiv)
  3446. }, 0);
  3447. break;
  3448. }
  3449. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3450. switch (str) {
  3451. case "studnetProject": //好友打开
  3452. _formdiv = new U.UF.UI.form(
  3453. "我的项目",
  3454. $$("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 }), {
  3455. "id": "studnetProject",
  3456. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3457. "onresize": function () { }
  3458. }, {
  3459. closecallback: function () { }
  3460. }, { "style": { "height": "36px" } }).form; //创建窗体
  3461. _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); } }
  3462. break;
  3463. case "studentEvaluate": //好友打开
  3464. _formdiv = new U.UF.UI.form(
  3465. "我的评价",
  3466. $$("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 }), {
  3467. "id": "studentEvaluate",
  3468. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3469. "onresize": function () { }
  3470. }, {
  3471. closecallback: function () { }
  3472. }, { "style": { "height": "36px" } }).form; //创建窗体
  3473. _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); } }
  3474. break;
  3475. case "my":
  3476. _formdiv = new U.UF.UI.form(
  3477. "我的资料",
  3478. $$("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 }), {
  3479. "id": "my",
  3480. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3481. "onresize": function () { }
  3482. }, {
  3483. closecallback: function () { }
  3484. }, { "style": { "height": "36px" } }).form; //创建窗体
  3485. _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); } }
  3486. break;
  3487. case "program":
  3488. _formdiv = new U.UF.UI.form(
  3489. "编程平台",
  3490. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3491. "id": "program",
  3492. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3493. "onresize": function () { }
  3494. }, {
  3495. closecallback: function () { }
  3496. }, { "style": { "height": "36px" } }).form; //创建窗体
  3497. _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); } }
  3498. break;
  3499. case "library":
  3500. _formdiv = new U.UF.UI.form(
  3501. "素材库",
  3502. $$("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 }), {
  3503. "id": "library",
  3504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3505. "onresize": function () { }
  3506. }, {
  3507. closecallback: function () { }
  3508. }, { "style": { "height": "36px" } }).form; //创建窗体
  3509. _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); } }
  3510. break;
  3511. case "whiteboard":
  3512. _formdiv = new U.UF.UI.form(
  3513. "电子白板",
  3514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3515. "id": "whiteboard",
  3516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3517. "onresize": function () { }
  3518. }, {
  3519. closecallback: function () { }
  3520. }, { "style": { "height": "36px" } }).form; //创建窗体
  3521. _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); } }
  3522. break;
  3523. case "investigation":
  3524. _formdiv = new U.UF.UI.form(
  3525. "问卷调查",
  3526. $$("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 }), {
  3527. "id": "investigation",
  3528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3529. "onresize": function () { }
  3530. }, {
  3531. closecallback: function () { }
  3532. }, { "style": { "height": "36px" } }).form; //创建窗体
  3533. _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); } }
  3534. break;
  3535. case "note":
  3536. _formdiv = new U.UF.UI.form(
  3537. "便签分类",
  3538. $$("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 }), {
  3539. "id": "note",
  3540. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3541. "onresize": function () { }
  3542. }, {
  3543. closecallback: function () { }
  3544. }, { "style": { "height": "36px" } }).form; //创建窗体
  3545. _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); } }
  3546. break;
  3547. // case "score":
  3548. // _formdiv = new U.UF.UI.form(
  3549. // "量规评分",
  3550. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3551. // "id": "score",
  3552. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3553. // "onresize": function() {}
  3554. // }, {
  3555. // closecallback: function() {}
  3556. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3557. // _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); } }
  3558. // break;
  3559. case "mind":
  3560. _formdiv = new U.UF.UI.form(
  3561. "思维导图",
  3562. $$("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"
  3563. "id": "mind",
  3564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3565. "onresize": function () { }
  3566. }, {
  3567. closecallback: function () { }
  3568. }, { "style": { "height": "36px" } }).form; //创建窗体
  3569. _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); } }
  3570. break;
  3571. case "doc":
  3572. // U.MD.D.I.isRoom();
  3573. _formdiv = new U.UF.UI.form(
  3574. "协同文档",
  3575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3576. "id": "doc",
  3577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3578. "onresize": function () { }
  3579. }, {
  3580. closecallback: function () { }
  3581. }, { "style": { "height": "36px" } }).form; //创建窗体
  3582. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3583. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3584. })
  3585. _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); } }
  3586. break;
  3587. case "train": //好友打开
  3588. _formdiv = new U.UF.UI.form(
  3589. "训练平台",
  3590. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3591. "id": "train",
  3592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3593. "onresize": function () { }
  3594. }, {
  3595. closecallback: function () { }
  3596. }, { "style": { "height": "36px" } }).form; //创建窗体
  3597. _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); } }
  3598. break;
  3599. case "studentStudy":
  3600. _formdiv = new U.UF.UI.form(
  3601. "课程中心",
  3602. $$("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
  3603. "id": "studentStudy",
  3604. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3605. "onresize": function () { }
  3606. }, {
  3607. closecallback: function () { }
  3608. }, { "style": { "height": "36px" } }).form; //创建窗体
  3609. _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); } }
  3610. break;
  3611. case "mindNetwork": //好友打开
  3612. _formdiv = new U.UF.UI.form(
  3613. "思维网格",
  3614. $$("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 }), {
  3615. "id": "mindNetwork",
  3616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3617. "onresize": function () { }
  3618. }, {
  3619. closecallback: function () { }
  3620. }, { "style": { "height": "36px" } }).form; //创建窗体
  3621. _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); } }
  3622. break;
  3623. case "studentClassRoom": //好友打开
  3624. _formdiv = new U.UF.UI.form(
  3625. "实时课堂",
  3626. $$("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 }), {
  3627. "id": "studentClassRoom",
  3628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3629. "onresize": function () { }
  3630. }, {
  3631. closecallback: function () { }
  3632. }, { "style": { "height": "36px" } }).form; //创建窗体
  3633. _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); } }
  3634. setTimeout(() => {
  3635. U.UF.F.windowZooming(_formdiv)
  3636. }, 0);
  3637. break;
  3638. }
  3639. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3640. //选择应用处理
  3641. switch (str) {
  3642. case "project": //好友打开
  3643. _formdiv = new U.UF.UI.form(
  3644. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3645. $$("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 }), {
  3646. "id": "project",
  3647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3648. "onresize": function () { }
  3649. }, {
  3650. closecallback: function () { }
  3651. }, { "style": { "height": "36px" } }).form; //创建窗体
  3652. _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); } }
  3653. break;
  3654. case "student":
  3655. _formdiv = new U.UF.UI.form(
  3656. "学生管理",
  3657. $$("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 }), {
  3658. "id": "student",
  3659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3660. "onresize": function () { }
  3661. }, {
  3662. closecallback: function () { }
  3663. }, { "style": { "height": "36px" } }).form; //创建窗体
  3664. _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); } }
  3665. break;
  3666. case "evaluate":
  3667. _formdiv = new U.UF.UI.form(
  3668. "学生评价",
  3669. $$("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 }), {
  3670. "id": "evaluate",
  3671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3672. "onresize": function () { }
  3673. }, {
  3674. closecallback: function () { }
  3675. }, { "style": { "height": "36px" } }).form; //创建窗体
  3676. _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); } }
  3677. break;
  3678. case "sys":
  3679. _formdiv = new U.UF.UI.form(
  3680. "目标管理",
  3681. $$("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 }), {
  3682. "id": "sys",
  3683. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3684. "onresize": function () { }
  3685. }, {
  3686. closecallback: function () { }
  3687. }, { "style": { "height": "36px" } }).form; //创建窗体
  3688. _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); } }
  3689. break;
  3690. case "courseDesign":
  3691. _formdiv = new U.UF.UI.form(
  3692. "项目设计",
  3693. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3694. "id": "courseDesign",
  3695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3696. "onresize": function () { }
  3697. }, {
  3698. closecallback: function () { }
  3699. }, { "style": { "height": "36px" } }).form; //创建窗体
  3700. _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); } }
  3701. break;
  3702. case "program":
  3703. _formdiv = new U.UF.UI.form(
  3704. "编程平台",
  3705. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3706. "id": "program",
  3707. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3708. "onresize": function () { }
  3709. }, {
  3710. closecallback: function () { }
  3711. }, { "style": { "height": "36px" } }).form; //创建窗体
  3712. _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); } }
  3713. break;
  3714. case "class":
  3715. _formdiv = new U.UF.UI.form(
  3716. "班级管理",
  3717. $$("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 }), {
  3718. "id": "class",
  3719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3720. "onresize": function () { }
  3721. }, {
  3722. closecallback: function () { }
  3723. }, { "style": { "height": "36px" } }).form; //创建窗体
  3724. _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); } }
  3725. break;
  3726. case "Grade":
  3727. _formdiv = new U.UF.UI.form(
  3728. "年级管理",
  3729. $$("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 }), {
  3730. "id": "Grade",
  3731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3732. "onresize": function () { }
  3733. }, {
  3734. closecallback: function () { }
  3735. }, { "style": { "height": "36px" } }).form; //创建窗体
  3736. _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); } }
  3737. break;
  3738. case "teacherOffice":
  3739. _formdiv = new U.UF.UI.form(
  3740. "教研室",
  3741. $$("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 }), {
  3742. "id": "teacherOffice",
  3743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3744. "onresize": function () { }
  3745. }, {
  3746. closecallback: function () { }
  3747. }, { "style": { "height": "36px" } }).form; //创建窗体
  3748. _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); } }
  3749. break;
  3750. case "my":
  3751. _formdiv = new U.UF.UI.form(
  3752. "我的资料",
  3753. $$("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 }), {
  3754. "id": "my",
  3755. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3756. "onresize": function () { }
  3757. }, {
  3758. closecallback: function () { }
  3759. }, { "style": { "height": "36px" } }).form; //创建窗体
  3760. _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); } }
  3761. break;
  3762. case "notice":
  3763. _formdiv = new U.UF.UI.form(
  3764. "通知公告",
  3765. $$("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 }), {
  3766. "id": "notice",
  3767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3768. "onresize": function () { }
  3769. }, {
  3770. closecallback: function () { }
  3771. }, { "style": { "height": "36px" } }).form; //创建窗体
  3772. _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); } }
  3773. break;
  3774. case "library":
  3775. _formdiv = new U.UF.UI.form(
  3776. "素材库",
  3777. $$("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 }), {
  3778. "id": "library",
  3779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3780. "onresize": function () { }
  3781. }, {
  3782. closecallback: function () { }
  3783. }, { "style": { "height": "36px" } }).form; //创建窗体
  3784. _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); } }
  3785. break;
  3786. case "whiteboard":
  3787. _formdiv = new U.UF.UI.form(
  3788. "电子白板",
  3789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3790. "id": "whiteboard",
  3791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3792. "onresize": function () { }
  3793. }, {
  3794. closecallback: function () { }
  3795. }, { "style": { "height": "36px" } }).form; //创建窗体
  3796. _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); } }
  3797. break;
  3798. case "investigation":
  3799. _formdiv = new U.UF.UI.form(
  3800. "问卷调查",
  3801. $$("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 }), {
  3802. "id": "investigation",
  3803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3804. "onresize": function () { }
  3805. }, {
  3806. closecallback: function () { }
  3807. }, { "style": { "height": "36px" } }).form; //创建窗体
  3808. _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); } }
  3809. break;
  3810. case "note":
  3811. _formdiv = new U.UF.UI.form(
  3812. "便签分类",
  3813. $$("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 }), {
  3814. "id": "note",
  3815. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3816. "onresize": function () { }
  3817. }, {
  3818. closecallback: function () { }
  3819. }, { "style": { "height": "36px" } }).form; //创建窗体
  3820. _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); } }
  3821. break;
  3822. // case "score":
  3823. // _formdiv = new U.UF.UI.form(
  3824. // "量规评分",
  3825. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3826. // "id": "score",
  3827. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3828. // "onresize": function() {}
  3829. // }, {
  3830. // closecallback: function() {}
  3831. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3832. // _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); } }
  3833. // break;
  3834. case "mind":
  3835. _formdiv = new U.UF.UI.form(
  3836. "思维导图",
  3837. $$("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"
  3838. "id": "mind",
  3839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3840. "onresize": function () { }
  3841. }, {
  3842. closecallback: function () { }
  3843. }, { "style": { "height": "36px" } }).form; //创建窗体
  3844. _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); } }
  3845. break;
  3846. case "doc":
  3847. // U.MD.D.I.isRoom();
  3848. _formdiv = new U.UF.UI.form(
  3849. "协同文档",
  3850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3851. "id": "doc",
  3852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3853. "onresize": function () { }
  3854. }, {
  3855. closecallback: function () { }
  3856. }, { "style": { "height": "36px" } }).form; //创建窗体
  3857. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3858. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3859. })
  3860. _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); } }
  3861. break;
  3862. case "study":
  3863. _formdiv = new U.UF.UI.form(
  3864. "课程中心",
  3865. $$("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
  3866. "id": "study",
  3867. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3868. "onresize": function () { }
  3869. }, {
  3870. closecallback: function () { }
  3871. }, { "style": { "height": "36px" } }).form; //创建窗体
  3872. _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); } }
  3873. break;
  3874. case "mindNetwork": //好友打开
  3875. _formdiv = new U.UF.UI.form(
  3876. "思维网格",
  3877. $$("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 }), {
  3878. "id": "mindNetwork",
  3879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3880. "onresize": function () { }
  3881. }, {
  3882. closecallback: function () { }
  3883. }, { "style": { "height": "36px" } }).form; //创建窗体
  3884. _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); } }
  3885. break;
  3886. case "train": //好友打开
  3887. _formdiv = new U.UF.UI.form(
  3888. "训练平台",
  3889. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3890. "id": "mindNetwork",
  3891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3892. "onresize": function () { }
  3893. }, {
  3894. closecallback: function () { }
  3895. }, { "style": { "height": "36px" } }).form; //创建窗体
  3896. _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); } }
  3897. break;
  3898. case "teacherClassRoom": //好友打开
  3899. _formdiv = new U.UF.UI.form(
  3900. "实时课堂",
  3901. $$("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 }), {
  3902. "id": "teacherClassRoom",
  3903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3904. "onresize": function () { }
  3905. }, {
  3906. closecallback: function () { }
  3907. }, { "style": { "height": "36px" } }).form; //创建窗体
  3908. _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); } }
  3909. setTimeout(() => {
  3910. U.UF.F.windowZooming(_formdiv)
  3911. }, 0);
  3912. break;
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3915. switch (str) {
  3916. case "project": //好友打开
  3917. _formdiv = new U.UF.UI.form(
  3918. "课程管理",
  3919. $$("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 }), {
  3920. "id": "project",
  3921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3922. "onresize": function () { }
  3923. }, {
  3924. closecallback: function () { }
  3925. }, { "style": { "height": "36px" } }).form; //创建窗体
  3926. _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); } }
  3927. break;
  3928. case "evaluate":
  3929. _formdiv = new U.UF.UI.form(
  3930. "学生评价",
  3931. $$("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 }), {
  3932. "id": "evaluate",
  3933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3934. "onresize": function () { }
  3935. }, {
  3936. closecallback: function () { }
  3937. }, { "style": { "height": "36px" } }).form; //创建窗体
  3938. _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); } }
  3939. break;
  3940. case "notice":
  3941. _formdiv = new U.UF.UI.form(
  3942. "通知公告",
  3943. $$("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 }), {
  3944. "id": "notice",
  3945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3946. "onresize": function () { }
  3947. }, {
  3948. closecallback: function () { }
  3949. }, { "style": { "height": "36px" } }).form; //创建窗体
  3950. _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); } }
  3951. break;
  3952. case "stuLibrary":
  3953. _formdiv = new U.UF.UI.form(
  3954. "学习资料",
  3955. $$("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 }), {
  3956. "id": "stuLibrary",
  3957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3958. "onresize": function () { }
  3959. }, {
  3960. closecallback: function () { }
  3961. }, { "style": { "height": "36px" } }).form; //创建窗体
  3962. _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); } }
  3963. break;
  3964. case "program":
  3965. _formdiv = new U.UF.UI.form(
  3966. "编程平台",
  3967. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3968. "id": "program",
  3969. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3970. "onresize": function () { }
  3971. }, {
  3972. closecallback: function () { }
  3973. }, { "style": { "height": "36px" } }).form; //创建窗体
  3974. _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); } }
  3975. break;
  3976. case "whiteboard":
  3977. _formdiv = new U.UF.UI.form(
  3978. "电子白板",
  3979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3980. "id": "whiteboard",
  3981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3982. "onresize": function () { }
  3983. }, {
  3984. closecallback: function () { }
  3985. }, { "style": { "height": "36px" } }).form; //创建窗体
  3986. _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); } }
  3987. break;
  3988. case "investigation":
  3989. _formdiv = new U.UF.UI.form(
  3990. "问卷调查",
  3991. $$("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 }), {
  3992. "id": "investigation",
  3993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3994. "onresize": function () { }
  3995. }, {
  3996. closecallback: function () { }
  3997. }, { "style": { "height": "36px" } }).form; //创建窗体
  3998. _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); } }
  3999. break;
  4000. case "mind":
  4001. _formdiv = new U.UF.UI.form(
  4002. "思维导图",
  4003. $$("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"
  4004. "id": "mind",
  4005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4006. "onresize": function () { }
  4007. }, {
  4008. closecallback: function () { }
  4009. }, { "style": { "height": "36px" } }).form; //创建窗体
  4010. _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); } }
  4011. break;
  4012. case "doc":
  4013. // U.MD.D.I.isRoom();
  4014. _formdiv = new U.UF.UI.form(
  4015. "协同文档",
  4016. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4017. "id": "doc",
  4018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4019. "onresize": function () { }
  4020. }, {
  4021. closecallback: function () { }
  4022. }, { "style": { "height": "36px" } }).form; //创建窗体
  4023. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4024. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4025. })
  4026. _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); } }
  4027. break;
  4028. case "study":
  4029. _formdiv = new U.UF.UI.form(
  4030. "课程中心",
  4031. $$("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
  4032. "id": "study",
  4033. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4034. "onresize": function () { }
  4035. }, {
  4036. closecallback: function () { }
  4037. }, { "style": { "height": "36px" } }).form; //创建窗体
  4038. _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); } }
  4039. break;
  4040. case "mindNetwork": //好友打开
  4041. _formdiv = new U.UF.UI.form(
  4042. "思维网格",
  4043. $$("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 }), {
  4044. "id": "mindNetwork",
  4045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4046. "onresize": function () { }
  4047. }, {
  4048. closecallback: function () { }
  4049. }, { "style": { "height": "36px" } }).form; //创建窗体
  4050. _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); } }
  4051. break;
  4052. case "train": //好友打开
  4053. _formdiv = new U.UF.UI.form(
  4054. "训练平台",
  4055. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4056. "id": "train",
  4057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4058. "onresize": function () { }
  4059. }, {
  4060. closecallback: function () { }
  4061. }, { "style": { "height": "36px" } }).form; //创建窗体
  4062. _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); } }
  4063. break;
  4064. case "sys":
  4065. _formdiv = new U.UF.UI.form(
  4066. "目标管理",
  4067. $$("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 }), {
  4068. "id": "sys",
  4069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4070. "onresize": function () { }
  4071. }, {
  4072. closecallback: function () { }
  4073. }, { "style": { "height": "36px" } }).form; //创建窗体
  4074. _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); } }
  4075. break;
  4076. case "courseDesign":
  4077. _formdiv = new U.UF.UI.form(
  4078. "项目设计",
  4079. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4080. "id": "courseDesign",
  4081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4082. "onresize": function () { }
  4083. }, {
  4084. closecallback: function () { }
  4085. }, { "style": { "height": "36px" } }).form; //创建窗体
  4086. _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); } }
  4087. break;
  4088. }
  4089. } else if (!_type) {
  4090. switch (str) {
  4091. case "my":
  4092. _formdiv = new U.UF.UI.form(
  4093. "我的资料",
  4094. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4095. "id": "my",
  4096. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4102. break;
  4103. }
  4104. }
  4105. switch (str) {
  4106. // AIprogram2 AI体验 aihub.cocorobo.cn
  4107. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4108. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4109. case "formulaEdi": //公式编辑
  4110. _formdiv = new U.UF.UI.form(
  4111. "公式编辑",
  4112. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4113. "id": "formulaEdi",
  4114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4115. "onresize": function () { }
  4116. }, {
  4117. closecallback: function () { }
  4118. }, { "style": { "height": "36px" } }).form; //创建窗体
  4119. _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); } }
  4120. break;
  4121. case "molStr": //分子结构
  4122. _formdiv = new U.UF.UI.form(
  4123. "分子结构",
  4124. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4125. "id": "molStr",
  4126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4127. "onresize": function () { }
  4128. }, {
  4129. closecallback: function () { }
  4130. }, { "style": { "height": "36px" } }).form; //创建窗体
  4131. _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); } }
  4132. break;
  4133. case "timeAxis": //时间轴
  4134. _formdiv = new U.UF.UI.form(
  4135. "时间轴",
  4136. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4137. "id": "timeAxis",
  4138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4139. "onresize": function () { }
  4140. }, {
  4141. closecallback: function () { }
  4142. }, { "style": { "height": "36px" } }).form; //创建窗体
  4143. _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); } }
  4144. break;
  4145. case "AIprogram2": //AI体验
  4146. _formdiv = new U.UF.UI.form(
  4147. "AI体验",
  4148. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4149. "id": "AIprogram2",
  4150. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4151. "onresize": function () { }
  4152. }, {
  4153. closecallback: function () { }
  4154. }, { "style": { "height": "36px" } }).form; //创建窗体
  4155. _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); } }
  4156. break;
  4157. case "Pythonprogram": //python编程
  4158. _formdiv = new U.UF.UI.form(
  4159. "Python编程",
  4160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4161. "id": "Pythonprogram",
  4162. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4163. "onresize": function () { }
  4164. }, {
  4165. closecallback: function () { }
  4166. }, { "style": { "height": "36px" } }).form; //创建窗体
  4167. _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); } }
  4168. break;
  4169. case "AIprogram": //ai编程
  4170. _formdiv = new U.UF.UI.form(
  4171. "AI编程平台",
  4172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4173. "id": "AIprogram",
  4174. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4175. "onresize": function () { }
  4176. }, {
  4177. closecallback: function () { }
  4178. }, { "style": { "height": "36px" } }).form; //创建窗体
  4179. _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); } }
  4180. break;
  4181. case "CocoPi": //CocoPi
  4182. _formdiv = new U.UF.UI.form(
  4183. "CocoPi",
  4184. $$("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" }), {
  4185. "id": "CocoPi",
  4186. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4187. "onresize": function () { }
  4188. }, {
  4189. closecallback: function () { }
  4190. }, { "style": { "height": "36px" } }).form; //创建窗体
  4191. _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); } }
  4192. break;
  4193. case "Wood": //Wood
  4194. _formdiv = new U.UF.UI.form(
  4195. "海龟编程",
  4196. $$("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/" }), {
  4197. "id": "Wood",
  4198. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4199. "onresize": function () { }
  4200. }, {
  4201. closecallback: function () { }
  4202. }, { "style": { "height": "36px" } }).form; //创建窗体
  4203. _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); } }
  4204. break;
  4205. case "car": //模拟驾驶
  4206. _formdiv = new U.UF.UI.form(
  4207. "模拟驾驶",
  4208. $$("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/" }), {
  4209. "id": "car",
  4210. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4211. "onresize": function () { }
  4212. }, {
  4213. closecallback: function () { }
  4214. }, { "style": { "height": "36px" } }).form; //创建窗体
  4215. _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); } }
  4216. break;
  4217. case "lineSearch": //路径搜索
  4218. _formdiv = new U.UF.UI.form(
  4219. "路径搜索",
  4220. $$("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/" }), {
  4221. "id": "lineSearch",
  4222. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4223. "onresize": function () { }
  4224. }, {
  4225. closecallback: function () { }
  4226. }, { "style": { "height": "36px" } }).form; //创建窗体
  4227. _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); } }
  4228. break;
  4229. case "deepLearning": //深度学习
  4230. _formdiv = new U.UF.UI.form(
  4231. "深度学习",
  4232. $$("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/#" }), {
  4233. "id": "deepLearning",
  4234. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4235. "onresize": function () { }
  4236. }, {
  4237. closecallback: function () { }
  4238. }, { "style": { "height": "36px" } }).form; //创建窗体
  4239. _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); } }
  4240. break;
  4241. case "allHistory": //深度学习
  4242. _formdiv = new U.UF.UI.form(
  4243. "全历史",
  4244. $$("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/" }), {
  4245. "id": "allHistory",
  4246. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4247. "onresize": function () { }
  4248. }, {
  4249. closecallback: function () { }
  4250. }, { "style": { "height": "36px" } }).form; //创建窗体
  4251. _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); } }
  4252. break;
  4253. case "chatPDF": //ai编程
  4254. _formdiv = new U.UF.UI.form(
  4255. "chatPDF",
  4256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4257. "id": "chatPDF",
  4258. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4259. "onresize": function () { }
  4260. }, {
  4261. closecallback: function () { }
  4262. }, { "style": { "height": "36px" } }).form; //创建窗体
  4263. _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); } }
  4264. break;
  4265. case "resources": //国家教育
  4266. _formdiv = new U.UF.UI.form(
  4267. "国家教育",
  4268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4269. "id": "resources",
  4270. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4271. "onresize": function () { }
  4272. }, {
  4273. closecallback: function () { }
  4274. }, { "style": { "height": "36px" } }).form; //创建窗体
  4275. _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); } }
  4276. break;
  4277. case "codeEdit": //源码编辑
  4278. _formdiv = new U.UF.UI.form(
  4279. "源码编辑",
  4280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4281. "id": "codeEdit",
  4282. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4283. "onresize": function () { }
  4284. }, {
  4285. closecallback: function () { }
  4286. }, { "style": { "height": "36px" } }).form; //创建窗体
  4287. _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); } }
  4288. break; //
  4289. case "MindMap": //MindMap
  4290. _formdiv = new U.UF.UI.form(
  4291. "MindMap",
  4292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4293. "id": "MindMap",
  4294. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4295. "onresize": function () { }
  4296. }, {
  4297. closecallback: function () { }
  4298. }, { "style": { "height": "36px" } }).form; //创建窗体
  4299. _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); } }
  4300. break;
  4301. case "netWorkPanel": //netWorkPanel
  4302. _formdiv = new U.UF.UI.form(
  4303. "netWorkPanel",
  4304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4305. "id": "netWorkPanel",
  4306. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4307. "onresize": function () { }
  4308. }, {
  4309. closecallback: function () { }
  4310. }, { "style": { "height": "36px" } }).form; //创建窗体
  4311. _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); } }
  4312. break;
  4313. case "GeoGebra": //GeoGebra
  4314. _formdiv = new U.UF.UI.form(
  4315. "GeoGebra",
  4316. $$("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" }), {
  4317. "id": "GeoGebra",
  4318. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4319. "onresize": function () { }
  4320. }, {
  4321. closecallback: function () { }
  4322. }, { "style": { "height": "36px" } }).form; //创建窗体
  4323. _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); } }
  4324. break;
  4325. case "translation": //翻译
  4326. _formdiv = new U.UF.UI.form(
  4327. "翻译",
  4328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4329. "id": "translation",
  4330. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4331. "onresize": function () { }
  4332. }, {
  4333. closecallback: function () { }
  4334. }, { "style": { "height": "36px" } }).form; //创建窗体
  4335. _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); } }
  4336. break;
  4337. case "mohe": //魔盒
  4338. _formdiv = new U.UF.UI.form(
  4339. "魔盒识字",
  4340. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4341. "id": "mohe",
  4342. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4343. "onresize": function () { }
  4344. }, {
  4345. closecallback: function () { }
  4346. }, { "style": { "height": "36px" } }).form; //创建窗体
  4347. _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); } }
  4348. break;
  4349. case "24game": //24点
  4350. _formdiv = new U.UF.UI.form(
  4351. "24点",
  4352. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4353. "id": "24game",
  4354. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4355. "onresize": function () { }
  4356. }, {
  4357. closecallback: function () { }
  4358. }, { "style": { "height": "36px" } }).form; //创建窗体
  4359. _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); } }
  4360. break;
  4361. case "case":
  4362. _formdiv = new U.UF.UI.form(
  4363. "课程进展",
  4364. $$("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 }), {
  4365. "id": "case",
  4366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4367. "onresize": function () { }
  4368. }, {
  4369. closecallback: function () { }
  4370. }, { "style": { "height": "36px" } }).form; //创建窗体
  4371. _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); } }
  4372. break;
  4373. case "snf":
  4374. _formdiv = new U.UF.UI.form(
  4375. "赛诺梵",
  4376. $$("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" }), {
  4377. "id": "snf",
  4378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4379. "onresize": function () { }
  4380. }, {
  4381. closecallback: function () { }
  4382. }, { "style": { "height": "36px" } }).form; //创建窗体
  4383. _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); } }
  4384. break;
  4385. case "hanFamily":
  4386. _formdiv = new U.UF.UI.form(
  4387. "汉字家族",
  4388. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4389. "id": "hanFamily",
  4390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4391. "onresize": function () { }
  4392. }, {
  4393. closecallback: function () { }
  4394. }, { "style": { "height": "36px" } }).form; //创建窗体
  4395. _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); } }
  4396. break;
  4397. case "hanClassics":
  4398. _formdiv = new U.UF.UI.form(
  4399. "国学经典",
  4400. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4401. "id": "hanClassics",
  4402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4403. "onresize": function () { }
  4404. }, {
  4405. closecallback: function () { }
  4406. }, { "style": { "height": "36px" } }).form; //创建窗体
  4407. _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); } }
  4408. break;
  4409. case "hanTraining":
  4410. _formdiv = new U.UF.UI.form(
  4411. "笔画训练",
  4412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4413. "id": "hanTraining",
  4414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4415. "onresize": function () { }
  4416. }, {
  4417. closecallback: function () { }
  4418. }, { "style": { "height": "36px" } }).form; //创建窗体
  4419. _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); } }
  4420. break;
  4421. case "hanClass":
  4422. _formdiv = new U.UF.UI.form(
  4423. "书法课堂",
  4424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4425. "id": "hanClass",
  4426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4427. "onresize": function () { }
  4428. }, {
  4429. closecallback: function () { }
  4430. }, { "style": { "height": "36px" } }).form; //创建窗体
  4431. _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); } }
  4432. break;
  4433. case "han":
  4434. _formdiv = new U.UF.UI.form(
  4435. "汉字宫",
  4436. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4437. "id": "han",
  4438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4439. "onresize": function () { }
  4440. }, {
  4441. closecallback: function () { }
  4442. }, { "style": { "height": "36px" } }).form; //创建窗体
  4443. _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); } }
  4444. break;
  4445. case "projectGM": //课程管理
  4446. _formdiv = new U.UF.UI.form(
  4447. "课程管理",
  4448. $$("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 }), {
  4449. "id": "projectGM",
  4450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4451. "onresize": function () { }
  4452. }, {
  4453. closecallback: function () { }
  4454. }, { "style": { "height": "36px" } }).form; //创建窗体
  4455. _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); } }
  4456. break;
  4457. case "studyGM": //课程中心
  4458. _formdiv = new U.UF.UI.form(
  4459. "课程中心",
  4460. $$("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
  4461. "id": "study",
  4462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4463. "onresize": function () { }
  4464. }, {
  4465. closecallback: function () { }
  4466. }, { "style": { "height": "36px" } }).form; //创建窗体
  4467. _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); } }
  4468. break;
  4469. // studentGM
  4470. case "studentGM": //学生管理
  4471. _formdiv = new U.UF.UI.form(
  4472. "学生管理",
  4473. $$("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 }), {
  4474. "id": "studentGM",
  4475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _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); } }
  4481. break;
  4482. case "evaluateGM": //学生评价
  4483. _formdiv = new U.UF.UI.form(
  4484. "学生评价",
  4485. $$("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 }), {
  4486. "id": "evaluateGM",
  4487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _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); } }
  4493. break;
  4494. // classGM
  4495. case "classGM": //班级管理
  4496. _formdiv = new U.UF.UI.form(
  4497. "班级管理",
  4498. $$("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 }), {
  4499. "id": "classGM",
  4500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4501. "onresize": function () { }
  4502. }, {
  4503. closecallback: function () { }
  4504. }, { "style": { "height": "36px" } }).form; //创建窗体
  4505. _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); } }
  4506. break;
  4507. // dataGM
  4508. case "dataGM":
  4509. _formdiv = new U.UF.UI.form(
  4510. "我的资料",
  4511. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  4512. "id": "dataGM",
  4513. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4514. "onresize": function () { }
  4515. }, {
  4516. closecallback: function () { }
  4517. }, { "style": { "height": "36px" } }).form; //创建窗体
  4518. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4519. break;
  4520. // caseGM
  4521. case "caseGM": //课程进展
  4522. _formdiv = new U.UF.UI.form(
  4523. "课程进展",
  4524. $$("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 }), {
  4525. "id": "caseGM",
  4526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4527. "onresize": function () { }
  4528. }, {
  4529. closecallback: function () { }
  4530. }, { "style": { "height": "36px" } }).form; //创建窗体
  4531. _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); } }
  4532. break;
  4533. // meterialGM
  4534. case "meterialGM": //素材库
  4535. _formdiv = new U.UF.UI.form(
  4536. "素材库",
  4537. $$("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 }), {
  4538. "id": "meterialGM",
  4539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4540. "onresize": function () { }
  4541. }, {
  4542. closecallback: function () { }
  4543. }, { "style": { "height": "36px" } }).form; //创建窗体
  4544. _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); } }
  4545. break;
  4546. // evaluateSGM
  4547. case "evaluateSGM": //我的评价
  4548. _formdiv = new U.UF.UI.form(
  4549. "我的评价",
  4550. $$("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 }), {
  4551. "id": "evaluateSGM",
  4552. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4553. "onresize": function () { }
  4554. }, {
  4555. closecallback: function () { }
  4556. }, { "style": { "height": "36px" } }).form; //创建窗体
  4557. _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); } }
  4558. break;
  4559. case "jupyter": //jupyter
  4560. _formdiv = new U.UF.UI.form(
  4561. "jupyter",
  4562. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4563. "id": "jupyter",
  4564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4565. "onresize": function () { }
  4566. }, {
  4567. closecallback: function () { }
  4568. }, { "style": { "height": "36px" } }).form; //创建窗体
  4569. _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); } }
  4570. break;
  4571. case "number": //数字实验室
  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": "https://cocorobo.cn/cloud/iot/events" }), {
  4575. "id": "number",
  4576. "style": { "width": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4582. break;
  4583. case "studentCourse": //项目管理 学生
  4584. _formdiv = new U.UF.UI.form(
  4585. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4586. $$("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 }), {
  4587. "id": "studentCourse",
  4588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4589. "onresize": function () { }
  4590. }, {
  4591. closecallback: function () { }
  4592. }, { "style": { "height": "36px" } }).form; //创建窗体
  4593. _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); } }
  4594. break;
  4595. case "studentCourseS": //项目管理 老师
  4596. _formdiv = new U.UF.UI.form(
  4597. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4598. $$("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 }), {
  4599. "id": "studentCourseS",
  4600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4601. "onresize": function () { }
  4602. }, {
  4603. closecallback: function () { }
  4604. }, { "style": { "height": "36px" } }).form; //创建窗体
  4605. _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); } }
  4606. break;
  4607. case "studentIndex": //项目中心
  4608. _formdiv = new U.UF.UI.form(
  4609. "项目中心",
  4610. $$("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 }), {
  4611. "id": "studentIndex",
  4612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4613. "onresize": function () { }
  4614. }, {
  4615. closecallback: function () { }
  4616. }, { "style": { "height": "36px" } }).form; //创建窗体
  4617. _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); } }
  4618. break;
  4619. case "CaseDesignS":
  4620. _formdiv = new U.UF.UI.form(
  4621. "项目进展",
  4622. $$("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 }), {
  4623. "id": "case",
  4624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4625. "onresize": function () { }
  4626. }, {
  4627. closecallback: function () { }
  4628. }, { "style": { "height": "36px" } }).form; //创建窗体
  4629. _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); } }
  4630. break;
  4631. case "tcStudent": //腾讯学生管理
  4632. _formdiv = new U.UF.UI.form(
  4633. "学生管理",
  4634. $$("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 }), {
  4635. "id": "tcStudent",
  4636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4637. "onresize": function () { }
  4638. }, {
  4639. closecallback: function () { }
  4640. }, { "style": { "height": "36px" } }).form; //创建窗体
  4641. _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); } }
  4642. break;
  4643. case "tcSchool": //腾讯学校管理
  4644. _formdiv = new U.UF.UI.form(
  4645. "学校管理",
  4646. $$("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 }), {
  4647. "id": "tcSchool",
  4648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4649. "onresize": function () { }
  4650. }, {
  4651. closecallback: function () { }
  4652. }, { "style": { "height": "36px" } }).form; //创建窗体
  4653. _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); } }
  4654. break;
  4655. case "tcTeacher": //腾讯学校管理
  4656. _formdiv = new U.UF.UI.form(
  4657. "教师管理",
  4658. $$("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 }), {
  4659. "id": "tcTeacher",
  4660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4661. "onresize": function () { }
  4662. }, {
  4663. closecallback: function () { }
  4664. }, { "style": { "height": "36px" } }).form; //创建窗体
  4665. _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); } }
  4666. break;
  4667. case "tcData": //腾讯我的资料
  4668. _formdiv = new U.UF.UI.form(
  4669. "我的资料",
  4670. $$("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 }), {
  4671. "id": "tcData",
  4672. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4673. "onresize": function () { }
  4674. }, {
  4675. closecallback: function () { }
  4676. }, { "style": { "height": "36px" } }).form; //创建窗体
  4677. _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); } }
  4678. break;
  4679. case "tcNotice": //腾讯消息通知
  4680. _formdiv = new U.UF.UI.form(
  4681. "消息通知",
  4682. $$("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 }), {
  4683. "id": "tcNotice",
  4684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //创建窗体
  4689. _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); } }
  4690. break;
  4691. case "myReport": //好友打开
  4692. _formdiv = new U.UF.UI.form(
  4693. "我的评价",
  4694. $$("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 }), {
  4695. "id": "myReport",
  4696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4697. "onresize": function () { }
  4698. }, {
  4699. closecallback: function () { }
  4700. }, { "style": { "height": "36px" } }).form; //创建窗体
  4701. _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); } }
  4702. break;
  4703. case "learnAna": //好友打开
  4704. _formdiv = new U.UF.UI.form(
  4705. "学习分析",
  4706. $$("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 }), {
  4707. "id": "learnAna",
  4708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. _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); } }
  4714. break;
  4715. case "AIChat": //AI共创
  4716. _formdiv = new U.UF.UI.form(
  4717. "AI共创",
  4718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4719. "id": "AIChat",
  4720. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4721. "onresize": function () { }
  4722. }, {
  4723. istop: true,
  4724. closecallback: function () { $("#aichat_icon").remove(); },
  4725. narrowcallback: function () {
  4726. if (!$("#aichat_icon")[0]) {
  4727. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4728. }
  4729. },
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _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); } }
  4732. break;
  4733. case "ainew": //AI共创
  4734. _formdiv = new U.UF.UI.form(
  4735. "AI协同",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4737. "id": "ainew",
  4738. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4744. break;
  4745. case "gpt4": //gpt4
  4746. _formdiv = new U.UF.UI.form(
  4747. "AI助手",
  4748. $$("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 }), {
  4749. "id": "gpt4",
  4750. "style": { "width": "100%", "height": "100%", "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/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4756. break;
  4757. case "aigpt": //gpt4
  4758. _formdiv = new U.UF.UI.form(
  4759. "AI助手+",
  4760. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4761. "id": "aigpt",
  4762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. case "futureClass": //AI共创
  4770. _formdiv = new U.UF.UI.form(
  4771. "协同建构",
  4772. $$("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
  4773. "id": "synergyCourse",
  4774. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () {
  4778. $("iframe", _formdiv)[0].contentWindow.loginout();
  4779. }
  4780. }, { "style": { "height": "36px" } }).form; //创建窗体
  4781. _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); } }
  4782. break;
  4783. case "aiagent": //ai agent
  4784. _formdiv = new U.UF.UI.form(
  4785. "AI Agent",
  4786. $$("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" }), {
  4787. "id": "AIAgent",
  4788. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4789. "onresize": function () { }
  4790. }, {
  4791. closecallback: function () { }
  4792. }, { "style": { "height": "36px" } }).form; //创建窗体
  4793. _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); } }
  4794. break;
  4795. case "dataBoard": //数据看板
  4796. _formdiv = new U.UF.UI.form(
  4797. "数据看板",
  4798. $$("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 }), {
  4799. "id": "dataBoard",
  4800. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4801. "onresize": function () { }
  4802. }, {
  4803. closecallback: function () { }
  4804. }, { "style": { "height": "36px" } }).form; //创建窗体
  4805. _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); } }
  4806. break;
  4807. case "dataBoardSies": //数据融合
  4808. _formdiv = new U.UF.UI.form(
  4809. "数据融合",
  4810. $$("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 }), {
  4811. "id": "dataBoardSies",
  4812. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4813. "onresize": function () { }
  4814. }, {
  4815. closecallback: function () { }
  4816. }, { "style": { "height": "36px" } }).form; //创建窗体
  4817. _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); } }
  4818. break;
  4819. case "dataBoardNew": //数据看板
  4820. _formdiv = new U.UF.UI.form(
  4821. "综合看板",
  4822. $$("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 }), {
  4823. "id": "dataBoardNew",
  4824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //创建窗体
  4829. _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); } }
  4830. break;
  4831. case "dataBoardTest": //数据看板
  4832. _formdiv = new U.UF.UI.form(
  4833. "评测看板",
  4834. $$("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 }), {
  4835. "id": "dataBoardTest",
  4836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4837. "onresize": function () { }
  4838. }, {
  4839. closecallback: function () { }
  4840. }, { "style": { "height": "36px" } }).form; //创建窗体
  4841. _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); } }
  4842. break;
  4843. case "AIAnalyse": //AI共创
  4844. _formdiv = new U.UF.UI.form(
  4845. "AI分析",
  4846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  4847. "id": "AIAnalyse",
  4848. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4849. "onresize": function () { }
  4850. }, {
  4851. closecallback: function () { }
  4852. }, { "style": { "height": "36px" } }).form; //创建窗体
  4853. _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); } }
  4854. break;
  4855. case "studioCourse": //AI共创
  4856. _formdiv = new U.UF.UI.form(
  4857. "工作管理",
  4858. $$("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 }), {
  4859. "id": "studioCourse",
  4860. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4861. "onresize": function () { }
  4862. }, {
  4863. closecallback: function () { }
  4864. }, { "style": { "height": "36px" } }).form; //创建窗体
  4865. _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); } }
  4866. break;
  4867. case "studioIndex": //AI共创
  4868. _formdiv = new U.UF.UI.form(
  4869. "工作中心",
  4870. $$("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 }), {
  4871. "id": "studioIndex",
  4872. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4873. "onresize": function () { }
  4874. }, {
  4875. closecallback: function () { }
  4876. }, { "style": { "height": "36px" } }).form; //创建窗体
  4877. _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); } }
  4878. break;
  4879. case "source":
  4880. _formdiv = new U.UF.UI.form(
  4881. "教学资源",
  4882. $$("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 }), {
  4883. "id": "source",
  4884. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  4885. "onresize": function () { }
  4886. }, {
  4887. closecallback: function () { }
  4888. }, { "style": { "height": "36px" } }).form; //创建窗体
  4889. _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); } }
  4890. break;
  4891. case "testTeacher":
  4892. _formdiv = new U.UF.UI.form(
  4893. "教师管理",
  4894. $$("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 }), {
  4895. "id": "testTeacher",
  4896. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. _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); } }
  4902. break;
  4903. case "testStudent":
  4904. _formdiv = new U.UF.UI.form(
  4905. "教师中心",
  4906. $$("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 }), {
  4907. "id": "testStudent",
  4908. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  4909. "onresize": function () { }
  4910. }, {
  4911. closecallback: function () { }
  4912. }, { "style": { "height": "36px" } }).form; //创建窗体
  4913. _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); } }
  4914. break;
  4915. case "testTeacherSies":
  4916. _formdiv = new U.UF.UI.form(
  4917. "教师管理",
  4918. $$("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 }), {
  4919. "id": "testTeacherSies",
  4920. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  4921. "onresize": function () { }
  4922. }, {
  4923. closecallback: function () { }
  4924. }, { "style": { "height": "36px" } }).form; //创建窗体
  4925. _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); } }
  4926. break;
  4927. case "testStudentSies":
  4928. _formdiv = new U.UF.UI.form(
  4929. "教师中心",
  4930. $$("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 }), {
  4931. "id": "testStudentSies",
  4932. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4938. break;
  4939. case "ytpbl": //消息通知
  4940. _formdiv = new U.UF.UI.form(
  4941. "案例征集",
  4942. $$("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 }), {
  4943. "id": "ytpbl",
  4944. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4945. "onresize": function () { }
  4946. }, {
  4947. closecallback: function () { }
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4950. // 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");
  4951. break;
  4952. case "aiCourseResource": //人工智能窗体
  4953. _formdiv = new U.UF.UI.form(
  4954. false,
  4955. $$("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 }), {
  4956. "id": "aiCourseResource",
  4957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4958. "onresize": function () { },
  4959. "isdrag": false,
  4960. }, {
  4961. closecallback: function () { }
  4962. }, { "style": { "height": "36px" } }).form; //创建窗体
  4963. _taskbar = ''
  4964. break;
  4965. case "szdjgCocooroboX": //图形化编程
  4966. _formdiv = new U.UF.UI.form(
  4967. "图形化编程",
  4968. $$("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" }), {
  4969. "id": "szdjgCocooroboX",
  4970. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. _taskbar = ''
  4976. break;
  4977. case "szdjgPython": //python编程
  4978. _formdiv = new U.UF.UI.form(
  4979. "python编程",
  4980. $$("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" }), {
  4981. "id": "szdjgPython",
  4982. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4983. "onresize": function () { }
  4984. }, {
  4985. closecallback: function () { }
  4986. }, { "style": { "height": "36px" } }).form; //创建窗体
  4987. _taskbar = ''
  4988. break;
  4989. }
  4990. //U.MD.D.I.openClick(str);
  4991. //如果有任务栏信息
  4992. if (_taskbar) {
  4993. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  4994. }
  4995. }
  4996. // U.MD.D.I.openClick = function(str){
  4997. // var click = '';
  4998. // switch(str){
  4999. // case 'friend':
  5000. // click = '我的好友';
  5001. // break;
  5002. // case 'domain':
  5003. // click = '域名管理';
  5004. // break;
  5005. // case 'disk':
  5006. // click = '我的云盘';
  5007. // break;
  5008. // case 'word':
  5009. // click = 'Word';
  5010. // break;
  5011. // case 'excel':
  5012. // click = 'Execl';
  5013. // break;
  5014. // case 'txt':
  5015. // click = '文本文件';
  5016. // break;
  5017. // case 'lookupFriend':
  5018. // click = '查找好友';
  5019. // break;
  5020. // case 'ftp':
  5021. // click = 'FTP';
  5022. // break;
  5023. // case 'group':
  5024. // click = '群组';
  5025. // break;
  5026. // case 'set':
  5027. // click = '我的设置';
  5028. // break;
  5029. // case 'systemSet':
  5030. // click = '系统设置';
  5031. // break;
  5032. // case 'boomYun':
  5033. // click = '互联办公';
  5034. // break;
  5035. // case 'xz':
  5036. // click = '云端下载';
  5037. // break;
  5038. // case 'client':
  5039. // click = '有思浏览器';
  5040. // break;
  5041. // case 'backEndProgramming':
  5042. // click = '在线后台编程';
  5043. // break;
  5044. // case 'frontEndProgramming':
  5045. // click = '在线前端编程';
  5046. // break;
  5047. // default: break;
  5048. // }
  5049. // if(U.MD.D.I.Ip && click){
  5050. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5051. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5052. // })
  5053. // }
  5054. // }
  5055. /**
  5056. *函数作用:ajax简易函数,使用post格式
  5057. *@param url {data} 后台地址
  5058. *@param data {data} 参数json
  5059. *@param fn {data} 回调函数
  5060. *
  5061. */
  5062. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5063. // var xhr = new XMLHttpRequest();
  5064. // xhr.open("GET",url,true);
  5065. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5066. // xhr.onreadystatechange = function(){
  5067. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5068. // fn.call(this,xhr.responseText);
  5069. // }
  5070. // };
  5071. // xhr.send();
  5072. // }
  5073. /*判断是否是内网IP*/
  5074. // U.MD.D.I.isInnerIPFn = function(str){
  5075. // var curPageUrl = str;
  5076. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5077. // curPageUrl =curPageUrl.replace(reg1,'');
  5078. // // console.log('curPageUrl-1 '+curPageUrl);
  5079. // var reg2 = /\:+/g;//替换冒号为一点
  5080. // curPageUrl =curPageUrl.replace(reg2,'.');
  5081. // // console.log('curPageUrl-2 '+curPageUrl);
  5082. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5083. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5084. // if(curPageUrl[2] != '16'){
  5085. // return ipAddress;
  5086. // }else{
  5087. // return false;
  5088. // }
  5089. // }
  5090. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5091. // //compatibility for firefox and chrome
  5092. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5093. // var pc = new myPeerConnection({
  5094. // iceServers: []
  5095. // }),
  5096. // noop = function() {},
  5097. // localIPs = {},
  5098. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5099. // key;
  5100. // function iterateIP(ip) {
  5101. // if (!localIPs[ip]) onNewIP(ip);
  5102. // localIPs[ip] = true;
  5103. // }
  5104. // //create a bogus data channel
  5105. // pc.createDataChannel("");
  5106. // // create offer and set local description
  5107. // pc.createOffer().then(function(sdp) {
  5108. // sdp.sdp.split('\n').forEach(function(line) {
  5109. // if (line.indexOf('candidate') < 0) return;
  5110. // line.match(ipRegex).forEach(iterateIP);
  5111. // });
  5112. // pc.setLocalDescription(sdp, noop, noop);
  5113. // }).catch(function(reason) {
  5114. // // An error occurred, so handle the failure to connect
  5115. // });
  5116. // //sten for candidate events
  5117. // pc.onicecandidate = function(ice) {
  5118. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5119. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5120. // };
  5121. // }
  5122. // U.MD.D.I.getUserIpBool = function(callback){
  5123. // U.MD.D.I.getUserIP(function(ip){
  5124. // alert("Got IP! :" + ip);
  5125. // });
  5126. //}
  5127. //#endregion
  5128. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5129. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5130. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5131. _userinfo = US.userInfo, //登录用户信息
  5132. _userid = US.userInfo.userid //登录用户id
  5133. let _iframe;
  5134. let _cid = cid,
  5135. _stage = stage,
  5136. _task = task,
  5137. _tool = tool;
  5138. var _jie = $$("div", {
  5139. "style": {
  5140. "position": "absolute",
  5141. "bottom": "50px",
  5142. "right": "50px",
  5143. "zIndex": "9999",
  5144. "backgroundColor": "#2268bc",
  5145. "color": "#fff",
  5146. "padding": "12px 20px",
  5147. "cursor": "pointer",
  5148. "borderRadius": "4px",
  5149. },
  5150. "innerHTML": "提交作业"
  5151. })
  5152. let aTool = ''
  5153. let _loading = document.createElement('div')
  5154. _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;"
  5155. // _loading.id = "";
  5156. let _lchild = document.createElement('div')
  5157. let _limg = document.createElement('img')
  5158. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5159. _limg.style = "width: 26px;margin-right: 10px;"
  5160. _lchild.appendChild(_limg)
  5161. let _lspan = document.createElement('span')
  5162. _lspan.innerHTML = "上传中..."
  5163. _lchild.appendChild(_lspan)
  5164. _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%);"
  5165. _loading.appendChild(_lchild)
  5166. var _box = $$('div', {
  5167. "style": {
  5168. "position": "relative",
  5169. "width": "100%",
  5170. "height": "100%",
  5171. },
  5172. })
  5173. _box.appendChild(_loading)
  5174. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5175. switch (str) {
  5176. case "whiteboard":
  5177. aTool = 1;
  5178. _iframe = $$("iframe", {
  5179. "frameborder": "no",
  5180. "border": "0",
  5181. "scrolling ": "no",
  5182. "style": {
  5183. "cssText": "border:0;width:100%;height:100%"
  5184. },
  5185. "src": "https://iwb.cocorobo.cn/"
  5186. })
  5187. _box.appendChild(_iframe);
  5188. _box.appendChild(_jie);
  5189. _formdiv = new U.UF.UI.form(
  5190. "电子白板",
  5191. _box, {
  5192. "id": "whiteboard" + cid + stage + task + tool,
  5193. "style": {
  5194. "width": "90%",
  5195. "height": "90%",
  5196. "overflow": 'hidden'
  5197. },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, {
  5202. "style": {
  5203. "height": "36px"
  5204. }
  5205. }).form; //创建窗体
  5206. _taskbar = {
  5207. "id": str + _formdiv.id,
  5208. "style": {
  5209. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5210. },
  5211. "name": "电子白板",
  5212. "forms": _formdiv,
  5213. "click": function () {
  5214. U.MD.D.I.openApplication(str, obj, info);
  5215. }
  5216. }
  5217. break;
  5218. case "mind":
  5219. aTool = 3;
  5220. _iframe = $$("iframe", {
  5221. "frameborder": "no",
  5222. "border": "0",
  5223. "scrolling ": "no",
  5224. "style": {
  5225. "cssText": "border:0;width:100%;height:100%"
  5226. },
  5227. "src": "/kityminder-editor/dist/index.html"
  5228. })
  5229. _box.appendChild(_iframe);
  5230. _box.appendChild(_jie);
  5231. _formdiv = new U.UF.UI.form(
  5232. "思维导图",
  5233. _box, { //"/jsmind/example/demo.html"
  5234. "id": "mind" + cid + stage + task + tool,
  5235. "style": {
  5236. "width": "90%",
  5237. "height": "90%",
  5238. "overflow": 'hidden'
  5239. },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, {
  5244. "style": {
  5245. "height": "36px"
  5246. }
  5247. }).form; //创建窗体
  5248. _taskbar = {
  5249. "id": str + _formdiv.id,
  5250. "style": {
  5251. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5252. },
  5253. "name": "思维导图",
  5254. "forms": _formdiv,
  5255. "click": function () {
  5256. U.MD.D.I.openApplication(str, obj, info);
  5257. }
  5258. }
  5259. break;
  5260. case "MindMap":
  5261. aTool = 3;
  5262. _iframe = $$("iframe", {
  5263. "frameborder": "no",
  5264. "border": "0",
  5265. "scrolling ": "no",
  5266. "style": {
  5267. "cssText": "border:0;width:100%;height:100%"
  5268. },
  5269. "src": "//cloud.cocorobo.cn/mind/"
  5270. })
  5271. _box.appendChild(_iframe);
  5272. _box.appendChild(_jie);
  5273. _formdiv = new U.UF.UI.form(
  5274. "思维导图",
  5275. _box, { //"/jsmind/example/demo.html"
  5276. "id": "mind" + cid + stage + task + tool,
  5277. "style": {
  5278. "width": "90%",
  5279. "height": "90%",
  5280. "overflow": 'hidden'
  5281. },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, {
  5286. "style": {
  5287. "height": "36px"
  5288. }
  5289. }).form; //创建窗体
  5290. _taskbar = {
  5291. "id": str + _formdiv.id,
  5292. "style": {
  5293. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5294. },
  5295. "name": "思维导图",
  5296. "forms": _formdiv,
  5297. "click": function () {
  5298. U.MD.D.I.openApplication(str, obj, info);
  5299. }
  5300. }
  5301. break;
  5302. case "doc":
  5303. aTool = 6;
  5304. _iframe = $$("iframe", {
  5305. "frameborder": "no",
  5306. "border": "0",
  5307. "scrolling ": "no",
  5308. "style": {
  5309. "cssText": "border:0;width:100%;height:100%"
  5310. },
  5311. "src": "/Office/Word/WordEditArea.htm"
  5312. })
  5313. _box.appendChild(_iframe);
  5314. _box.appendChild(_jie);
  5315. _formdiv = new U.UF.UI.form(
  5316. "协同文档",
  5317. _box, {
  5318. "id": "doc" + cid + stage + task + tool,
  5319. "style": {
  5320. "width": "90%",
  5321. "height": "90%",
  5322. "overflow": 'hidden'
  5323. },
  5324. "onresize": function () { }
  5325. }, {
  5326. closecallback: function () { }
  5327. }, {
  5328. "style": {
  5329. "height": "36px"
  5330. }
  5331. }).form; //创建窗体
  5332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5334. })
  5335. _taskbar = {
  5336. "id": str + _formdiv.id,
  5337. "style": {
  5338. "backgroundImage": "url(/img/icon/doc.png)"
  5339. },
  5340. "name": "协同文档",
  5341. "forms": _formdiv,
  5342. "click": function () {
  5343. U.MD.D.I.openApplication(str, obj, info);
  5344. }
  5345. }
  5346. break;
  5347. case "mindNetwork": //好友打开
  5348. aTool = 7;
  5349. _iframe = $$("iframe", {
  5350. "webkitallowfullscreen": "",
  5351. "mozallowfullscreen": "",
  5352. "allowfullscreen": "",
  5353. "frameborder": "no",
  5354. "border": "0",
  5355. "scrolling ": "no",
  5356. "style": {
  5357. "cssText": "border:0; width:100%; height:100%;"
  5358. },
  5359. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5360. })
  5361. _box.appendChild(_iframe);
  5362. _box.appendChild(_jie);
  5363. _formdiv = new U.UF.UI.form(
  5364. "思维网格",
  5365. _box, {
  5366. "id": "mindNetwork" + cid + stage + task + tool,
  5367. "style": {
  5368. "width": "90%",
  5369. "height": "90%",
  5370. "overflow": 'hidden'
  5371. },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, {
  5376. "style": {
  5377. "height": "36px"
  5378. }
  5379. }).form; //创建窗体
  5380. _taskbar = {
  5381. "id": str + _formdiv.id,
  5382. "style": {
  5383. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5384. },
  5385. "name": "思维网格",
  5386. "forms": _formdiv,
  5387. "click": function () {
  5388. U.MD.D.I.openApplication(str, obj, info);
  5389. }
  5390. }
  5391. break;
  5392. case "courseDesign":
  5393. _iframe = $$("iframe", {
  5394. "webkitallowfullscreen": "",
  5395. "mozallowfullscreen": "",
  5396. "allowfullscreen": "",
  5397. "frameborder": "no",
  5398. "border": "0",
  5399. "scrolling ": "no",
  5400. "style": {
  5401. "cssText": "border:0; width:100%; height:100%;"
  5402. },
  5403. "src": "/course-design-vue"
  5404. })
  5405. _box.appendChild(_iframe);
  5406. _box.appendChild(_jie);
  5407. _formdiv = new U.UF.UI.form(
  5408. "项目设计",
  5409. _box, {
  5410. "id": "courseDesign" + cid + stage + task + tool,
  5411. "style": {
  5412. "width": "90%",
  5413. "height": "90%",
  5414. "overflow": 'hidden'
  5415. },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, {
  5420. "style": {
  5421. "height": "36px"
  5422. }
  5423. }).form; //创建窗体
  5424. _taskbar = {
  5425. "id": str + _formdiv.id,
  5426. "style": {
  5427. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5428. },
  5429. "name": "项目设计",
  5430. "forms": _formdiv,
  5431. "click": function () {
  5432. U.MD.D.I.openApplication(str, obj, info);
  5433. }
  5434. }
  5435. break;
  5436. }
  5437. const script1 = document.createElement("script");
  5438. script1.type = "text/javascript";
  5439. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5440. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5441. const script2 = document.createElement("script");
  5442. script2.type = "text/javascript";
  5443. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5444. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5445. const script3 = document.createElement("script");
  5446. script3.type = "text/javascript";
  5447. script3.charset = "UTF-8";
  5448. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5449. const script4 = document.createElement("script");
  5450. script4.type = "text/javascript";
  5451. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5452. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5453. if (_iframe) {
  5454. if (str == 'doc') {
  5455. _iframe = _formdiv.querySelector('iframe')
  5456. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5457. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5458. _iframe.contentWindow.document.body.appendChild(script1);
  5459. _iframe.contentWindow.document.body.appendChild(script2);
  5460. // _iframe.contentWindow.document.body.appendChild(script3);
  5461. _iframe.contentWindow.document.body.appendChild(script4);
  5462. })
  5463. if (onloadListener) {
  5464. _iframe.contentDocument.location.reload()
  5465. } else {
  5466. _iframe.contentDocument.location.reload()
  5467. }
  5468. } else if (str == 'courseDesign') {
  5469. U.UF.DL.iframeLoad(_iframe, function () {
  5470. // _iframe.contentWindow.U.MD.O.W.load();
  5471. // _iframe.contentWindow.document.body.appendChild(script1);
  5472. _iframe.contentWindow.document.body.appendChild(script2);
  5473. _iframe.contentWindow.document.body.appendChild(script4);
  5474. })
  5475. } else if (str == 'mind') {
  5476. _iframe = _formdiv.querySelector('iframe')
  5477. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5478. //
  5479. _iframe.contentWindow.document.body.appendChild(script1);
  5480. _iframe.contentWindow.document.body.appendChild(script2);
  5481. _iframe.contentWindow.document.body.appendChild(script4);
  5482. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5483. })
  5484. if (onloadListener) {
  5485. _iframe.contentDocument.location.reload()
  5486. } else {
  5487. _iframe.contentDocument.location.reload()
  5488. }
  5489. } else if (str == 'whiteboard') {
  5490. _iframe = _formdiv.querySelector('iframe')
  5491. let onloadListener = _iframe.onload = () => {
  5492. _iframe.contentWindow.document.body.appendChild(script1);
  5493. _iframe.contentWindow.document.body.appendChild(script2);
  5494. _iframe.contentWindow.document.body.appendChild(script4);
  5495. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5496. };
  5497. if (onloadListener) {
  5498. _iframe.contentDocument.location.reload()
  5499. } else {
  5500. _iframe.contentDocument.location.reload()
  5501. }
  5502. } else {
  5503. _iframe.onload = () => {
  5504. _iframe.contentWindow.document.body.appendChild(script1);
  5505. _iframe.contentWindow.document.body.appendChild(script2);
  5506. // _iframe.contentWindow.document.body.appendChild(script3);
  5507. _iframe.contentWindow.document.body.appendChild(script4);
  5508. };
  5509. }
  5510. _jie.onclick = async () => {
  5511. let text = ''
  5512. if (aTool == 1) {
  5513. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5514. } else if (aTool == 6) {
  5515. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5516. } else if (aTool == 3) {
  5517. text = await U.MD.D.I.getEditorContent(_iframe);
  5518. }
  5519. _loading.style.display = 'flex'
  5520. console.log(_loading);
  5521. var _ajs = _iframe.contentWindow.document.createElement("script");
  5522. _ajs.type = "text/javascript";
  5523. _ajs.innerHTML =
  5524. // 'console.log(' + _loading + ');\n' +
  5525. 'var _js = document.createElement("script");\n' +
  5526. '_js.type="text/javascript";\n' +
  5527. '_js.charset="UTF-8";\n' +
  5528. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5529. "_js.onload = function(){\n" +
  5530. ' var a = document.getElementsByTagName("img")\n' +
  5531. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5532. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5533. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5534. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5535. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5536. "beforeUpload_shishi(file," +
  5537. "'" +
  5538. _userid +
  5539. "'" +
  5540. ", " +
  5541. "'" +
  5542. _cid +
  5543. "'" +
  5544. ", " +
  5545. "'" +
  5546. _stage +
  5547. "'" +
  5548. ", " +
  5549. "'" +
  5550. _task +
  5551. "'" +
  5552. ", " +
  5553. "'" +
  5554. _tool +
  5555. "'" +
  5556. ", " +
  5557. "'" +
  5558. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5559. "'" +
  5560. ", " +
  5561. "'" +
  5562. aTool +
  5563. "'" +
  5564. ", " +
  5565. "`" +
  5566. text +
  5567. "`" +
  5568. ")\n" +
  5569. " });\n" +
  5570. "}\n" +
  5571. "document.head.appendChild(_js);\n";
  5572. _iframe.contentWindow.document.head.appendChild(_ajs);
  5573. }
  5574. }
  5575. //U.MD.D.I.openClick(str);
  5576. //如果有任务栏信息
  5577. // if (_taskbar) {
  5578. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5579. // }
  5580. }
  5581. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5582. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5583. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5584. _userinfo = US.userInfo, //登录用户信息
  5585. _userid = US.userInfo.userid //登录用户id
  5586. let _iframe;
  5587. let _cid = cid,
  5588. _stage = stage,
  5589. _task = task,
  5590. _tool = tool;
  5591. var _jie = $$("div", {
  5592. "style": {
  5593. "position": "absolute",
  5594. "bottom": "50px",
  5595. "right": "50px",
  5596. "zIndex": "9999",
  5597. "backgroundColor": "#2268bc",
  5598. "color": "#fff",
  5599. "padding": "12px 20px",
  5600. "cursor": "pointer",
  5601. "borderRadius": "4px",
  5602. },
  5603. "innerHTML": "提交作业"
  5604. })
  5605. let aTool = ''
  5606. let _loading = document.createElement('div')
  5607. _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;"
  5608. // _loading.id = "";
  5609. let _lchild = document.createElement('div')
  5610. let _limg = document.createElement('img')
  5611. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5612. _limg.style = "width: 26px;margin-right: 10px;"
  5613. _lchild.appendChild(_limg)
  5614. let _lspan = document.createElement('span')
  5615. _lspan.innerHTML = "上传中..."
  5616. _lchild.appendChild(_lspan)
  5617. _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%);"
  5618. _loading.appendChild(_lchild)
  5619. var _box = $$('div', {
  5620. "style": {
  5621. "position": "relative",
  5622. "width": "100%",
  5623. "height": "100%",
  5624. },
  5625. })
  5626. _box.appendChild(_loading)
  5627. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5628. switch (str) {
  5629. case "whiteboard":
  5630. aTool = 1;
  5631. _iframe = $$("iframe", {
  5632. "frameborder": "no",
  5633. "border": "0",
  5634. "scrolling ": "no",
  5635. "style": {
  5636. "cssText": "border:0;width:100%;height:100%"
  5637. },
  5638. "src": "https://iwb.cocorobo.cn/"
  5639. })
  5640. _box.appendChild(_iframe);
  5641. _box.appendChild(_jie);
  5642. _formdiv = new U.UF.UI.form(
  5643. "电子白板",
  5644. _box, {
  5645. "id": "whiteboard" + cid + stage + task + tool,
  5646. "style": {
  5647. "width": "90%",
  5648. "height": "90%",
  5649. "overflow": 'hidden'
  5650. },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, {
  5655. "style": {
  5656. "height": "36px"
  5657. }
  5658. }).form; //创建窗体
  5659. _taskbar = {
  5660. "id": str + _formdiv.id,
  5661. "style": {
  5662. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5663. },
  5664. "name": "电子白板",
  5665. "forms": _formdiv,
  5666. "click": function () {
  5667. U.MD.D.I.openApplication(str, obj, info);
  5668. }
  5669. }
  5670. break;
  5671. case "mind":
  5672. aTool = 3;
  5673. _iframe = $$("iframe", {
  5674. "frameborder": "no",
  5675. "border": "0",
  5676. "scrolling ": "no",
  5677. "style": {
  5678. "cssText": "border:0;width:100%;height:100%"
  5679. },
  5680. "src": "/kityminder-editor/dist/index.html"
  5681. })
  5682. _box.appendChild(_iframe);
  5683. _box.appendChild(_jie);
  5684. _formdiv = new U.UF.UI.form(
  5685. "思维导图",
  5686. _box, { //"/jsmind/example/demo.html"
  5687. "id": "mind" + cid + stage + task + tool,
  5688. "style": {
  5689. "width": "90%",
  5690. "height": "90%",
  5691. "overflow": 'hidden'
  5692. },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, {
  5697. "style": {
  5698. "height": "36px"
  5699. }
  5700. }).form; //创建窗体
  5701. _taskbar = {
  5702. "id": str + _formdiv.id,
  5703. "style": {
  5704. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5705. },
  5706. "name": "思维导图",
  5707. "forms": _formdiv,
  5708. "click": function () {
  5709. U.MD.D.I.openApplication(str, obj, info);
  5710. }
  5711. }
  5712. break;
  5713. case "MindMap":
  5714. aTool = 3;
  5715. _iframe = $$("iframe", {
  5716. "frameborder": "no",
  5717. "border": "0",
  5718. "scrolling ": "no",
  5719. "style": {
  5720. "cssText": "border:0;width:100%;height:100%"
  5721. },
  5722. "src": "//cloud.cocorobo.cn/mind/"
  5723. })
  5724. _box.appendChild(_iframe);
  5725. _box.appendChild(_jie);
  5726. _formdiv = new U.UF.UI.form(
  5727. "思维导图",
  5728. _box, { //"/jsmind/example/demo.html"
  5729. "id": "mind" + cid + stage + task + tool,
  5730. "style": {
  5731. "width": "90%",
  5732. "height": "90%",
  5733. "overflow": 'hidden'
  5734. },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, {
  5739. "style": {
  5740. "height": "36px"
  5741. }
  5742. }).form; //创建窗体
  5743. _taskbar = {
  5744. "id": str + _formdiv.id,
  5745. "style": {
  5746. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5747. },
  5748. "name": "思维导图",
  5749. "forms": _formdiv,
  5750. "click": function () {
  5751. U.MD.D.I.openApplication(str, obj, info);
  5752. }
  5753. }
  5754. break;
  5755. case "doc":
  5756. aTool = 6;
  5757. _iframe = $$("iframe", {
  5758. "frameborder": "no",
  5759. "border": "0",
  5760. "scrolling ": "no",
  5761. "style": {
  5762. "cssText": "border:0;width:100%;height:100%"
  5763. },
  5764. "src": "/Office/Word/WordEditArea.htm"
  5765. })
  5766. _box.appendChild(_iframe);
  5767. _box.appendChild(_jie);
  5768. _formdiv = new U.UF.UI.form(
  5769. "协同文档",
  5770. _box, {
  5771. "id": "doc" + cid + stage + task + tool,
  5772. "style": {
  5773. "width": "90%",
  5774. "height": "90%",
  5775. "overflow": 'hidden'
  5776. },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, {
  5781. "style": {
  5782. "height": "36px"
  5783. }
  5784. }).form; //创建窗体
  5785. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5786. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5787. })
  5788. _taskbar = {
  5789. "id": str + _formdiv.id,
  5790. "style": {
  5791. "backgroundImage": "url(/img/icon/doc.png)"
  5792. },
  5793. "name": "协同文档",
  5794. "forms": _formdiv,
  5795. "click": function () {
  5796. U.MD.D.I.openApplication(str, obj, info);
  5797. }
  5798. }
  5799. break;
  5800. case "mindNetwork": //好友打开
  5801. aTool = 7;
  5802. _iframe = $$("iframe", {
  5803. "webkitallowfullscreen": "",
  5804. "mozallowfullscreen": "",
  5805. "allowfullscreen": "",
  5806. "frameborder": "no",
  5807. "border": "0",
  5808. "scrolling ": "no",
  5809. "style": {
  5810. "cssText": "border:0; width:100%; height:100%;"
  5811. },
  5812. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5813. })
  5814. _box.appendChild(_iframe);
  5815. _box.appendChild(_jie);
  5816. _formdiv = new U.UF.UI.form(
  5817. "思维网格",
  5818. _box, {
  5819. "id": "mindNetwork" + cid + stage + task + tool,
  5820. "style": {
  5821. "width": "90%",
  5822. "height": "90%",
  5823. "overflow": 'hidden'
  5824. },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, {
  5829. "style": {
  5830. "height": "36px"
  5831. }
  5832. }).form; //创建窗体
  5833. _taskbar = {
  5834. "id": str + _formdiv.id,
  5835. "style": {
  5836. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5837. },
  5838. "name": "思维网格",
  5839. "forms": _formdiv,
  5840. "click": function () {
  5841. U.MD.D.I.openApplication(str, obj, info);
  5842. }
  5843. }
  5844. break;
  5845. case "courseDesign":
  5846. _iframe = $$("iframe", {
  5847. "webkitallowfullscreen": "",
  5848. "mozallowfullscreen": "",
  5849. "allowfullscreen": "",
  5850. "frameborder": "no",
  5851. "border": "0",
  5852. "scrolling ": "no",
  5853. "style": {
  5854. "cssText": "border:0; width:100%; height:100%;"
  5855. },
  5856. "src": "/course-design-vue"
  5857. })
  5858. _box.appendChild(_iframe);
  5859. _box.appendChild(_jie);
  5860. _formdiv = new U.UF.UI.form(
  5861. "项目设计",
  5862. _box, {
  5863. "id": "courseDesign" + cid + stage + task + tool,
  5864. "style": {
  5865. "width": "90%",
  5866. "height": "90%",
  5867. "overflow": 'hidden'
  5868. },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, {
  5873. "style": {
  5874. "height": "36px"
  5875. }
  5876. }).form; //创建窗体
  5877. _taskbar = {
  5878. "id": str + _formdiv.id,
  5879. "style": {
  5880. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5881. },
  5882. "name": "项目设计",
  5883. "forms": _formdiv,
  5884. "click": function () {
  5885. U.MD.D.I.openApplication(str, obj, info);
  5886. }
  5887. }
  5888. break;
  5889. }
  5890. const script1 = document.createElement("script");
  5891. script1.type = "text/javascript";
  5892. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5893. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5894. const script2 = document.createElement("script");
  5895. script2.type = "text/javascript";
  5896. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5897. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5898. const script3 = document.createElement("script");
  5899. script3.type = "text/javascript";
  5900. script3.charset = "UTF-8";
  5901. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5902. const script4 = document.createElement("script");
  5903. script4.type = "text/javascript";
  5904. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5905. script4.src = window.origin + "/js/Common/jietu2E.js";
  5906. if (_iframe) {
  5907. if (str == 'doc') {
  5908. _iframe = _formdiv.querySelector('iframe')
  5909. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5910. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5911. _iframe.contentWindow.document.body.appendChild(script1);
  5912. _iframe.contentWindow.document.body.appendChild(script2);
  5913. // _iframe.contentWindow.document.body.appendChild(script3);
  5914. _iframe.contentWindow.document.body.appendChild(script4);
  5915. })
  5916. if (onloadListener) {
  5917. _iframe.contentDocument.location.reload()
  5918. } else {
  5919. _iframe.contentDocument.location.reload()
  5920. }
  5921. } else if (str == 'courseDesign') {
  5922. U.UF.DL.iframeLoad(_iframe, function () {
  5923. // _iframe.contentWindow.U.MD.O.W.load();
  5924. // _iframe.contentWindow.document.body.appendChild(script1);
  5925. _iframe.contentWindow.document.body.appendChild(script2);
  5926. _iframe.contentWindow.document.body.appendChild(script4);
  5927. })
  5928. } else if (str == 'mind') {
  5929. _iframe = _formdiv.querySelector('iframe')
  5930. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5931. //
  5932. _iframe.contentWindow.document.body.appendChild(script1);
  5933. _iframe.contentWindow.document.body.appendChild(script2);
  5934. _iframe.contentWindow.document.body.appendChild(script4);
  5935. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5936. })
  5937. if (onloadListener) {
  5938. _iframe.contentDocument.location.reload()
  5939. } else {
  5940. _iframe.contentDocument.location.reload()
  5941. }
  5942. } else if (str == 'whiteboard') {
  5943. _iframe = _formdiv.querySelector('iframe')
  5944. let onloadListener = _iframe.onload = () => {
  5945. _iframe.contentWindow.document.body.appendChild(script1);
  5946. _iframe.contentWindow.document.body.appendChild(script2);
  5947. _iframe.contentWindow.document.body.appendChild(script4);
  5948. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5949. };
  5950. if (onloadListener) {
  5951. _iframe.contentDocument.location.reload()
  5952. } else {
  5953. _iframe.contentDocument.location.reload()
  5954. }
  5955. } else {
  5956. _iframe.onload = () => {
  5957. _iframe.contentWindow.document.body.appendChild(script1);
  5958. _iframe.contentWindow.document.body.appendChild(script2);
  5959. // _iframe.contentWindow.document.body.appendChild(script3);
  5960. _iframe.contentWindow.document.body.appendChild(script4);
  5961. };
  5962. }
  5963. _jie.onclick = async () => {
  5964. let text = ''
  5965. if (aTool == 1) {
  5966. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5967. } else if (aTool == 6) {
  5968. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5969. } else if (aTool == 3) {
  5970. text = await U.MD.D.I.getEditorContent(_iframe);
  5971. }
  5972. _loading.style.display = 'flex'
  5973. console.log(_loading);
  5974. var _ajs = _iframe.contentWindow.document.createElement("script");
  5975. _ajs.type = "text/javascript";
  5976. _ajs.innerHTML =
  5977. // 'console.log(' + _loading + ');\n' +
  5978. 'var _js = document.createElement("script");\n' +
  5979. '_js.type="text/javascript";\n' +
  5980. '_js.charset="UTF-8";\n' +
  5981. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5982. "_js.onload = function(){\n" +
  5983. ' var a = document.getElementsByTagName("img")\n' +
  5984. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5985. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5986. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5987. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5988. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5989. "beforeUpload_shishi(file," +
  5990. "'" +
  5991. _userid +
  5992. "'" +
  5993. ", " +
  5994. "'" +
  5995. _cid +
  5996. "'" +
  5997. ", " +
  5998. "'" +
  5999. _stage +
  6000. "'" +
  6001. ", " +
  6002. "'" +
  6003. _task +
  6004. "'" +
  6005. ", " +
  6006. "'" +
  6007. _tool +
  6008. "'" +
  6009. ", " +
  6010. "'" +
  6011. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6012. "'" +
  6013. ", " +
  6014. "'" +
  6015. aTool +
  6016. "'" +
  6017. ", " +
  6018. "`" +
  6019. text +
  6020. "`" +
  6021. ")\n" +
  6022. " });\n" +
  6023. "}\n" +
  6024. "document.head.appendChild(_js);\n";
  6025. _iframe.contentWindow.document.head.appendChild(_ajs);
  6026. }
  6027. }
  6028. //U.MD.D.I.openClick(str);
  6029. //如果有任务栏信息
  6030. // if (_taskbar) {
  6031. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6032. // }
  6033. }
  6034. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6035. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6036. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6037. _userid = student.userid, //登录用户id
  6038. _username = student.student //用户名字
  6039. let _iframe;
  6040. let _cid = cid,
  6041. _stage = stage,
  6042. _task = task,
  6043. _tool = tool;
  6044. var _jie = $$("div", {
  6045. "style": {
  6046. "position": "absolute",
  6047. "bottom": "50px",
  6048. "right": "50px",
  6049. "zIndex": "9999",
  6050. "backgroundColor": "#2268bc",
  6051. "color": "#fff",
  6052. "padding": "12px 20px",
  6053. "cursor": "pointer",
  6054. "borderRadius": "4px",
  6055. },
  6056. "innerHTML": "提交作业"
  6057. })
  6058. let aTool = ''
  6059. let _loading = document.createElement('div')
  6060. _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;"
  6061. // _loading.id = "";
  6062. let _lchild = document.createElement('div')
  6063. let _limg = document.createElement('img')
  6064. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6065. _limg.style = "width: 26px;margin-right: 10px;"
  6066. _lchild.appendChild(_limg)
  6067. let _lspan = document.createElement('span')
  6068. _lspan.innerHTML = "上传中..."
  6069. _lchild.appendChild(_lspan)
  6070. _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%);"
  6071. _loading.appendChild(_lchild)
  6072. var _box = $$('div', {
  6073. "style": {
  6074. "position": "relative",
  6075. "width": "100%",
  6076. "height": "100%",
  6077. },
  6078. })
  6079. _box.appendChild(_loading)
  6080. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6081. switch (str) {
  6082. case "whiteboard":
  6083. aTool = 1;
  6084. _iframe = $$("iframe", {
  6085. "frameborder": "no",
  6086. "border": "0",
  6087. "scrolling ": "no",
  6088. "style": {
  6089. "cssText": "border:0;width:100%;height:100%"
  6090. },
  6091. "src": "https://iwb.cocorobo.cn/"
  6092. })
  6093. _box.appendChild(_iframe);
  6094. _box.appendChild(_jie);
  6095. _formdiv = new U.UF.UI.form(
  6096. "电子白板-" + _username,
  6097. _box, {
  6098. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6099. "style": {
  6100. "width": "90%",
  6101. "height": "90%",
  6102. "overflow": 'hidden'
  6103. },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, {
  6108. "style": {
  6109. "height": "36px"
  6110. }
  6111. }).form; //创建窗体
  6112. _taskbar = {
  6113. "id": str + _formdiv.id,
  6114. "style": {
  6115. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6116. },
  6117. "name": "电子白板",
  6118. "forms": _formdiv,
  6119. "click": function () {
  6120. U.MD.D.I.openApplication(str, obj, info);
  6121. }
  6122. }
  6123. break;
  6124. case "mind":
  6125. aTool = 3;
  6126. _iframe = $$("iframe", {
  6127. "frameborder": "no",
  6128. "border": "0",
  6129. "scrolling ": "no",
  6130. "style": {
  6131. "cssText": "border:0;width:100%;height:100%"
  6132. },
  6133. "src": "/kityminder-editor/dist/index.html"
  6134. })
  6135. _box.appendChild(_iframe);
  6136. _box.appendChild(_jie);
  6137. _formdiv = new U.UF.UI.form(
  6138. "思维导图-" + _username,
  6139. _box, { //"/jsmind/example/demo.html"
  6140. "id": "mind" + cid + stage + task + tool + _userid,
  6141. "style": {
  6142. "width": "90%",
  6143. "height": "90%",
  6144. "overflow": 'hidden'
  6145. },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, {
  6150. "style": {
  6151. "height": "36px"
  6152. }
  6153. }).form; //创建窗体
  6154. _taskbar = {
  6155. "id": str + _formdiv.id,
  6156. "style": {
  6157. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6158. },
  6159. "name": "思维导图",
  6160. "forms": _formdiv,
  6161. "click": function () {
  6162. U.MD.D.I.openApplication(str, obj, info);
  6163. }
  6164. }
  6165. break;
  6166. case "MindMap":
  6167. aTool = 3;
  6168. _iframe = $$("iframe", {
  6169. "frameborder": "no",
  6170. "border": "0",
  6171. "scrolling ": "no",
  6172. "style": {
  6173. "cssText": "border:0;width:100%;height:100%"
  6174. },
  6175. "src": "//cloud.cocorobo.cn/mind/"
  6176. })
  6177. _box.appendChild(_iframe);
  6178. _box.appendChild(_jie);
  6179. _formdiv = new U.UF.UI.form(
  6180. "思维导图-" + _username,
  6181. _box, { //"/jsmind/example/demo.html"
  6182. "id": "mind" + cid + stage + task + tool + _userid,
  6183. "style": {
  6184. "width": "90%",
  6185. "height": "90%",
  6186. "overflow": 'hidden'
  6187. },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, {
  6192. "style": {
  6193. "height": "36px"
  6194. }
  6195. }).form; //创建窗体
  6196. _taskbar = {
  6197. "id": str + _formdiv.id,
  6198. "style": {
  6199. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6200. },
  6201. "name": "思维导图",
  6202. "forms": _formdiv,
  6203. "click": function () {
  6204. U.MD.D.I.openApplication(str, obj, info);
  6205. }
  6206. }
  6207. break;
  6208. case "doc":
  6209. aTool = 6;
  6210. _iframe = $$("iframe", {
  6211. "frameborder": "no",
  6212. "border": "0",
  6213. "scrolling ": "no",
  6214. "style": {
  6215. "cssText": "border:0;width:100%;height:100%"
  6216. },
  6217. "src": "/Office/Word/WordEditArea.htm"
  6218. })
  6219. _box.appendChild(_iframe);
  6220. _box.appendChild(_jie);
  6221. _formdiv = new U.UF.UI.form(
  6222. "协同文档-" + _username,
  6223. _box, {
  6224. "id": "doc" + cid + stage + task + tool + _userid,
  6225. "style": {
  6226. "width": "90%",
  6227. "height": "90%",
  6228. "overflow": 'hidden'
  6229. },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, {
  6234. "style": {
  6235. "height": "36px"
  6236. }
  6237. }).form; //创建窗体
  6238. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6239. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6240. })
  6241. _taskbar = {
  6242. "id": str + _formdiv.id,
  6243. "style": {
  6244. "backgroundImage": "url(/img/icon/doc.png)"
  6245. },
  6246. "name": "协同文档",
  6247. "forms": _formdiv,
  6248. "click": function () {
  6249. U.MD.D.I.openApplication(str, obj, info);
  6250. }
  6251. }
  6252. break;
  6253. case "mindNetwork": //好友打开
  6254. aTool = 7;
  6255. _iframe = $$("iframe", {
  6256. "webkitallowfullscreen": "",
  6257. "mozallowfullscreen": "",
  6258. "allowfullscreen": "",
  6259. "frameborder": "no",
  6260. "border": "0",
  6261. "scrolling ": "no",
  6262. "style": {
  6263. "cssText": "border:0; width:100%; height:100%;"
  6264. },
  6265. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6266. })
  6267. _box.appendChild(_iframe);
  6268. _box.appendChild(_jie);
  6269. _formdiv = new U.UF.UI.form(
  6270. "思维网格-" + _username,
  6271. _box, {
  6272. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6273. "style": {
  6274. "width": "90%",
  6275. "height": "90%",
  6276. "overflow": 'hidden'
  6277. },
  6278. "onresize": function () { }
  6279. }, {
  6280. closecallback: function () { }
  6281. }, {
  6282. "style": {
  6283. "height": "36px"
  6284. }
  6285. }).form; //创建窗体
  6286. _taskbar = {
  6287. "id": str + _formdiv.id,
  6288. "style": {
  6289. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6290. },
  6291. "name": "思维网格",
  6292. "forms": _formdiv,
  6293. "click": function () {
  6294. U.MD.D.I.openApplication(str, obj, info);
  6295. }
  6296. }
  6297. break;
  6298. case "courseDesign":
  6299. _iframe = $$("iframe", {
  6300. "webkitallowfullscreen": "",
  6301. "mozallowfullscreen": "",
  6302. "allowfullscreen": "",
  6303. "frameborder": "no",
  6304. "border": "0",
  6305. "scrolling ": "no",
  6306. "style": {
  6307. "cssText": "border:0; width:100%; height:100%;"
  6308. },
  6309. "src": "/course-design-vue"
  6310. })
  6311. _box.appendChild(_iframe);
  6312. _box.appendChild(_jie);
  6313. _formdiv = new U.UF.UI.form(
  6314. "项目设计-" + _username,
  6315. _box, {
  6316. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6317. "style": {
  6318. "width": "90%",
  6319. "height": "90%",
  6320. "overflow": 'hidden'
  6321. },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, {
  6326. "style": {
  6327. "height": "36px"
  6328. }
  6329. }).form; //创建窗体
  6330. _taskbar = {
  6331. "id": str + _formdiv.id,
  6332. "style": {
  6333. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6334. },
  6335. "name": "项目设计",
  6336. "forms": _formdiv,
  6337. "click": function () {
  6338. U.MD.D.I.openApplication(str, obj, info);
  6339. }
  6340. }
  6341. break;
  6342. }
  6343. const script1 = document.createElement("script");
  6344. script1.type = "text/javascript";
  6345. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6346. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6347. const script2 = document.createElement("script");
  6348. script2.type = "text/javascript";
  6349. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6350. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6351. const script3 = document.createElement("script");
  6352. script3.type = "text/javascript";
  6353. script3.charset = "UTF-8";
  6354. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6355. const script4 = document.createElement("script");
  6356. script4.type = "text/javascript";
  6357. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6358. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6359. if (_iframe) {
  6360. if (str == 'doc') {
  6361. _iframe = _formdiv.querySelector('iframe')
  6362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6363. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6364. _iframe.contentWindow.document.body.appendChild(script1);
  6365. _iframe.contentWindow.document.body.appendChild(script2);
  6366. // _iframe.contentWindow.document.body.appendChild(script3);
  6367. _iframe.contentWindow.document.body.appendChild(script4);
  6368. })
  6369. if (onloadListener) {
  6370. _iframe.contentDocument.location.reload()
  6371. } else {
  6372. _iframe.contentDocument.location.reload()
  6373. }
  6374. } else if (str == 'courseDesign') {
  6375. U.UF.DL.iframeLoad(_iframe, function () {
  6376. // _iframe.contentWindow.U.MD.O.W.load();
  6377. // _iframe.contentWindow.document.body.appendChild(script1);
  6378. _iframe.contentWindow.document.body.appendChild(script2);
  6379. _iframe.contentWindow.document.body.appendChild(script4);
  6380. })
  6381. } else if (str == 'mind') {
  6382. _iframe = _formdiv.querySelector('iframe')
  6383. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6384. //
  6385. _iframe.contentWindow.document.body.appendChild(script1);
  6386. _iframe.contentWindow.document.body.appendChild(script2);
  6387. _iframe.contentWindow.document.body.appendChild(script4);
  6388. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6389. })
  6390. if (onloadListener) {
  6391. _iframe.contentDocument.location.reload()
  6392. } else {
  6393. _iframe.contentDocument.location.reload()
  6394. }
  6395. } else if (str == 'whiteboard') {
  6396. _iframe = _formdiv.querySelector('iframe')
  6397. let onloadListener = _iframe.onload = () => {
  6398. _iframe.contentWindow.document.body.appendChild(script1);
  6399. _iframe.contentWindow.document.body.appendChild(script2);
  6400. _iframe.contentWindow.document.body.appendChild(script4);
  6401. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6402. };
  6403. if (onloadListener) {
  6404. _iframe.contentDocument.location.reload()
  6405. } else {
  6406. _iframe.contentDocument.location.reload()
  6407. }
  6408. } else {
  6409. _iframe.onload = () => {
  6410. _iframe.contentWindow.document.body.appendChild(script1);
  6411. _iframe.contentWindow.document.body.appendChild(script2);
  6412. // _iframe.contentWindow.document.body.appendChild(script3);
  6413. _iframe.contentWindow.document.body.appendChild(script4);
  6414. };
  6415. }
  6416. _jie.onclick = async () => {
  6417. let text = ''
  6418. if (aTool == 1) {
  6419. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6420. } else if (aTool == 6) {
  6421. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6422. } else if (aTool == 3) {
  6423. text = await U.MD.D.I.getEditorContent(_iframe);
  6424. }
  6425. _loading.style.display = 'flex'
  6426. console.log(_loading);
  6427. var _ajs = _iframe.contentWindow.document.createElement("script");
  6428. _ajs.type = "text/javascript";
  6429. _ajs.innerHTML =
  6430. // 'console.log(' + _loading + ');\n' +
  6431. 'var _js = document.createElement("script");\n' +
  6432. '_js.type="text/javascript";\n' +
  6433. '_js.charset="UTF-8";\n' +
  6434. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6435. "_js.onload = function(){\n" +
  6436. ' var a = document.getElementsByTagName("img")\n' +
  6437. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6438. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6439. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6440. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6441. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6442. "beforeUpload_shishi(file," +
  6443. "'" +
  6444. _userid +
  6445. "'" +
  6446. ", " +
  6447. "'" +
  6448. _cid +
  6449. "'" +
  6450. ", " +
  6451. "'" +
  6452. _stage +
  6453. "'" +
  6454. ", " +
  6455. "'" +
  6456. _task +
  6457. "'" +
  6458. ", " +
  6459. "'" +
  6460. _tool +
  6461. "'" +
  6462. ", " +
  6463. "'" +
  6464. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6465. "'" +
  6466. ", " +
  6467. "'" +
  6468. aTool +
  6469. "'" +
  6470. ", " +
  6471. "`" +
  6472. text +
  6473. "`" +
  6474. ")\n" +
  6475. " });\n" +
  6476. "}\n" +
  6477. "document.head.appendChild(_js);\n";
  6478. _iframe.contentWindow.document.head.appendChild(_ajs);
  6479. }
  6480. }
  6481. }
  6482. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6483. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6484. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6485. _userid = student.userid, //登录用户id
  6486. _username = student.student //用户名字
  6487. let _iframe;
  6488. let _cid = cid,
  6489. _stage = stage,
  6490. _task = task,
  6491. _tool = tool;
  6492. var _jie = $$("div", {
  6493. "style": {
  6494. "position": "absolute",
  6495. "bottom": "50px",
  6496. "right": "50px",
  6497. "zIndex": "9999",
  6498. "backgroundColor": "#2268bc",
  6499. "color": "#fff",
  6500. "padding": "12px 20px",
  6501. "cursor": "pointer",
  6502. "borderRadius": "4px",
  6503. },
  6504. "innerHTML": "提交作业"
  6505. })
  6506. let aTool = ''
  6507. let _loading = document.createElement('div')
  6508. _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;"
  6509. // _loading.id = "";
  6510. let _lchild = document.createElement('div')
  6511. let _limg = document.createElement('img')
  6512. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6513. _limg.style = "width: 26px;margin-right: 10px;"
  6514. _lchild.appendChild(_limg)
  6515. let _lspan = document.createElement('span')
  6516. _lspan.innerHTML = "上传中..."
  6517. _lchild.appendChild(_lspan)
  6518. _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%);"
  6519. _loading.appendChild(_lchild)
  6520. var _box = $$('div', {
  6521. "style": {
  6522. "position": "relative",
  6523. "width": "100%",
  6524. "height": "100%",
  6525. },
  6526. })
  6527. _box.appendChild(_loading)
  6528. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6529. switch (str) {
  6530. case "whiteboard":
  6531. aTool = 1;
  6532. _iframe = $$("iframe", {
  6533. "frameborder": "no",
  6534. "border": "0",
  6535. "scrolling ": "no",
  6536. "style": {
  6537. "cssText": "border:0;width:100%;height:100%"
  6538. },
  6539. "src": "https://iwb.cocorobo.cn/"
  6540. })
  6541. _box.appendChild(_iframe);
  6542. _box.appendChild(_jie);
  6543. _formdiv = new U.UF.UI.form(
  6544. "电子白板-" + _username,
  6545. _box, {
  6546. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6547. "style": {
  6548. "width": "90%",
  6549. "height": "90%",
  6550. "overflow": 'hidden'
  6551. },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, {
  6556. "style": {
  6557. "height": "36px"
  6558. }
  6559. }).form; //创建窗体
  6560. _taskbar = {
  6561. "id": str + _formdiv.id,
  6562. "style": {
  6563. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6564. },
  6565. "name": "电子白板",
  6566. "forms": _formdiv,
  6567. "click": function () {
  6568. U.MD.D.I.openApplication(str, obj, info);
  6569. }
  6570. }
  6571. break;
  6572. case "mind":
  6573. aTool = 3;
  6574. _iframe = $$("iframe", {
  6575. "frameborder": "no",
  6576. "border": "0",
  6577. "scrolling ": "no",
  6578. "style": {
  6579. "cssText": "border:0;width:100%;height:100%"
  6580. },
  6581. "src": "/kityminder-editor/dist/index.html"
  6582. })
  6583. _box.appendChild(_iframe);
  6584. _box.appendChild(_jie);
  6585. _formdiv = new U.UF.UI.form(
  6586. "思维导图-" + _username,
  6587. _box, { //"/jsmind/example/demo.html"
  6588. "id": "mind" + cid + stage + task + tool + _userid,
  6589. "style": {
  6590. "width": "90%",
  6591. "height": "90%",
  6592. "overflow": 'hidden'
  6593. },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, {
  6598. "style": {
  6599. "height": "36px"
  6600. }
  6601. }).form; //创建窗体
  6602. _taskbar = {
  6603. "id": str + _formdiv.id,
  6604. "style": {
  6605. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6606. },
  6607. "name": "思维导图",
  6608. "forms": _formdiv,
  6609. "click": function () {
  6610. U.MD.D.I.openApplication(str, obj, info);
  6611. }
  6612. }
  6613. break;
  6614. case "MindMap":
  6615. aTool = 3;
  6616. _iframe = $$("iframe", {
  6617. "frameborder": "no",
  6618. "border": "0",
  6619. "scrolling ": "no",
  6620. "style": {
  6621. "cssText": "border:0;width:100%;height:100%"
  6622. },
  6623. "src": "//cloud.cocorobo.cn/mind/"
  6624. })
  6625. _box.appendChild(_iframe);
  6626. _box.appendChild(_jie);
  6627. _formdiv = new U.UF.UI.form(
  6628. "思维导图-" + _username,
  6629. _box, { //"/jsmind/example/demo.html"
  6630. "id": "mind" + cid + stage + task + tool + _userid,
  6631. "style": {
  6632. "width": "90%",
  6633. "height": "90%",
  6634. "overflow": 'hidden'
  6635. },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, {
  6640. "style": {
  6641. "height": "36px"
  6642. }
  6643. }).form; //创建窗体
  6644. _taskbar = {
  6645. "id": str + _formdiv.id,
  6646. "style": {
  6647. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6648. },
  6649. "name": "思维导图",
  6650. "forms": _formdiv,
  6651. "click": function () {
  6652. U.MD.D.I.openApplication(str, obj, info);
  6653. }
  6654. }
  6655. break;
  6656. case "doc":
  6657. aTool = 6;
  6658. _iframe = $$("iframe", {
  6659. "frameborder": "no",
  6660. "border": "0",
  6661. "scrolling ": "no",
  6662. "style": {
  6663. "cssText": "border:0;width:100%;height:100%"
  6664. },
  6665. "src": "/Office/Word/WordEditArea.htm"
  6666. })
  6667. _box.appendChild(_iframe);
  6668. _box.appendChild(_jie);
  6669. _formdiv = new U.UF.UI.form(
  6670. "协同文档-" + _username,
  6671. _box, {
  6672. "id": "doc" + cid + stage + task + tool + _userid,
  6673. "style": {
  6674. "width": "90%",
  6675. "height": "90%",
  6676. "overflow": 'hidden'
  6677. },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, {
  6682. "style": {
  6683. "height": "36px"
  6684. }
  6685. }).form; //创建窗体
  6686. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6687. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6688. })
  6689. _taskbar = {
  6690. "id": str + _formdiv.id,
  6691. "style": {
  6692. "backgroundImage": "url(/img/icon/doc.png)"
  6693. },
  6694. "name": "协同文档",
  6695. "forms": _formdiv,
  6696. "click": function () {
  6697. U.MD.D.I.openApplication(str, obj, info);
  6698. }
  6699. }
  6700. break;
  6701. case "mindNetwork": //好友打开
  6702. aTool = 7;
  6703. _iframe = $$("iframe", {
  6704. "webkitallowfullscreen": "",
  6705. "mozallowfullscreen": "",
  6706. "allowfullscreen": "",
  6707. "frameborder": "no",
  6708. "border": "0",
  6709. "scrolling ": "no",
  6710. "style": {
  6711. "cssText": "border:0; width:100%; height:100%;"
  6712. },
  6713. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6714. })
  6715. _box.appendChild(_iframe);
  6716. _box.appendChild(_jie);
  6717. _formdiv = new U.UF.UI.form(
  6718. "思维网格-" + _username,
  6719. _box, {
  6720. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6721. "style": {
  6722. "width": "90%",
  6723. "height": "90%",
  6724. "overflow": 'hidden'
  6725. },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, {
  6730. "style": {
  6731. "height": "36px"
  6732. }
  6733. }).form; //创建窗体
  6734. _taskbar = {
  6735. "id": str + _formdiv.id,
  6736. "style": {
  6737. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6738. },
  6739. "name": "思维网格",
  6740. "forms": _formdiv,
  6741. "click": function () {
  6742. U.MD.D.I.openApplication(str, obj, info);
  6743. }
  6744. }
  6745. break;
  6746. case "courseDesign":
  6747. _iframe = $$("iframe", {
  6748. "webkitallowfullscreen": "",
  6749. "mozallowfullscreen": "",
  6750. "allowfullscreen": "",
  6751. "frameborder": "no",
  6752. "border": "0",
  6753. "scrolling ": "no",
  6754. "style": {
  6755. "cssText": "border:0; width:100%; height:100%;"
  6756. },
  6757. "src": "/course-design-vue"
  6758. })
  6759. _box.appendChild(_iframe);
  6760. _box.appendChild(_jie);
  6761. _formdiv = new U.UF.UI.form(
  6762. "项目设计-" + _username,
  6763. _box, {
  6764. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6765. "style": {
  6766. "width": "90%",
  6767. "height": "90%",
  6768. "overflow": 'hidden'
  6769. },
  6770. "onresize": function () { }
  6771. }, {
  6772. closecallback: function () { }
  6773. }, {
  6774. "style": {
  6775. "height": "36px"
  6776. }
  6777. }).form; //创建窗体
  6778. _taskbar = {
  6779. "id": str + _formdiv.id,
  6780. "style": {
  6781. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6782. },
  6783. "name": "项目设计",
  6784. "forms": _formdiv,
  6785. "click": function () {
  6786. U.MD.D.I.openApplication(str, obj, info);
  6787. }
  6788. }
  6789. break;
  6790. }
  6791. const script1 = document.createElement("script");
  6792. script1.type = "text/javascript";
  6793. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6794. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6795. const script2 = document.createElement("script");
  6796. script2.type = "text/javascript";
  6797. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6798. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6799. const script3 = document.createElement("script");
  6800. script3.type = "text/javascript";
  6801. script3.charset = "UTF-8";
  6802. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6803. const script4 = document.createElement("script");
  6804. script4.type = "text/javascript";
  6805. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6806. script4.src = window.origin + "/js/Common/jietu2E.js";
  6807. if (_iframe) {
  6808. if (str == 'doc') {
  6809. _iframe = _formdiv.querySelector('iframe')
  6810. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6811. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6812. _iframe.contentWindow.document.body.appendChild(script1);
  6813. _iframe.contentWindow.document.body.appendChild(script2);
  6814. // _iframe.contentWindow.document.body.appendChild(script3);
  6815. _iframe.contentWindow.document.body.appendChild(script4);
  6816. })
  6817. if (onloadListener) {
  6818. _iframe.contentDocument.location.reload()
  6819. } else {
  6820. _iframe.contentDocument.location.reload()
  6821. }
  6822. } else if (str == 'courseDesign') {
  6823. U.UF.DL.iframeLoad(_iframe, function () {
  6824. // _iframe.contentWindow.U.MD.O.W.load();
  6825. // _iframe.contentWindow.document.body.appendChild(script1);
  6826. _iframe.contentWindow.document.body.appendChild(script2);
  6827. _iframe.contentWindow.document.body.appendChild(script4);
  6828. })
  6829. } else if (str == 'mind') {
  6830. _iframe = _formdiv.querySelector('iframe')
  6831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6832. //
  6833. _iframe.contentWindow.document.body.appendChild(script1);
  6834. _iframe.contentWindow.document.body.appendChild(script2);
  6835. _iframe.contentWindow.document.body.appendChild(script4);
  6836. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6837. })
  6838. if (onloadListener) {
  6839. _iframe.contentDocument.location.reload()
  6840. } else {
  6841. _iframe.contentDocument.location.reload()
  6842. }
  6843. } else if (str == 'whiteboard') {
  6844. _iframe = _formdiv.querySelector('iframe')
  6845. let onloadListener = _iframe.onload = () => {
  6846. _iframe.contentWindow.document.body.appendChild(script1);
  6847. _iframe.contentWindow.document.body.appendChild(script2);
  6848. _iframe.contentWindow.document.body.appendChild(script4);
  6849. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6850. };
  6851. if (onloadListener) {
  6852. _iframe.contentDocument.location.reload()
  6853. } else {
  6854. _iframe.contentDocument.location.reload()
  6855. }
  6856. } else {
  6857. _iframe.onload = () => {
  6858. _iframe.contentWindow.document.body.appendChild(script1);
  6859. _iframe.contentWindow.document.body.appendChild(script2);
  6860. // _iframe.contentWindow.document.body.appendChild(script3);
  6861. _iframe.contentWindow.document.body.appendChild(script4);
  6862. };
  6863. }
  6864. _jie.onclick = async () => {
  6865. let text = ''
  6866. if (aTool == 1) {
  6867. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6868. } else if (aTool == 6) {
  6869. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6870. } else if (aTool == 3) {
  6871. text = await U.MD.D.I.getEditorContent(_iframe);
  6872. }
  6873. _loading.style.display = 'flex'
  6874. console.log(_loading);
  6875. var _ajs = _iframe.contentWindow.document.createElement("script");
  6876. _ajs.type = "text/javascript";
  6877. _ajs.innerHTML =
  6878. // 'console.log(' + _loading + ');\n' +
  6879. 'var _js = document.createElement("script");\n' +
  6880. '_js.type="text/javascript";\n' +
  6881. '_js.charset="UTF-8";\n' +
  6882. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6883. "_js.onload = function(){\n" +
  6884. ' var a = document.getElementsByTagName("img")\n' +
  6885. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6886. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6887. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6888. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6889. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6890. "beforeUpload_shishi(file," +
  6891. "'" +
  6892. _userid +
  6893. "'" +
  6894. ", " +
  6895. "'" +
  6896. _cid +
  6897. "'" +
  6898. ", " +
  6899. "'" +
  6900. _stage +
  6901. "'" +
  6902. ", " +
  6903. "'" +
  6904. _task +
  6905. "'" +
  6906. ", " +
  6907. "'" +
  6908. _tool +
  6909. "'" +
  6910. ", " +
  6911. "'" +
  6912. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  6913. "'" +
  6914. ", " +
  6915. "'" +
  6916. aTool +
  6917. "'" +
  6918. ", " +
  6919. "`" +
  6920. text +
  6921. "`" +
  6922. ")\n" +
  6923. " });\n" +
  6924. "}\n" +
  6925. "document.head.appendChild(_js);\n";
  6926. _iframe.contentWindow.document.head.appendChild(_ajs);
  6927. }
  6928. }
  6929. }
  6930. U.MD.D.I.getEditorContent = function (iframe) {
  6931. return new Promise((resolve, reject) => {
  6932. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  6933. console.log(content);
  6934. resolve(content)
  6935. });
  6936. });
  6937. }
  6938. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  6939. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  6940. // if (res.value[0].length > 0) {
  6941. // // resolve(res.value[0][0].text);
  6942. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  6943. // $(fileInput).val('');
  6944. // });
  6945. // }
  6946. // }, [], { "type": "GET", "withCredentials": true });
  6947. var xmlhttp;
  6948. var Mac, Sn, DeviceId
  6949. if (window.XMLHttpRequest) {
  6950. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  6951. xmlhttp = new XMLHttpRequest();
  6952. } else {
  6953. // IE6, IE5 浏览器执行代码
  6954. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  6955. }
  6956. xmlhttp.onreadystatechange = function () {
  6957. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  6958. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  6959. // resolve(res.value[0][0].text);
  6960. if (type == '2') {
  6961. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  6962. } else if (type == '3') {
  6963. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  6964. }
  6965. } else {
  6966. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  6967. }
  6968. }
  6969. }
  6970. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  6971. xmlhttp.send();
  6972. }
  6973. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  6974. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6975. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6976. _userinfo = US.userInfo, //登录用户信息
  6977. _userid = US.userInfo.userid //登录用户id
  6978. let _iframe;
  6979. let _cid = cid,
  6980. _stage = stage,
  6981. _task = task,
  6982. _tool = tool;
  6983. var _jie = $$("div", {
  6984. "style": {
  6985. "position": "absolute",
  6986. "bottom": "50px",
  6987. "right": "50px",
  6988. "zIndex": "9999",
  6989. "backgroundColor": "#2268bc",
  6990. "color": "#fff",
  6991. "padding": "12px 20px",
  6992. "cursor": "pointer",
  6993. "borderRadius": "4px",
  6994. },
  6995. "innerHTML": "确认并提交"
  6996. })
  6997. let aTool = ''
  6998. let _loading = document.createElement('div')
  6999. _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;"
  7000. // _loading.id = "";
  7001. let _lchild = document.createElement('div')
  7002. let _limg = document.createElement('img')
  7003. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7004. _limg.style = "width: 26px;margin-right: 10px;"
  7005. _lchild.appendChild(_limg)
  7006. let _lspan = document.createElement('span')
  7007. _lspan.innerHTML = "上传中..."
  7008. _lchild.appendChild(_lspan)
  7009. _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%);"
  7010. _loading.appendChild(_lchild)
  7011. var _box = $$('div', {
  7012. "style": {
  7013. "position": "relative",
  7014. "width": "100%",
  7015. "height": "100%",
  7016. },
  7017. })
  7018. _box.appendChild(_loading)
  7019. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7020. switch (str) {
  7021. case "whiteboard":
  7022. aTool = 1;
  7023. _iframe = $$("iframe", {
  7024. "frameborder": "no",
  7025. "border": "0",
  7026. "scrolling ": "no",
  7027. "style": {
  7028. "cssText": "border:0;width:100%;height:100%"
  7029. },
  7030. "src": "https://iwb.cocorobo.cn/"
  7031. })
  7032. _box.appendChild(_iframe);
  7033. _box.appendChild(_jie);
  7034. _formdiv = new U.UF.UI.form(
  7035. "电子白板",
  7036. _box, {
  7037. "id": "whiteboards" + cid + stage + task + tool,
  7038. "style": {
  7039. "width": "90%",
  7040. "height": "90%",
  7041. "overflow": 'hidden'
  7042. },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, {
  7047. "style": {
  7048. "height": "36px"
  7049. }
  7050. }).form; //创建窗体
  7051. _taskbar = {
  7052. "id": str + _formdiv.id,
  7053. "style": {
  7054. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7055. },
  7056. "name": "电子白板",
  7057. "forms": _formdiv,
  7058. "click": function () {
  7059. U.MD.D.I.openApplication(str, obj, info);
  7060. }
  7061. }
  7062. break;
  7063. case "mind":
  7064. aTool = 3;
  7065. _iframe = $$("iframe", {
  7066. "frameborder": "no",
  7067. "border": "0",
  7068. "scrolling ": "no",
  7069. "style": {
  7070. "cssText": "border:0;width:100%;height:100%"
  7071. },
  7072. "src": "/kityminder-editor/dist/index.html"
  7073. });
  7074. _box.appendChild(_iframe);
  7075. _box.appendChild(_jie);
  7076. _formdiv = new U.UF.UI.form(
  7077. "思维导图",
  7078. _box, { //"/jsmind/example/demo.html"
  7079. "id": "minds" + cid + stage + task + tool,
  7080. "style": {
  7081. "width": "90%",
  7082. "height": "90%",
  7083. "overflow": 'hidden'
  7084. },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, {
  7089. "style": {
  7090. "height": "36px"
  7091. }
  7092. }).form; //创建窗体
  7093. _taskbar = {
  7094. "id": str + _formdiv.id,
  7095. "style": {
  7096. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7097. },
  7098. "name": "思维导图",
  7099. "forms": _formdiv,
  7100. "click": function () {
  7101. U.MD.D.I.openApplication(str, obj, info);
  7102. }
  7103. }
  7104. break;
  7105. case "doc":
  7106. aTool = 6;
  7107. _iframe = $$("iframe", {
  7108. "frameborder": "no",
  7109. "border": "0",
  7110. "scrolling ": "no",
  7111. "style": {
  7112. "cssText": "border:0;width:100%;height:100%"
  7113. },
  7114. "src": "/Office/Word/WordEditArea.htm"
  7115. })
  7116. _box.appendChild(_iframe);
  7117. _box.appendChild(_jie);
  7118. _formdiv = new U.UF.UI.form(
  7119. "协同文档",
  7120. _box, {
  7121. "id": "docs" + cid + stage + task + tool,
  7122. "style": {
  7123. "width": "90%",
  7124. "height": "90%",
  7125. "overflow": 'hidden'
  7126. },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, {
  7131. "style": {
  7132. "height": "36px"
  7133. }
  7134. }).form; //创建窗体
  7135. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7136. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7137. })
  7138. _taskbar = {
  7139. "id": str + _formdiv.id,
  7140. "style": {
  7141. "backgroundImage": "url(/img/icon/doc.png)"
  7142. },
  7143. "name": "协同文档",
  7144. "forms": _formdiv,
  7145. "click": function () {
  7146. U.MD.D.I.openApplication(str, obj, info);
  7147. }
  7148. }
  7149. break;
  7150. }
  7151. const script1 = document.createElement("script");
  7152. script1.type = "text/javascript";
  7153. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7154. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7155. const script2 = document.createElement("script");
  7156. script2.type = "text/javascript";
  7157. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7158. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7159. const script3 = document.createElement("script");
  7160. script3.type = "text/javascript";
  7161. script3.charset = "UTF-8";
  7162. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7163. const script4 = document.createElement("script");
  7164. script4.type = "text/javascript";
  7165. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7166. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7167. if (_iframe) {
  7168. if (str == 'doc') {
  7169. _iframe = _formdiv.querySelector('iframe')
  7170. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7171. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7172. _iframe.contentWindow.document.body.appendChild(script1);
  7173. _iframe.contentWindow.document.body.appendChild(script2);
  7174. // _iframe.contentWindow.document.body.appendChild(script3);
  7175. _iframe.contentWindow.document.body.appendChild(script4);
  7176. })
  7177. if (onloadListener) {
  7178. _iframe.contentDocument.location.reload()
  7179. } else {
  7180. _iframe.contentDocument.location.reload()
  7181. }
  7182. } else if (str == 'mind') {
  7183. _iframe = _formdiv.querySelector('iframe')
  7184. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7185. _iframe.contentWindow.document.body.appendChild(script1);
  7186. _iframe.contentWindow.document.body.appendChild(script2);
  7187. _iframe.contentWindow.document.body.appendChild(script4);
  7188. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7189. })
  7190. if (onloadListener) {
  7191. _iframe.contentDocument.location.reload()
  7192. } else {
  7193. _iframe.contentDocument.location.reload()
  7194. }
  7195. } else {
  7196. _iframe.onload = () => {
  7197. _iframe.contentWindow.document.body.appendChild(script1);
  7198. _iframe.contentWindow.document.body.appendChild(script2);
  7199. // _iframe.contentWindow.document.body.appendChild(script3);
  7200. _iframe.contentWindow.document.body.appendChild(script4);
  7201. };
  7202. }
  7203. _jie.onclick = async () => {
  7204. let text = ''
  7205. if (aTool == 6) {
  7206. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7207. } else if (aTool == 3) {
  7208. text = await U.MD.D.I.getEditorContent(_iframe);
  7209. }
  7210. _loading.style.display = 'flex'
  7211. console.log(_loading);
  7212. var _ajs = _iframe.contentWindow.document.createElement("script");
  7213. _ajs.type = "text/javascript";
  7214. _ajs.innerHTML =
  7215. // 'console.log(' + _loading + ');\n' +
  7216. 'var _js = document.createElement("script");\n' +
  7217. '_js.type="text/javascript";\n' +
  7218. '_js.charset="UTF-8";\n' +
  7219. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7220. "_js.onload = function(){\n" +
  7221. ' var a = document.getElementsByTagName("img")\n' +
  7222. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7223. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7224. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7225. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7226. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7227. "beforeUpload_shishi(file," +
  7228. "'" +
  7229. _userid +
  7230. "'" +
  7231. ", " +
  7232. "'" +
  7233. _cid +
  7234. "'" +
  7235. ", " +
  7236. "'" +
  7237. _stage +
  7238. "'" +
  7239. ", " +
  7240. "'" +
  7241. _task +
  7242. "'" +
  7243. ", " +
  7244. "'" +
  7245. _tool +
  7246. "'" +
  7247. ", " +
  7248. "'" +
  7249. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7250. "'" +
  7251. ", " +
  7252. "'" +
  7253. aTool +
  7254. "'" +
  7255. ", " +
  7256. "`" +
  7257. text +
  7258. "`" +
  7259. ")\n" +
  7260. " });\n" +
  7261. "}\n" +
  7262. "document.head.appendChild(_js);\n";
  7263. _iframe.contentWindow.document.head.appendChild(_ajs);
  7264. }
  7265. }
  7266. //U.MD.D.I.openClick(str);
  7267. //如果有任务栏信息
  7268. // if (_taskbar) {
  7269. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7270. // }
  7271. }
  7272. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7273. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7274. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7275. _userinfo = US.userInfo, //登录用户信息
  7276. _userid = US.userInfo.userid //登录用户id
  7277. let _iframe;
  7278. let _cid = cid,
  7279. _stage = stage,
  7280. _task = task,
  7281. _tool = tool;
  7282. var _jie = $$("div", {
  7283. "style": {
  7284. "position": "absolute",
  7285. "bottom": "50px",
  7286. "right": "50px",
  7287. "zIndex": "9999",
  7288. "backgroundColor": "#2268bc",
  7289. "color": "#fff",
  7290. "padding": "12px 20px",
  7291. "cursor": "pointer",
  7292. "borderRadius": "4px",
  7293. },
  7294. "innerHTML": "确认并提交"
  7295. })
  7296. let aTool = ''
  7297. let _loading = document.createElement('div')
  7298. _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;"
  7299. // _loading.id = "";
  7300. let _lchild = document.createElement('div')
  7301. let _limg = document.createElement('img')
  7302. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7303. _limg.style = "width: 26px;margin-right: 10px;"
  7304. _lchild.appendChild(_limg)
  7305. let _lspan = document.createElement('span')
  7306. _lspan.innerHTML = "上传中..."
  7307. _lchild.appendChild(_lspan)
  7308. _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%);"
  7309. _loading.appendChild(_lchild)
  7310. var _box = $$('div', {
  7311. "style": {
  7312. "position": "relative",
  7313. "width": "100%",
  7314. "height": "100%",
  7315. },
  7316. })
  7317. _box.appendChild(_loading)
  7318. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7319. switch (str) {
  7320. case "whiteboard":
  7321. aTool = 1;
  7322. _iframe = $$("iframe", {
  7323. "frameborder": "no",
  7324. "border": "0",
  7325. "scrolling ": "no",
  7326. "style": {
  7327. "cssText": "border:0;width:100%;height:100%"
  7328. },
  7329. "src": "https://iwb.cocorobo.cn/"
  7330. })
  7331. _box.appendChild(_iframe);
  7332. _box.appendChild(_jie);
  7333. _formdiv = new U.UF.UI.form(
  7334. "电子白板",
  7335. _box, {
  7336. "id": "whiteboards" + cid + stage + task + tool,
  7337. "style": {
  7338. "width": "90%",
  7339. "height": "90%",
  7340. "overflow": 'hidden'
  7341. },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, {
  7346. "style": {
  7347. "height": "36px"
  7348. }
  7349. }).form; //创建窗体
  7350. _taskbar = {
  7351. "id": str + _formdiv.id,
  7352. "style": {
  7353. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7354. },
  7355. "name": "电子白板",
  7356. "forms": _formdiv,
  7357. "click": function () {
  7358. U.MD.D.I.openApplication(str, obj, info);
  7359. }
  7360. }
  7361. break;
  7362. case "mind":
  7363. aTool = 3;
  7364. _iframe = $$("iframe", {
  7365. "frameborder": "no",
  7366. "border": "0",
  7367. "scrolling ": "no",
  7368. "style": {
  7369. "cssText": "border:0;width:100%;height:100%"
  7370. },
  7371. "src": "/kityminder-editor/dist/index.html"
  7372. });
  7373. _box.appendChild(_iframe);
  7374. _box.appendChild(_jie);
  7375. _formdiv = new U.UF.UI.form(
  7376. "思维导图",
  7377. _box, { //"/jsmind/example/demo.html"
  7378. "id": "minds" + cid + stage + task + tool,
  7379. "style": {
  7380. "width": "90%",
  7381. "height": "90%",
  7382. "overflow": 'hidden'
  7383. },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, {
  7388. "style": {
  7389. "height": "36px"
  7390. }
  7391. }).form; //创建窗体
  7392. _taskbar = {
  7393. "id": str + _formdiv.id,
  7394. "style": {
  7395. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7396. },
  7397. "name": "思维导图",
  7398. "forms": _formdiv,
  7399. "click": function () {
  7400. U.MD.D.I.openApplication(str, obj, info);
  7401. }
  7402. }
  7403. break;
  7404. case "doc":
  7405. aTool = 6;
  7406. _iframe = $$("iframe", {
  7407. "frameborder": "no",
  7408. "border": "0",
  7409. "scrolling ": "no",
  7410. "style": {
  7411. "cssText": "border:0;width:100%;height:100%"
  7412. },
  7413. "src": "/Office/Word/WordEditArea.htm"
  7414. })
  7415. _box.appendChild(_iframe);
  7416. _box.appendChild(_jie);
  7417. _formdiv = new U.UF.UI.form(
  7418. "协同文档",
  7419. _box, {
  7420. "id": "docs" + cid + stage + task + tool,
  7421. "style": {
  7422. "width": "90%",
  7423. "height": "90%",
  7424. "overflow": 'hidden'
  7425. },
  7426. "onresize": function () { }
  7427. }, {
  7428. closecallback: function () { }
  7429. }, {
  7430. "style": {
  7431. "height": "36px"
  7432. }
  7433. }).form; //创建窗体
  7434. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7435. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7436. })
  7437. _taskbar = {
  7438. "id": str + _formdiv.id,
  7439. "style": {
  7440. "backgroundImage": "url(/img/icon/doc.png)"
  7441. },
  7442. "name": "协同文档",
  7443. "forms": _formdiv,
  7444. "click": function () {
  7445. U.MD.D.I.openApplication(str, obj, info);
  7446. }
  7447. }
  7448. break;
  7449. }
  7450. const script1 = document.createElement("script");
  7451. script1.type = "text/javascript";
  7452. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7453. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7454. const script2 = document.createElement("script");
  7455. script2.type = "text/javascript";
  7456. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7457. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7458. const script3 = document.createElement("script");
  7459. script3.type = "text/javascript";
  7460. script3.charset = "UTF-8";
  7461. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7462. const script4 = document.createElement("script");
  7463. script4.type = "text/javascript";
  7464. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7465. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7466. if (_iframe) {
  7467. if (str == 'doc') {
  7468. _iframe = _formdiv.querySelector('iframe')
  7469. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7470. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7471. _iframe.contentWindow.document.body.appendChild(script1);
  7472. _iframe.contentWindow.document.body.appendChild(script2);
  7473. // _iframe.contentWindow.document.body.appendChild(script3);
  7474. _iframe.contentWindow.document.body.appendChild(script4);
  7475. })
  7476. if (onloadListener) {
  7477. _iframe.contentDocument.location.reload()
  7478. } else {
  7479. _iframe.contentDocument.location.reload()
  7480. }
  7481. } else if (str == 'mind') {
  7482. _iframe = _formdiv.querySelector('iframe')
  7483. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7484. _iframe.contentWindow.document.body.appendChild(script1);
  7485. _iframe.contentWindow.document.body.appendChild(script2);
  7486. _iframe.contentWindow.document.body.appendChild(script4);
  7487. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7488. })
  7489. if (onloadListener) {
  7490. _iframe.contentDocument.location.reload()
  7491. } else {
  7492. _iframe.contentDocument.location.reload()
  7493. }
  7494. } else {
  7495. _iframe.onload = () => {
  7496. _iframe.contentWindow.document.body.appendChild(script1);
  7497. _iframe.contentWindow.document.body.appendChild(script2);
  7498. // _iframe.contentWindow.document.body.appendChild(script3);
  7499. _iframe.contentWindow.document.body.appendChild(script4);
  7500. };
  7501. }
  7502. _jie.onclick = async () => {
  7503. let text = ''
  7504. if (aTool == 6) {
  7505. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7506. } else if (aTool == 3) {
  7507. text = await U.MD.D.I.getEditorContent(_iframe);
  7508. }
  7509. _loading.style.display = 'flex'
  7510. console.log(_loading);
  7511. var _ajs = _iframe.contentWindow.document.createElement("script");
  7512. _ajs.type = "text/javascript";
  7513. _ajs.innerHTML =
  7514. // 'console.log(' + _loading + ');\n' +
  7515. 'var _js = document.createElement("script");\n' +
  7516. '_js.type="text/javascript";\n' +
  7517. '_js.charset="UTF-8";\n' +
  7518. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7519. "_js.onload = function(){\n" +
  7520. ' var a = document.getElementsByTagName("img")\n' +
  7521. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7522. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7523. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7524. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7525. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7526. "beforeUpload_shishi(file," +
  7527. "'" +
  7528. _userid +
  7529. "'" +
  7530. ", " +
  7531. "'" +
  7532. _cid +
  7533. "'" +
  7534. ", " +
  7535. "'" +
  7536. _stage +
  7537. "'" +
  7538. ", " +
  7539. "'" +
  7540. _task +
  7541. "'" +
  7542. ", " +
  7543. "'" +
  7544. _tool +
  7545. "'" +
  7546. ", " +
  7547. "'" +
  7548. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7549. "'" +
  7550. ", " +
  7551. "'" +
  7552. aTool +
  7553. "'" +
  7554. ", " +
  7555. "`" +
  7556. text +
  7557. "`" +
  7558. ")\n" +
  7559. " });\n" +
  7560. "}\n" +
  7561. "document.head.appendChild(_js);\n";
  7562. _iframe.contentWindow.document.head.appendChild(_ajs);
  7563. }
  7564. }
  7565. //U.MD.D.I.openClick(str);
  7566. //如果有任务栏信息
  7567. // if (_taskbar) {
  7568. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7569. // }
  7570. }
  7571. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7572. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7573. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7574. _userinfo = US.userInfo, //登录用户信息
  7575. _userid = US.userInfo.userid //登录用户id
  7576. let _iframe;
  7577. let _cid = cid,
  7578. _stage = stage,
  7579. _task = task,
  7580. _tool = tool;
  7581. var _jie = $$("div", {
  7582. "style": {
  7583. "position": "absolute",
  7584. "bottom": "50px",
  7585. "right": "50px",
  7586. "zIndex": "9999",
  7587. "backgroundColor": "#2268bc",
  7588. "color": "#fff",
  7589. "padding": "12px 20px",
  7590. "cursor": "pointer",
  7591. "borderRadius": "4px",
  7592. },
  7593. "innerHTML": "上传模板"
  7594. })
  7595. let aTool = ''
  7596. let _loading = document.createElement('div')
  7597. _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;"
  7598. // _loading.id = "";
  7599. let _lchild = document.createElement('div')
  7600. let _limg = document.createElement('img')
  7601. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7602. _limg.style = "width: 26px;margin-right: 10px;"
  7603. _lchild.appendChild(_limg)
  7604. let _lspan = document.createElement('span')
  7605. _lspan.innerHTML = "上传中..."
  7606. _lchild.appendChild(_lspan)
  7607. _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%);"
  7608. _loading.appendChild(_lchild)
  7609. var _box = $$('div', {
  7610. "style": {
  7611. "position": "relative",
  7612. "width": "100%",
  7613. "height": "100%",
  7614. },
  7615. })
  7616. _box.appendChild(_loading)
  7617. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7618. switch (str) {
  7619. case "whiteboard":
  7620. aTool = 1;
  7621. _iframe = $$("iframe", {
  7622. "frameborder": "no",
  7623. "border": "0",
  7624. "scrolling ": "no",
  7625. "style": {
  7626. "cssText": "border:0;width:100%;height:100%"
  7627. },
  7628. "src": "https://iwb.cocorobo.cn/"
  7629. })
  7630. _box.appendChild(_iframe);
  7631. _box.appendChild(_jie);
  7632. _formdiv = new U.UF.UI.form(
  7633. "电子白板",
  7634. _box, {
  7635. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7636. "style": {
  7637. "width": "90%",
  7638. "height": "90%",
  7639. "overflow": 'hidden'
  7640. },
  7641. "onresize": function () { }
  7642. }, {
  7643. closecallback: function () { }
  7644. }, {
  7645. "style": {
  7646. "height": "36px"
  7647. }
  7648. }).form; //创建窗体
  7649. _taskbar = {
  7650. "id": str + _formdiv.id,
  7651. "style": {
  7652. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7653. },
  7654. "name": "电子白板",
  7655. "forms": _formdiv,
  7656. "click": function () {
  7657. U.MD.D.I.openApplication(str, obj, info);
  7658. }
  7659. }
  7660. break;
  7661. case "mind":
  7662. aTool = 3;
  7663. _iframe = $$("iframe", {
  7664. "frameborder": "no",
  7665. "border": "0",
  7666. "scrolling ": "no",
  7667. "style": {
  7668. "cssText": "border:0;width:100%;height:100%"
  7669. },
  7670. "src": "/kityminder-editor/dist/index.html"
  7671. });
  7672. _box.appendChild(_iframe);
  7673. _box.appendChild(_jie);
  7674. _formdiv = new U.UF.UI.form(
  7675. "思维导图",
  7676. _box, { //"/jsmind/example/demo.html"
  7677. "id": "minds_Yu" + cid + stage + task + tool,
  7678. "style": {
  7679. "width": "90%",
  7680. "height": "90%",
  7681. "overflow": 'hidden'
  7682. },
  7683. "onresize": function () { }
  7684. }, {
  7685. closecallback: function () { }
  7686. }, {
  7687. "style": {
  7688. "height": "36px"
  7689. }
  7690. }).form; //创建窗体
  7691. _taskbar = {
  7692. "id": str + _formdiv.id,
  7693. "style": {
  7694. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7695. },
  7696. "name": "思维导图",
  7697. "forms": _formdiv,
  7698. "click": function () {
  7699. U.MD.D.I.openApplication(str, obj, info);
  7700. }
  7701. }
  7702. break;
  7703. case "doc":
  7704. aTool = 6;
  7705. _iframe = $$("iframe", {
  7706. "frameborder": "no",
  7707. "border": "0",
  7708. "scrolling ": "no",
  7709. "style": {
  7710. "cssText": "border:0;width:100%;height:100%"
  7711. },
  7712. "src": "/Office/Word/WordEditArea.htm"
  7713. })
  7714. _box.appendChild(_iframe);
  7715. _box.appendChild(_jie);
  7716. _formdiv = new U.UF.UI.form(
  7717. "协同文档",
  7718. _box, {
  7719. "id": "docs_Yu" + cid + stage + task + tool,
  7720. "style": {
  7721. "width": "90%",
  7722. "height": "90%",
  7723. "overflow": 'hidden'
  7724. },
  7725. "onresize": function () { }
  7726. }, {
  7727. closecallback: function () { }
  7728. }, {
  7729. "style": {
  7730. "height": "36px"
  7731. }
  7732. }).form; //创建窗体
  7733. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7734. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7735. })
  7736. _taskbar = {
  7737. "id": str + _formdiv.id,
  7738. "style": {
  7739. "backgroundImage": "url(/img/icon/doc.png)"
  7740. },
  7741. "name": "协同文档",
  7742. "forms": _formdiv,
  7743. "click": function () {
  7744. U.MD.D.I.openApplication(str, obj, info);
  7745. }
  7746. }
  7747. break;
  7748. case "CocoPi":
  7749. aTool = 57;
  7750. _iframe = $$("iframe", {
  7751. "allowpaymentrequest": "allowpaymentrequest",
  7752. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  7753. "webkitallowfullscreen": "",
  7754. "mozallowfullscreen": "",
  7755. "frameborder": "no",
  7756. "border": "0",
  7757. "scrolling ": "no",
  7758. "style": {
  7759. "cssText": "border:0;width:100%;height:100%"
  7760. },
  7761. "src": "https://pi.cocorobo.cn/"
  7762. })
  7763. _box.appendChild(_iframe);
  7764. _box.appendChild(_jie);
  7765. _formdiv = new U.UF.UI.form(
  7766. "CocoPi",
  7767. _box, {
  7768. "id": "CocoPi_Yu" + cid + stage + task + tool,
  7769. "style": {
  7770. "width": "90%",
  7771. "height": "90%",
  7772. "overflow": 'hidden'
  7773. },
  7774. "onresize": function () { }
  7775. }, {
  7776. closecallback: function () { }
  7777. }, {
  7778. "style": {
  7779. "height": "36px"
  7780. }
  7781. }).form; //创建窗体
  7782. _taskbar = {
  7783. "id": str + _formdiv.id,
  7784. "style": {
  7785. "backgroundImage": "url(/img/icon/cocopi.png)"
  7786. },
  7787. "name": "CocoPi",
  7788. "forms": _formdiv,
  7789. "click": function () {
  7790. U.MD.D.I.openApplication(str, obj, info);
  7791. }
  7792. }
  7793. break;
  7794. }
  7795. if (_iframe) {
  7796. if (str == 'doc') {
  7797. _iframe = _formdiv.querySelector('iframe')
  7798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7799. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7800. })
  7801. if (onloadListener) {
  7802. _iframe.contentDocument.location.reload()
  7803. } else {
  7804. _iframe.contentDocument.location.reload()
  7805. }
  7806. } else if (str == 'mind') {
  7807. _iframe = _formdiv.querySelector('iframe')
  7808. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7809. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  7810. })
  7811. if (onloadListener) {
  7812. _iframe.contentDocument.location.reload()
  7813. } else {
  7814. _iframe.contentDocument.location.reload()
  7815. }
  7816. } else if (str == 'whiteboard') {
  7817. _iframe = _formdiv.querySelector('iframe')
  7818. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7819. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  7820. })
  7821. if (onloadListener) {
  7822. _iframe.contentDocument.location.reload()
  7823. } else {
  7824. _iframe.contentDocument.location.reload()
  7825. }
  7826. } else if (str == 'CocoPi') {
  7827. _iframe = _formdiv.querySelector('iframe')
  7828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7829. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  7830. })
  7831. if (onloadListener) {
  7832. _iframe.contentDocument.location.reload()
  7833. } else {
  7834. _iframe.contentDocument.location.reload()
  7835. }
  7836. } else {
  7837. _iframe.onload = () => { };
  7838. }
  7839. _jie.onclick = async () => {
  7840. let text = ''
  7841. let type = '2'
  7842. if (aTool == 1) {
  7843. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7844. type = '3'
  7845. } else if (aTool == 6) {
  7846. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7847. type = '1'
  7848. } else if (aTool == 3) {
  7849. text = await U.MD.D.I.getEditorContent(_iframe);
  7850. type = '2'
  7851. } else if (aTool == 57) {
  7852. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  7853. type = '4'
  7854. }
  7855. _loading.style.display = 'flex'
  7856. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  7857. }
  7858. }
  7859. //U.MD.D.I.openClick(str);
  7860. //如果有任务栏信息
  7861. // if (_taskbar) {
  7862. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7863. // }
  7864. }
  7865. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  7866. var xmlhttp;
  7867. var Mac, Sn, DeviceId
  7868. if (window.XMLHttpRequest) {
  7869. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7870. xmlhttp = new XMLHttpRequest();
  7871. } else {
  7872. // IE6, IE5 浏览器执行代码
  7873. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7874. }
  7875. xmlhttp.onreadystatechange = function () {
  7876. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7877. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7878. // resolve(res.value[0][0].text);
  7879. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7880. }
  7881. }
  7882. }
  7883. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7884. xmlhttp.send();
  7885. }
  7886. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  7887. var xmlhttp;
  7888. var Mac, Sn, DeviceId
  7889. if (window.XMLHttpRequest) {
  7890. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7891. xmlhttp = new XMLHttpRequest();
  7892. } else {
  7893. // IE6, IE5 浏览器执行代码
  7894. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7895. }
  7896. xmlhttp.onreadystatechange = function () {
  7897. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7898. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7899. // resolve(res.value[0][0].text);
  7900. if (type == '2') {
  7901. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7902. } else if (type == '3') {
  7903. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7904. } else if (type == '4') {
  7905. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  7906. }
  7907. } else {
  7908. if (type == '2') {
  7909. iframe.contentWindow.editor.minder.importData('json', '')
  7910. } else if (type == '3') {
  7911. iframe.contentWindow.h.app.updateScene({ elements: [] })
  7912. } else if (type == '4') {
  7913. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  7914. }
  7915. }
  7916. }
  7917. }
  7918. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7919. xmlhttp.send();
  7920. }
  7921. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  7922. var xmlhttp;
  7923. var Mac, Sn, DeviceId
  7924. if (window.XMLHttpRequest) {
  7925. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7926. xmlhttp = new XMLHttpRequest();
  7927. } else {
  7928. // IE6, IE5 浏览器执行代码
  7929. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7930. }
  7931. xmlhttp.onreadystatechange = function () {
  7932. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7933. if (xmlhttp.response) {
  7934. // resolve(res.value[0][0].text);
  7935. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  7936. // $(fileInput).val('');
  7937. // });
  7938. span.innerHTML = '上传成功'
  7939. setTimeout(() => {
  7940. loading.style.display = 'none'
  7941. }, 1000);
  7942. }
  7943. }
  7944. }
  7945. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  7946. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  7947. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  7948. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  7949. // 设置请求头,表示请求体的编码格式
  7950. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  7951. // 设置请求体,使用url-encoded格式的数据
  7952. }
  7953. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  7954. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7955. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7956. _userinfo = US.userInfo, //登录用户信息
  7957. _userid = US.userInfo.userid //登录用户id
  7958. let _iframe;
  7959. let _cid = cid,
  7960. _stage = stage,
  7961. _task = task,
  7962. _tool = tool;
  7963. var _jie = $$("div", {
  7964. "style": {
  7965. "position": "absolute",
  7966. "bottom": "50px",
  7967. "right": "50px",
  7968. "zIndex": "9999",
  7969. "backgroundColor": "#2268bc",
  7970. "color": "#fff",
  7971. "padding": "12px 20px",
  7972. "cursor": "pointer",
  7973. "borderRadius": "4px",
  7974. },
  7975. "innerHTML": "提交作业"
  7976. })
  7977. let aTool = ''
  7978. let _loading = document.createElement('div')
  7979. _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;"
  7980. // _loading.id = "";
  7981. let _lchild = document.createElement('div')
  7982. let _limg = document.createElement('img')
  7983. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7984. _limg.style = "width: 26px;margin-right: 10px;"
  7985. _lchild.appendChild(_limg)
  7986. let _lspan = document.createElement('span')
  7987. _lspan.innerHTML = "上传中..."
  7988. _lchild.appendChild(_lspan)
  7989. _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%);"
  7990. _loading.appendChild(_lchild)
  7991. var _box = $$('div', {
  7992. "style": {
  7993. "position": "relative",
  7994. "width": "100%",
  7995. "height": "100%",
  7996. },
  7997. })
  7998. _box.appendChild(_loading)
  7999. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8000. switch (str) {
  8001. case "CocoPi":
  8002. aTool = 57;
  8003. _iframe = $$("iframe", {
  8004. "allowpaymentrequest": "allowpaymentrequest",
  8005. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8006. "webkitallowfullscreen": "",
  8007. "mozallowfullscreen": "",
  8008. "frameborder": "no",
  8009. "border": "0",
  8010. "scrolling ": "no",
  8011. "style": {
  8012. "cssText": "border:0;width:100%;height:100%"
  8013. },
  8014. "src": "https://pi.cocorobo.cn/"
  8015. })
  8016. _box.appendChild(_iframe);
  8017. _box.appendChild(_jie);
  8018. _formdiv = new U.UF.UI.form(
  8019. "CocoPi",
  8020. _box, {
  8021. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8022. "style": {
  8023. "width": "90%",
  8024. "height": "90%",
  8025. "overflow": 'hidden'
  8026. },
  8027. "onresize": function () { }
  8028. }, {
  8029. closecallback: function () { }
  8030. }, {
  8031. "style": {
  8032. "height": "36px"
  8033. }
  8034. }).form; //创建窗体
  8035. _taskbar = {
  8036. "id": str + _formdiv.id,
  8037. "style": {
  8038. "backgroundImage": "url(/img/icon/cocopi.png)"
  8039. },
  8040. "name": "CocoPi",
  8041. "forms": _formdiv,
  8042. "click": function () {
  8043. U.MD.D.I.openApplication(str, obj, info);
  8044. }
  8045. }
  8046. break;
  8047. }
  8048. if (_iframe) {
  8049. if (str == 'CocoPi') {
  8050. _iframe = _formdiv.querySelector('iframe')
  8051. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8052. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8053. })
  8054. if (onloadListener) {
  8055. _iframe.contentDocument.location.reload()
  8056. } else {
  8057. _iframe.contentDocument.location.reload()
  8058. }
  8059. }
  8060. _jie.onclick = async () => {
  8061. let text = ''
  8062. if (aTool == 57) {
  8063. text = _iframe.contentWindow.getLoadXmlStr()
  8064. }
  8065. _loading.style.display = 'flex'
  8066. console.log(_loading);
  8067. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8068. _loading.style.display = 'none'
  8069. let _div = document.createElement('div')
  8070. _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;"
  8071. let _inner = document.createElement('div')
  8072. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8073. _inner.innerHTML = "上传成功"
  8074. _div.appendChild(_inner)
  8075. _iframe.contentWindow.window.document.body.appendChild(_div)
  8076. _div.onclick = () => {
  8077. _iframe.contentWindow.window.document.body.removeChild(_div)
  8078. }
  8079. setTimeout(() => {
  8080. _iframe.contentWindow.window.document.body.removeChild(_div)
  8081. }, 1000);
  8082. }, [], { "type": "POST", "withCredentials": true });
  8083. }
  8084. }
  8085. }
  8086. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8087. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8088. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8089. _userid = student.userid, //登录用户id
  8090. _username = student.student //用户名字
  8091. let _iframe;
  8092. let _cid = cid,
  8093. _stage = stage,
  8094. _task = task,
  8095. _tool = tool;
  8096. var _jie = $$("div", {
  8097. "style": {
  8098. "position": "absolute",
  8099. "bottom": "50px",
  8100. "right": "50px",
  8101. "zIndex": "9999",
  8102. "backgroundColor": "#2268bc",
  8103. "color": "#fff",
  8104. "padding": "12px 20px",
  8105. "cursor": "pointer",
  8106. "borderRadius": "4px",
  8107. },
  8108. "innerHTML": "提交作业"
  8109. })
  8110. let aTool = ''
  8111. let _loading = document.createElement('div')
  8112. _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;"
  8113. // _loading.id = "";
  8114. let _lchild = document.createElement('div')
  8115. let _limg = document.createElement('img')
  8116. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8117. _limg.style = "width: 26px;margin-right: 10px;"
  8118. _lchild.appendChild(_limg)
  8119. let _lspan = document.createElement('span')
  8120. _lspan.innerHTML = "上传中..."
  8121. _lchild.appendChild(_lspan)
  8122. _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%);"
  8123. _loading.appendChild(_lchild)
  8124. var _box = $$('div', {
  8125. "style": {
  8126. "position": "relative",
  8127. "width": "100%",
  8128. "height": "100%",
  8129. },
  8130. })
  8131. _box.appendChild(_loading)
  8132. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8133. switch (str) {
  8134. case "CocoPi":
  8135. aTool = 57;
  8136. _iframe = $$("iframe", {
  8137. "allowpaymentrequest": "allowpaymentrequest",
  8138. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8139. "webkitallowfullscreen": "",
  8140. "mozallowfullscreen": "",
  8141. "frameborder": "no",
  8142. "border": "0",
  8143. "scrolling ": "no",
  8144. "style": {
  8145. "cssText": "border:0;width:100%;height:100%"
  8146. },
  8147. "src": "https://pi.cocorobo.cn/"
  8148. })
  8149. _box.appendChild(_iframe);
  8150. _box.appendChild(_jie);
  8151. _formdiv = new U.UF.UI.form(
  8152. "CocoPi-" + _username,
  8153. _box, {
  8154. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8155. "style": {
  8156. "width": "90%",
  8157. "height": "90%",
  8158. "overflow": 'hidden'
  8159. },
  8160. "onresize": function () { }
  8161. }, {
  8162. closecallback: function () { }
  8163. }, {
  8164. "style": {
  8165. "height": "36px"
  8166. }
  8167. }).form; //创建窗体
  8168. _taskbar = {
  8169. "id": str + _formdiv.id,
  8170. "style": {
  8171. "backgroundImage": "url(/img/icon/cocopi.png)"
  8172. },
  8173. "name": "CocoPi",
  8174. "forms": _formdiv,
  8175. "click": function () {
  8176. U.MD.D.I.openApplication(str, obj, info);
  8177. }
  8178. }
  8179. break;
  8180. }
  8181. if (_iframe) {
  8182. if (str == 'CocoPi') {
  8183. _iframe = _formdiv.querySelector('iframe')
  8184. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8185. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8186. })
  8187. if (onloadListener) {
  8188. _iframe.contentDocument.location.reload()
  8189. } else {
  8190. _iframe.contentDocument.location.reload()
  8191. }
  8192. }
  8193. _jie.onclick = async () => {
  8194. let text = ''
  8195. if (aTool == 57) {
  8196. text = _iframe.contentWindow.getLoadXmlStr()
  8197. }
  8198. _loading.style.display = 'flex'
  8199. console.log(_loading);
  8200. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8201. _loading.style.display = 'none'
  8202. let _div = document.createElement('div')
  8203. _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;"
  8204. let _inner = document.createElement('div')
  8205. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8206. _inner.innerHTML = "上传成功"
  8207. _div.appendChild(_inner)
  8208. _iframe.contentWindow.window.document.body.appendChild(_div)
  8209. _div.onclick = () => {
  8210. _iframe.contentWindow.window.document.body.removeChild(_div)
  8211. }
  8212. setTimeout(() => {
  8213. _iframe.contentWindow.window.document.body.removeChild(_div)
  8214. }, 1000);
  8215. }, [], { "type": "POST", "withCredentials": true });
  8216. }
  8217. }
  8218. }
  8219. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8220. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8221. if (res.value[0].length > 0) {
  8222. if (atool == 57) {
  8223. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8224. }
  8225. } else {
  8226. if (atool == 57) {
  8227. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8228. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8229. }
  8230. }
  8231. }, [], { "type": "POST", "withCredentials": true });
  8232. }