DeskTop.js 580 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. ];
  986. //未来教育基地
  987. U.MD.D.I.szjkyAdminDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1000. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1006. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1007. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1009. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1010. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1011. ];
  1012. //未来教育基地
  1013. U.MD.D.I.szjkyStudentDeskIcon = [
  1014. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1015. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. ];
  1019. //成华教育局
  1020. U.MD.D.I.chjyjTeacherDeskIcon = [
  1021. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1022. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1026. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1027. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1028. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1029. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1030. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1031. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1032. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1035. ];
  1036. //成华教育局chjyj
  1037. U.MD.D.I.chjyjAdminDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1043. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1044. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1045. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1046. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1047. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1048. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //成华教育局chjyj
  1055. U.MD.D.I.chjyjStudentDeskIcon = [
  1056. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1060. ];
  1061. //tpc
  1062. U.MD.D.I.tpcStudentDeskIcon = [
  1063. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1067. ];
  1068. //tpc
  1069. U.MD.D.I.tpcTeacherDeskIcon = [
  1070. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1071. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1072. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1073. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1077. ];
  1078. //tpc
  1079. U.MD.D.I.tpcAdminDeskIcon = [
  1080. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1081. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1082. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1085. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1086. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1087. ];
  1088. //THU-IOE
  1089. U.MD.D.I.thuioeTeacherDeskIcon = [
  1090. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1091. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1092. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1093. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1094. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1095. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1096. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1097. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1098. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1099. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1100. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1101. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1102. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1103. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1104. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1105. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1106. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1107. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1108. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1109. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1110. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1111. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1112. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1113. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1114. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1115. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1116. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1117. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1118. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1119. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1120. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1121. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1122. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1123. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. ];
  1130. //THU-IOE
  1131. U.MD.D.I.thuioeStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //jccssyl
  1138. U.MD.D.I.jccssylTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //jccssyl
  1160. U.MD.D.I.jccssylStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //cale
  1167. U.MD.D.I.caleTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1175. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1180. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1181. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1182. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1184. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1186. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1187. ];
  1188. //cale
  1189. U.MD.D.I.caleStudentDeskIcon = [
  1190. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1191. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1192. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1197. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1198. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1204. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1205. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1206. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1207. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1208. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1209. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1210. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1211. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1212. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1213. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1214. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1215. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1216. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1217. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1218. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1219. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1220. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1221. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1222. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1223. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1224. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1225. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1226. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1227. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1228. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1229. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1230. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1233. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1234. ];
  1235. //lqwmsgzs
  1236. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1237. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. ];
  1242. //盐田区幼儿园
  1243. U.MD.D.I.ytyTeacherDeskIcon = [
  1244. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1245. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1246. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1250. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1251. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1256. ];
  1257. //盐田区幼儿园
  1258. U.MD.D.I.ytyStudentDeskIcon = [
  1259. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiAdminDeskIcon = [
  1291. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1292. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1309. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1310. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1312. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1313. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1314. ];
  1315. //scnuai
  1316. U.MD.D.I.scnuaiStudentDeskIcon = [
  1317. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. ];
  1322. //cocobiz
  1323. U.MD.D.I.cocobizteacherDeskIcon = [
  1324. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1325. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1326. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1327. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1328. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1329. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1330. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1331. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1332. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1333. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1334. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1335. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1336. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1337. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1340. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1341. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1342. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1343. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1344. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1345. ];
  1346. //cocobiz
  1347. U.MD.D.I.cocobizStudentDeskIcon = [
  1348. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. ];
  1355. //xxzjky
  1356. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1357. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1358. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1359. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1360. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1361. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1362. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1363. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1364. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1365. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1366. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1367. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1368. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1370. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1371. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1377. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1378. ];
  1379. //xxzjky
  1380. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1381. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //nsfx
  1389. U.MD.D.I.nsfxTeacherDeskIcon = [
  1390. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1392. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1393. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1394. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1395. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1396. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1397. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1398. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1399. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1400. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1403. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1405. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1406. ];
  1407. //nsfx
  1408. U.MD.D.I.nsfxStudentDeskIcon = [
  1409. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. ];
  1414. //#region 桌面初始化a
  1415. /**
  1416. * 初始化桌面的起始函数
  1417. *
  1418. */
  1419. U.MD.D.I.init = function () {
  1420. if ($("#U_MD_D_K")[0]) {
  1421. //初始化桌面图标
  1422. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1423. // var clickUrl = ':12588/requestIp.php';
  1424. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1425. // U.MD.D.I.Ip = data;
  1426. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1427. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1428. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1429. // })
  1430. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1431. // })
  1432. }
  1433. }
  1434. /**
  1435. * 模式切换
  1436. *
  1437. */
  1438. U.MD.D.I.ModeCheck = function (type) {
  1439. if (US.Config.type == type) {
  1440. return
  1441. }
  1442. US.Config.type = type
  1443. $('.U_PBL_Check .active')[0].className = ''
  1444. if (type == 1) {
  1445. $('.U_PBL_Check div')[0].className = 'active'
  1446. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1447. } else {
  1448. $('.U_PBL_Check div')[1].className = 'active'
  1449. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1450. }
  1451. //初始化桌面图标
  1452. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1453. if (type == 2) {
  1454. U.MD.D.I.openApplication("project")
  1455. }
  1456. }
  1457. /**
  1458. * 隐藏任务栏
  1459. *
  1460. * @param {element} 桌面元素
  1461. */
  1462. U.MD.D.I.hiddenTaskbar = function (el) {
  1463. //任务栏位置变小
  1464. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1465. //桌面的位置变大
  1466. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1467. }
  1468. /**
  1469. * 隐藏任务栏
  1470. *
  1471. * @param {element} 桌面元素
  1472. */
  1473. U.MD.D.I.hiddenTaskbarout = function (el) {
  1474. //任务栏位置变小
  1475. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1476. //任务栏位置变化
  1477. U.selectEl(el).css({ "bottom": "-60px" });
  1478. //桌面的位置变大
  1479. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1480. }
  1481. }
  1482. /**
  1483. * 初始化打印桌面图标
  1484. *
  1485. * @param {element} 桌面元素
  1486. */
  1487. U.MD.D.I.initDesktopIcons = function (el, type) {
  1488. var i, //用于循环
  1489. _content, //桌面图标元素
  1490. _iconcontent, //桌面图标元素
  1491. _frag = $$("frag"), //定义一个碎片元素
  1492. _type = US.userInfo.type,
  1493. _org = US.userInfo.org,
  1494. _oid = US.userInfo.organizeid,
  1495. _role = US.userInfo.role,
  1496. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1497. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1498. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1499. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1500. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1501. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1502. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1503. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1504. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1505. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1506. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1507. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1508. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1509. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1510. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1511. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1512. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1513. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1514. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1515. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1516. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1517. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1518. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1519. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1520. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1521. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1522. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1523. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1524. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1525. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1526. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1527. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1528. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1529. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1530. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1531. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1532. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1533. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1534. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1535. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1536. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1537. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1538. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1539. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1540. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1541. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1542. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1543. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1544. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1545. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1546. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1547. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1548. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1549. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1550. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1551. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1552. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1553. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1554. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1555. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1556. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1557. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1558. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1559. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1560. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1561. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1562. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1563. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1564. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1565. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1566. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1567. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1568. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1569. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1570. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1571. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1572. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1573. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1574. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5'];
  1575. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07'];
  1576. //清楚桌面图标
  1577. el.innerHTML = "";
  1578. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1579. _teacherDesktopIconInfo.push(
  1580. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1581. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1582. )
  1583. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1584. }
  1585. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1588. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1589. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1590. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1591. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1592. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1593. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1594. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1595. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1596. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1597. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1598. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1599. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1600. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1601. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1602. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1603. )
  1604. }
  1605. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1606. _teacherDesktopIconInfo.push(
  1607. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1608. )
  1609. }
  1610. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1611. // _teacherDesktopIconInfo.push(
  1612. // )
  1613. // }
  1614. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1615. _teacherDesktopIconInfo.push(
  1616. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. )
  1619. }
  1620. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1621. _teacherDesktopIconInfo.push(
  1622. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1624. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1625. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1626. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1627. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1628. )
  1629. _studentDesktopIconInfo.push(
  1630. )
  1631. }
  1632. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1633. _teacherDesktopIconInfo.push(
  1634. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1635. )
  1636. _studentDesktopIconInfo.push(
  1637. )
  1638. }
  1639. //010606 组织
  1640. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1641. _teacherDesktopIconInfo.push(
  1642. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1643. )
  1644. _studentDesktopIconInfo.push(
  1645. )
  1646. }
  1647. //麒麟二中 和 民新小学
  1648. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1649. _teacherDesktopIconInfo.push(
  1650. )
  1651. }
  1652. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1653. _teacherDesktopIconInfo.push(
  1654. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1655. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1656. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1657. )
  1658. }
  1659. //北师大附中(010601)
  1660. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1661. _teacherDesktopIconInfo.push(
  1662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1663. )
  1664. _studentDesktopIconInfo.push(
  1665. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1666. )
  1667. }
  1668. // Education Artificial Intelligence
  1669. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1670. _teacherDesktopIconInfo.push(
  1671. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1672. )
  1673. }
  1674. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1675. _teacherDesktopIconInfo.push(
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. )
  1678. }
  1679. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1680. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1681. _teacherDesktopIconInfo.push(
  1682. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1683. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1684. )
  1685. }
  1686. //麒麟二中
  1687. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1688. _studentDesktopIconInfo.push(
  1689. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1691. )
  1692. }
  1693. //万科双语
  1694. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1695. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1696. if (el.Name == '项目管理') {
  1697. el.Name = 'PBL项目'
  1698. }
  1699. return el
  1700. })
  1701. _studentDesktopIconInfo3.push(
  1702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. )
  1704. }
  1705. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1706. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1707. return el.Name != '魔盒识字' && el.Name != '24点'
  1708. })
  1709. }
  1710. 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) {
  1711. _studentDesktopIconInfo.push(
  1712. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1713. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1714. )
  1715. }
  1716. //循环创建桌面图标
  1717. if (type == 1) {
  1718. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1719. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1720. _content = $$("div", {
  1721. className: "U_MD_D_KO",
  1722. "onmousedown": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_studentDesktopIconInfo[i]]),
  1726. "onclick": U.UF.C.closure(function (obj) {
  1727. //防止拖动图标即打开了桌面应用
  1728. U.MD.D.click(this, obj);
  1729. }, [_studentDesktopIconInfo[i]])
  1730. }, _frag); //
  1731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1734. }
  1735. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1736. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1737. _content = $$("div", {
  1738. className: "U_MD_D_KO",
  1739. "onmousedown": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1743. "onclick": U.UF.C.closure(function (obj) {
  1744. //防止拖动图标即打开了桌面应用
  1745. U.MD.D.click(this, obj);
  1746. }, [_hkZJLSStudentDeskIconInfo[i]])
  1747. }, _frag); //
  1748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1751. } //
  1752. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1753. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1754. _content = $$("div", {
  1755. className: "U_MD_D_KO",
  1756. "onmousedown": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_ytyStudentDeskIconInfo[i]]),
  1760. "onclick": U.UF.C.closure(function (obj) {
  1761. //防止拖动图标即打开了桌面应用
  1762. U.MD.D.click(this, obj);
  1763. }, [_ytyStudentDeskIconInfo[i]])
  1764. }, _frag); //
  1765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1768. } //
  1769. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1770. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1771. _content = $$("div", {
  1772. className: "U_MD_D_KO",
  1773. "onmousedown": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_jccssylStudentDeskIconInfo[i]]),
  1777. "onclick": U.UF.C.closure(function (obj) {
  1778. //防止拖动图标即打开了桌面应用
  1779. U.MD.D.click(this, obj);
  1780. }, [_jccssylStudentDeskIconInfo[i]])
  1781. }, _frag); //
  1782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1785. }
  1786. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1787. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1788. _content = $$("div", {
  1789. className: "U_MD_D_KO",
  1790. "onmousedown": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_scnuaiStudentDeskIconInfo[i]]),
  1794. "onclick": U.UF.C.closure(function (obj) {
  1795. //防止拖动图标即打开了桌面应用
  1796. U.MD.D.click(this, obj);
  1797. }, [_scnuaiStudentDeskIconInfo[i]])
  1798. }, _frag); //
  1799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1802. }
  1803. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1804. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1805. _content = $$("div", {
  1806. className: "U_MD_D_KO",
  1807. "onmousedown": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_caleStudentDeskIconInfo[i]]),
  1811. "onclick": U.UF.C.closure(function (obj) {
  1812. //防止拖动图标即打开了桌面应用
  1813. U.MD.D.click(this, obj);
  1814. }, [_caleStudentDeskIconInfo[i]])
  1815. }, _frag); //
  1816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1819. }
  1820. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1821. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1822. _content = $$("div", {
  1823. className: "U_MD_D_KO",
  1824. "onmousedown": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_thuioeStudentDeskIconInfo[i]]),
  1828. "onclick": U.UF.C.closure(function (obj) {
  1829. //防止拖动图标即打开了桌面应用
  1830. U.MD.D.click(this, obj);
  1831. }, [_thuioeStudentDeskIconInfo[i]])
  1832. }, _frag); //
  1833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1836. }
  1837. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1838. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1839. _content = $$("div", {
  1840. className: "U_MD_D_KO",
  1841. "onmousedown": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_tpcStudentDeskIconInfo[i]]),
  1845. "onclick": U.UF.C.closure(function (obj) {
  1846. //防止拖动图标即打开了桌面应用
  1847. U.MD.D.click(this, obj);
  1848. }, [_tpcStudentDeskIconInfo[i]])
  1849. }, _frag); //
  1850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1853. } //
  1854. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1855. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1856. _content = $$("div", {
  1857. className: "U_MD_D_KO",
  1858. "onmousedown": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_chjyjStudentDeskIconInfo[i]]),
  1862. "onclick": U.UF.C.closure(function (obj) {
  1863. //防止拖动图标即打开了桌面应用
  1864. U.MD.D.click(this, obj);
  1865. }, [_chjyjStudentDeskIconInfo[i]])
  1866. }, _frag); //
  1867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1870. }
  1871. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1872. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1873. _content = $$("div", {
  1874. className: "U_MD_D_KO",
  1875. "onmousedown": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_szjkyStudentDeskIconInfo[i]]),
  1879. "onclick": U.UF.C.closure(function (obj) {
  1880. //防止拖动图标即打开了桌面应用
  1881. U.MD.D.click(this, obj);
  1882. }, [_szjkyStudentDeskIconInfo[i]])
  1883. }, _frag); //
  1884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1887. }
  1888. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1889. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1890. _content = $$("div", {
  1891. className: "U_MD_D_KO",
  1892. "onmousedown": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_dseiStudentDeskIconInfo[i]]),
  1896. "onclick": U.UF.C.closure(function (obj) {
  1897. //防止拖动图标即打开了桌面应用
  1898. U.MD.D.click(this, obj);
  1899. }, [_dseiStudentDeskIconInfo[i]])
  1900. }, _frag); //
  1901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1904. }
  1905. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1906. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1907. _content = $$("div", {
  1908. className: "U_MD_D_KO",
  1909. "onmousedown": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1913. "onclick": U.UF.C.closure(function (obj) {
  1914. //防止拖动图标即打开了桌面应用
  1915. U.MD.D.click(this, obj);
  1916. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1917. }, _frag); //
  1918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1921. }
  1922. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1923. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1924. _content = $$("div", {
  1925. className: "U_MD_D_KO",
  1926. "onmousedown": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_nsfxStudentDeskIconInfo[i]]),
  1930. "onclick": U.UF.C.closure(function (obj) {
  1931. //防止拖动图标即打开了桌面应用
  1932. U.MD.D.click(this, obj);
  1933. }, [_nsfxStudentDeskIconInfo[i]])
  1934. }, _frag); //
  1935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1938. }
  1939. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1940. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1941. _content = $$("div", {
  1942. className: "U_MD_D_KO",
  1943. "onmousedown": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_siesStudentDeskIconInfo[i]]),
  1947. "onclick": U.UF.C.closure(function (obj) {
  1948. //防止拖动图标即打开了桌面应用
  1949. U.MD.D.click(this, obj);
  1950. }, [_siesStudentDeskIconInfo[i]])
  1951. }, _frag); //
  1952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1955. }
  1956. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1957. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1958. _content = $$("div", {
  1959. className: "U_MD_D_KO",
  1960. "onmousedown": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_guzmsStudentDeskIconInfo[i]]),
  1964. "onclick": U.UF.C.closure(function (obj) {
  1965. //防止拖动图标即打开了桌面应用
  1966. U.MD.D.click(this, obj);
  1967. }, [_guzmsStudentDeskIconInfo[i]])
  1968. }, _frag); //
  1969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1972. }
  1973. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1974. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1975. _content = $$("div", {
  1976. className: "U_MD_D_KO",
  1977. "onmousedown": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_hkStudentDeskIconInfo[i]]),
  1981. "onclick": U.UF.C.closure(function (obj) {
  1982. //防止拖动图标即打开了桌面应用
  1983. U.MD.D.click(this, obj);
  1984. }, [_hkStudentDeskIconInfo[i]])
  1985. }, _frag); //
  1986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1989. }
  1990. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1991. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1992. _content = $$("div", {
  1993. className: "U_MD_D_KO",
  1994. "onmousedown": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_hkaceStudentDeskIconInfo[i]]),
  1998. "onclick": U.UF.C.closure(function (obj) {
  1999. //防止拖动图标即打开了桌面应用
  2000. U.MD.D.click(this, obj);
  2001. }, [_hkaceStudentDeskIconInfo[i]])
  2002. }, _frag); //
  2003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2006. }
  2007. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2008. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2009. _content = $$("div", {
  2010. className: "U_MD_D_KO",
  2011. "onmousedown": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_cocobizStudentDeskIconInfo[i]]),
  2015. "onclick": U.UF.C.closure(function (obj) {
  2016. //防止拖动图标即打开了桌面应用
  2017. U.MD.D.click(this, obj);
  2018. }, [_cocobizStudentDeskIconInfo[i]])
  2019. }, _frag); //
  2020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2023. }
  2024. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2025. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2026. _content = $$("div", {
  2027. className: "U_MD_D_KO",
  2028. "onmousedown": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2032. "onclick": U.UF.C.closure(function (obj) {
  2033. //防止拖动图标即打开了桌面应用
  2034. U.MD.D.click(this, obj);
  2035. }, [_xxzjkyStudentDeskIconInfo[i]])
  2036. }, _frag); //
  2037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2040. }
  2041. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2042. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2043. _content = $$("div", {
  2044. className: "U_MD_D_KO",
  2045. "onmousedown": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_studentDesktopIconInfo[i]]),
  2049. "onclick": U.UF.C.closure(function (obj) {
  2050. //防止拖动图标即打开了桌面应用
  2051. U.MD.D.click(this, obj);
  2052. }, [_studentDesktopIconInfo[i]])
  2053. }, _frag); //
  2054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2057. }
  2058. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2059. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2060. _content = $$("div", {
  2061. className: "U_MD_D_KO",
  2062. "onmousedown": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_tcStudentDeskIconInfo[i]]),
  2066. "onclick": U.UF.C.closure(function (obj) {
  2067. //防止拖动图标即打开了桌面应用
  2068. U.MD.D.click(this, obj);
  2069. }, [_tcStudentDeskIconInfo[i]])
  2070. }, _frag); //
  2071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2074. }
  2075. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2076. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2077. _content = $$("div", {
  2078. className: "U_MD_D_KO",
  2079. "onmousedown": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_szscStudentDeskIconInfo[i]]),
  2083. "onclick": U.UF.C.closure(function (obj) {
  2084. //防止拖动图标即打开了桌面应用
  2085. U.MD.D.click(this, obj);
  2086. }, [_szscStudentDeskIconInfo[i]])
  2087. }, _frag); //
  2088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2091. }
  2092. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2093. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2094. _content = $$("div", {
  2095. className: "U_MD_D_KO",
  2096. "onmousedown": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_studentDesktopIconInfo3[i]]),
  2100. "onclick": U.UF.C.closure(function (obj) {
  2101. //防止拖动图标即打开了桌面应用
  2102. U.MD.D.click(this, obj);
  2103. }, [_studentDesktopIconInfo3[i]])
  2104. }, _frag); //
  2105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2108. }
  2109. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2110. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2111. _content = $$("div", {
  2112. className: "U_MD_D_KO",
  2113. "onmousedown": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_studentDesktopIconInfo2[i]]),
  2117. "onclick": U.UF.C.closure(function (obj) {
  2118. //防止拖动图标即打开了桌面应用
  2119. U.MD.D.click(this, obj);
  2120. }, [_studentDesktopIconInfo2[i]])
  2121. }, _frag); //
  2122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2125. }
  2126. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2127. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2128. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2129. continue
  2130. }
  2131. _content = $$("div", {
  2132. className: "U_MD_D_KO",
  2133. "onmousedown": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_wanketeacherDesktopIconInfo[i]]),
  2137. "onclick": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_wanketeacherDesktopIconInfo[i]])
  2141. }, _frag); //
  2142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2145. }
  2146. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2147. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2148. _content = $$("div", {
  2149. className: "U_MD_D_KO",
  2150. "onmousedown": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_wankeAdminDesktopIconInfo[i]]),
  2154. "onclick": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_wankeAdminDesktopIconInfo[i]])
  2158. }, _frag); //
  2159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2162. }
  2163. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2164. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2165. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2166. continue
  2167. }
  2168. _content = $$("div", {
  2169. className: "U_MD_D_KO",
  2170. "onmousedown": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2174. "onclick": U.UF.C.closure(function (obj) {
  2175. //防止拖动图标即打开了桌面应用
  2176. U.MD.D.click(this, obj);
  2177. }, [_scnuaiTeacherDeskIconInfo[i]])
  2178. }, _frag); //
  2179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2182. }
  2183. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2184. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2185. _content = $$("div", {
  2186. className: "U_MD_D_KO",
  2187. "onmousedown": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_scnuaiAdminDeskIconInfo[i]]),
  2191. "onclick": U.UF.C.closure(function (obj) {
  2192. //防止拖动图标即打开了桌面应用
  2193. U.MD.D.click(this, obj);
  2194. }, [_scnuaiAdminDeskIconInfo[i]])
  2195. }, _frag); //
  2196. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2197. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2198. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2199. }
  2200. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2201. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2202. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2203. continue
  2204. }
  2205. _content = $$("div", {
  2206. className: "U_MD_D_KO",
  2207. "onmousedown": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_jccssylTeacherDeskIconInfo[i]]),
  2211. "onclick": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_jccssylTeacherDeskIconInfo[i]])
  2215. }, _frag); //
  2216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2219. }
  2220. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2221. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2222. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2223. continue
  2224. }
  2225. _content = $$("div", {
  2226. className: "U_MD_D_KO",
  2227. "onmousedown": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_caleTeacherDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_caleTeacherDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2239. }
  2240. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2241. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2242. _content = $$("div", {
  2243. className: "U_MD_D_KO",
  2244. "onmousedown": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_tpcOrganizerDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_tpcOrganizerDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2258. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2259. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2260. continue
  2261. }
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_tpcTeacherDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_tpcTeacherDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2278. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2279. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2280. continue
  2281. }
  2282. _content = $$("div", {
  2283. className: "U_MD_D_KO",
  2284. "onmousedown": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_teacherDesktopIconInfo2[i]]),
  2288. "onclick": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_teacherDesktopIconInfo2[i]])
  2292. }, _frag); //
  2293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2296. }
  2297. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2298. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2299. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2300. continue
  2301. }
  2302. _content = $$("div", {
  2303. className: "U_MD_D_KO",
  2304. "onmousedown": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_thuioeTeacherDeskIconInfo[i]]),
  2308. "onclick": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_thuioeTeacherDeskIconInfo[i]])
  2312. }, _frag); //
  2313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2316. }
  2317. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2318. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2319. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2320. continue
  2321. }
  2322. _content = $$("div", {
  2323. className: "U_MD_D_KO",
  2324. "onmousedown": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_lotechTeacherDeskIconInfo[i]]),
  2328. "onclick": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_lotechTeacherDeskIconInfo[i]])
  2332. }, _frag); //
  2333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2336. }//
  2337. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2338. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2339. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2340. continue
  2341. }
  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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2348. "onclick": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2352. }, _frag); //
  2353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2356. }
  2357. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2358. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2359. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2360. continue
  2361. }
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_siesTeacherDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_siesTeacherDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2378. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2379. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2380. continue
  2381. }
  2382. _content = $$("div", {
  2383. className: "U_MD_D_KO",
  2384. "onmousedown": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_guzmsTeacherDeskIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_guzmsTeacherDeskIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2398. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2399. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2400. continue
  2401. }
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_longhuaTeacherDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_longhuaTeacherDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2418. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2419. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2420. continue
  2421. }
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_ytyTeacherDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_ytyTeacherDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2438. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2439. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2440. continue
  2441. }
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_yunhaiTeacherDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2456. } //_hkStudentDeskIconInfo
  2457. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2458. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2459. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2460. continue
  2461. }
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2478. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2479. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2480. continue
  2481. }
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_hkTeacherDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_hkTeacherDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2498. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2499. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2500. continue
  2501. }
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_hkaceTeacherDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_hkaceTeacherDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2518. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2519. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2520. continue
  2521. }
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_cocobizTeacherDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_cocobizTeacherDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2538. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2539. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2540. continue
  2541. }
  2542. _content = $$("div", {
  2543. className: "U_MD_D_KO",
  2544. "onmousedown": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2548. "onclick": U.UF.C.closure(function (obj) {
  2549. //防止拖动图标即打开了桌面应用
  2550. U.MD.D.click(this, obj);
  2551. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2552. }, _frag); //
  2553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2556. }
  2557. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2558. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2559. _content = $$("div", {
  2560. className: "U_MD_D_KO",
  2561. "onmousedown": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_gdjgAdminDeskIconInfo[i]]),
  2565. "onclick": U.UF.C.closure(function (obj) {
  2566. //防止拖动图标即打开了桌面应用
  2567. U.MD.D.click(this, obj);
  2568. }, [_gdjgAdminDeskIconInfo[i]])
  2569. }, _frag); //
  2570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2573. }
  2574. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2575. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2576. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2577. continue
  2578. }
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_gdjgTeacherDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_gdjgTeacherDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2595. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2596. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2597. continue
  2598. }
  2599. _content = $$("div", {
  2600. className: "U_MD_D_KO",
  2601. "onmousedown": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_szherTeacherDeskIconInfo[i]]),
  2605. "onclick": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_szherTeacherDeskIconInfo[i]])
  2609. }, _frag); //
  2610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2613. }
  2614. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2615. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_heyuannAdminDeskIconInfo[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_heyuannAdminDeskIconInfo[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2630. }
  2631. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2632. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2633. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2634. continue
  2635. }
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_heyuanTeacherDeskIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_heyuanTeacherDeskIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2650. } //
  2651. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2652. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_dseiAdminDeskIconInfo[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_dseiAdminDeskIconInfo[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2667. }
  2668. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2669. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2670. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2671. continue
  2672. }
  2673. _content = $$("div", {
  2674. className: "U_MD_D_KO",
  2675. "onmousedown": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_dseiTeacherDeskIconInfo[i]]),
  2679. "onclick": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_dseiTeacherDeskIconInfo[i]])
  2683. }, _frag); //
  2684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2687. } //
  2688. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2689. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_chjyjAdminDeskIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_chjyjAdminDeskIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2704. }//
  2705. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2706. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2707. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2708. continue
  2709. }
  2710. _content = $$("div", {
  2711. className: "U_MD_D_KO",
  2712. "onmousedown": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_chjyjTeacherDeskIconInfo[i]]),
  2716. "onclick": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_chjyjTeacherDeskIconInfo[i]])
  2720. }, _frag); //
  2721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2724. }
  2725. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2726. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_szjkyAdminDeskIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_szjkyAdminDeskIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2741. }//
  2742. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2743. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2744. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2745. continue
  2746. }
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_szjkyTeacherDeskIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_szjkyTeacherDeskIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2763. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_futianAdminDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_futianAdminDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2780. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2781. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_futianTeacherDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_futianTeacherDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2800. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2801. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2802. continue
  2803. }
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_MingdeTeacherDeskIcon[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_MingdeTeacherDeskIcon[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2818. }
  2819. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2820. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_lhsAdminDesktopIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_lhsAdminDesktopIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2837. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2838. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2839. continue
  2840. }
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_lhsteacherDesktopIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_lhsteacherDesktopIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2857. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2858. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2859. continue
  2860. }
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_zhoujiateacherDesktopIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2877. for (i = 0; i < _hanDeskIcon.length; i++) {
  2878. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2879. continue
  2880. }
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_hanDeskIcon[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hanDeskIcon[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2895. }
  2896. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2897. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2898. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2899. continue
  2900. }
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_orgStemDeskIcon[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_orgStemDeskIcon[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2915. }
  2916. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2917. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2918. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2919. continue
  2920. }
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_szulsDeskIcon[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_szulsDeskIcon[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2937. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2938. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2939. continue
  2940. }
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_orgDesktopIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_orgDesktopIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2957. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2958. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_schoolDesktopIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_schoolDesktopIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2977. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2978. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_GMteacherDesktopIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_GMteacherDesktopIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2997. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2998. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2999. continue
  3000. }
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_SONGteacherDesktopIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_SONGteacherDesktopIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3015. }
  3016. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3017. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_GMstudentDesktopIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_GMstudentDesktopIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3034. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3035. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3036. continue
  3037. }
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_tcTeacherDeskIconInfo[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_tcTeacherDeskIconInfo[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3054. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3055. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_tcOrganizerDeskIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_tcOrganizerDeskIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3074. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3075. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3076. continue
  3077. }
  3078. _content = $$("div", {
  3079. className: "U_MD_D_KO",
  3080. "onmousedown": U.UF.C.closure(function (obj) {
  3081. //防止拖动图标即打开了桌面应用
  3082. U.MD.D.click(this, obj);
  3083. }, [_szscTeacherDeskIconInfo[i]]),
  3084. "onclick": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_szscTeacherDeskIconInfo[i]])
  3088. }, _frag); //
  3089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3092. }
  3093. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3094. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3095. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3096. continue
  3097. }
  3098. _content = $$("div", {
  3099. className: "U_MD_D_KO",
  3100. "onmousedown": U.UF.C.closure(function (obj) {
  3101. //防止拖动图标即打开了桌面应用
  3102. U.MD.D.click(this, obj);
  3103. }, [_szscOrganizerDeskIconInfo[i]]),
  3104. "onclick": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_szscOrganizerDeskIconInfo[i]])
  3108. }, _frag); //
  3109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3112. }
  3113. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3114. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3115. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3116. continue
  3117. }
  3118. _content = $$("div", {
  3119. className: "U_MD_D_KO",
  3120. "onmousedown": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_nsfxTeacherDeskIconInfo[i]]),
  3124. "onclick": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_nsfxTeacherDeskIconInfo[i]])
  3128. }, _frag); //
  3129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3132. }
  3133. } else {
  3134. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3135. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3136. continue
  3137. }
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_teacherDesktopIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_teacherDesktopIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. }
  3154. } else {
  3155. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3156. _content = $$("div", {
  3157. className: "U_MD_D_KO",
  3158. style: { 'width': '124px', 'height': '145px' },
  3159. "onmousedown": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_easyDesktopIconInfo[i]]),
  3163. "onclick": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_easyDesktopIconInfo[i]])
  3167. }, _frag); //
  3168. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3171. }
  3172. }
  3173. if (type == 1) {
  3174. //加载好后给图标定位
  3175. U.MD.D.iconPostion($(_frag).Child());
  3176. } else {
  3177. //加载好后给图标定位
  3178. U.MD.D.iconPostion2($(_frag).Child());
  3179. }
  3180. //把图标加载到页面
  3181. el.appendChild(_frag);
  3182. }
  3183. /**
  3184. * 显示任务栏
  3185. *
  3186. * @param {element} 桌面元素
  3187. */
  3188. U.MD.D.I.displayTaskbar = function (el) {
  3189. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3190. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3191. //任务栏位置变化
  3192. U.selectEl(el).css({ "bottom": "0px" });
  3193. //桌面位置变话
  3194. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3195. }
  3196. }
  3197. //#region 桌面图标拖动逻辑
  3198. /**
  3199. * 桌面排列图标
  3200. *
  3201. * @param {element} 桌面元素
  3202. * @param {object} 上下相距的距离
  3203. * @param {object} 左右相距的距离
  3204. * @return {object} 命名空间
  3205. */
  3206. U.MD.D.iconPostion = function (childs, top, left) {
  3207. var i; //用于循环处理
  3208. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3209. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3210. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3211. for (i = 0; i < childs.length; i++) {
  3212. //如果竖排top超过了范围处理
  3213. if (top + 95 > US.height - 10) {
  3214. //left超过了页面范围处理,则向上重叠打印处理
  3215. if ((left + 180) > US.width) {
  3216. top -= 110;
  3217. left -= 90;
  3218. }
  3219. //没有超过范围,那么left+90添加到下一个竖排打印
  3220. else {
  3221. left += 90;
  3222. top = 15;
  3223. };
  3224. }
  3225. //给图标的位置赋值
  3226. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3227. if (i < childs.length - 1) {
  3228. //页面图标每次向下加95
  3229. top += 95;
  3230. }
  3231. }
  3232. //返回最后调用的图标的位置
  3233. return [top, left];
  3234. }
  3235. /**
  3236. * 桌面排列图标
  3237. *
  3238. * @param {element} 桌面元素
  3239. * @param {object} 上下相距的距离
  3240. * @param {object} 左右相距的距离
  3241. * @return {object} 命名空间
  3242. */
  3243. U.MD.D.iconPostion2 = function (childs, top, left) {
  3244. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3245. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3246. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3247. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3248. for (i = 0; i < childs.length; i++) {
  3249. //如果竖排top超过了范围处理
  3250. if (left + 150 > US.width - 10) {
  3251. //left超过了页面范围处理,则向上重叠打印处理
  3252. if ((top + 180) > US.Height) {
  3253. top -= 150;
  3254. left -= 150;
  3255. }
  3256. //没有超过范围,那么left+90添加到下一个竖排打印
  3257. else {
  3258. top += 150;
  3259. left = ol;
  3260. };
  3261. }
  3262. //给图标的位置赋值
  3263. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3264. if (i < childs.length - 1) {
  3265. //页面图标每次向下加95
  3266. left += 150;
  3267. }
  3268. }
  3269. //返回最后调用的图标的位置
  3270. return [top, left];
  3271. }
  3272. /**
  3273. * 桌面点击事件逻辑
  3274. *
  3275. * @param {element} 桌面元素
  3276. * @param {object} 上下相距的距离
  3277. * @param {object} 左右相距的距离
  3278. * @return {object} 命名空间
  3279. */
  3280. U.MD.D.click = function (el, obj) {
  3281. var _buttonnumber = event.button; //点击的按钮的事件值
  3282. var _userinfo = US.userInfo;
  3283. U.UF.EV.stopBubble(); //阻止向上冒泡
  3284. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3285. if (_buttonnumber < 2) {
  3286. //如果是click事件的处理
  3287. if (event.type == "click") {
  3288. //如果元素在mousemove事件中没有移动则出发click事件
  3289. if (!U.MD.D.I.IsDrag) {
  3290. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3291. U.alert("请先登录您的账号!");
  3292. setTimeout(() => {
  3293. U.MD.U.L.login();
  3294. }, 2000);
  3295. } else {
  3296. //打开应用处理
  3297. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3298. }
  3299. }
  3300. }
  3301. //如果是mouse事件的处理
  3302. else {
  3303. if (US.Config.type == '1') {
  3304. //拖动处理,添加拖动和拖动结束事件
  3305. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3306. }
  3307. }
  3308. U.MD.D.I.IsDrag = false;
  3309. }
  3310. }
  3311. /**
  3312. * 拖动的处理
  3313. *
  3314. */
  3315. U.MD.D.iconMove = function () {
  3316. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3317. U.MD.D.I.IsDrag = true;
  3318. }
  3319. /**
  3320. * 拖动结束后,这里是定位处理,以网状的形式定位
  3321. *
  3322. * @param {element} 拖动的元素
  3323. * @return {object} 命名空间
  3324. */
  3325. U.MD.D.iconUp = function (el) {
  3326. var _top = 15,
  3327. _left = 20,
  3328. _margin,
  3329. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3330. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3331. if (_positioninfo["OT"] > 15) {
  3332. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3333. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3334. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3335. }
  3336. if (_positioninfo["OL"] > 20) {
  3337. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3338. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3339. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3340. }
  3341. //while循环判断么一个重叠的元素
  3342. do {
  3343. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3344. _top = _positioninfo[0] + 95; //得到定位后的top
  3345. _left = _positioninfo[1]; //得到定位后的left
  3346. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3347. }
  3348. /**
  3349. * 判断拖动后图标是否重叠
  3350. *
  3351. * @param {element} 拖动的元素
  3352. * @param {element} 桌面所有的元素
  3353. * @param {array} 拖动元素的位置
  3354. ----------[0] 上 top
  3355. ----------[1] 左 left
  3356. * @return {object} 命名空间
  3357. */
  3358. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3359. //循环所有的图标
  3360. for (var i = 0; i < childs.length; i++) {
  3361. //判断有没有和该图标诶子重叠的元素
  3362. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3363. return childs[i]; //如果有返回
  3364. }
  3365. }
  3366. }
  3367. //#endregion
  3368. //#endregion
  3369. //#region 桌面应用
  3370. /**
  3371. * 打开应用
  3372. *
  3373. * @param {string} 类型
  3374. -----------------Disk 网盘系统
  3375. -----------------PDisk 学习系统网盘
  3376. -----------------Poto 图片
  3377. -----------------Video 视频
  3378. -----------------Music 音乐
  3379. -----------------Word word
  3380. -----------------Excel excel
  3381. -----------------Txt 记事本
  3382. -----------------PB 学习系统
  3383. -----------------Blog 朋友圈系统
  3384. -----------------FTP ftp系统
  3385. -----------------Group 好友群
  3386. -----------------SY 首页系统
  3387. -----------------Set 个人设置
  3388. -----------------XSet 系统设置
  3389. -----------------App 我们所有的app
  3390. -----------------BC c.1473.cn 平台
  3391. -----------------CWeb d.1473.cn 变成平台
  3392. -----------------其他的外联系统 我们统一用iframe打开
  3393. * @param {array} 类型
  3394. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3395. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3396. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3397. 如果第一个参数为其他,则无第二个参数
  3398. * @returns {array}
  3399. */
  3400. window.addEventListener('message', function (e) { // 监听 message 事件
  3401. // alert(e.data.type);
  3402. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3403. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3404. //3是展示全部阶段 2学生 1老师 4专家
  3405. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3406. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3407. //3是展示全部阶段 2学生 1老师 4专家
  3408. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3409. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3410. //3是展示全部阶段 2学生 1老师 4专家
  3411. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3412. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3413. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3414. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3415. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3416. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3417. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3418. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3419. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3420. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3421. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3422. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3423. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3424. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3425. //3是展示全部阶段 2学生 1老师 4专家
  3426. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3427. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3428. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3429. U.MD.D.I.selectUser();
  3430. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3431. var _formel = document.getElementById("study");
  3432. U.UF.F.windowZooming(_formel);
  3433. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3434. var _formel = document.getElementById("studyDetail");
  3435. U.UF.F.windowZooming(_formel);
  3436. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3437. var _formel = document.getElementById("studyDetail");
  3438. U.UF.F.windowZooming(_formel);
  3439. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3440. var _formel = document.getElementById("studentStudy");
  3441. U.UF.F.windowZooming(_formel);
  3442. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3443. // var _formel = document.getElementById("study");
  3444. //如果最大化了,那么就把他缩小
  3445. // if (_formel.ismaximize) {
  3446. // return;
  3447. // }
  3448. // U.UF.F.windowZooming(_formel);
  3449. // U.UF.F.topWindow(_formel);
  3450. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3451. // var _formel = document.getElementById("studyDetail");
  3452. //如果最大化了,那么就把他缩小
  3453. // if (_formel.ismaximize) {
  3454. // return;
  3455. // }
  3456. // U.UF.F.windowZooming(_formel);
  3457. // U.UF.F.topWindow(_formel);
  3458. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3459. // var _formel = document.getElementById("studentStudy");
  3460. // if (_formel.ismaximize) {
  3461. // return;
  3462. // }
  3463. // U.UF.F.windowZooming(_formel);
  3464. // U.UF.F.topWindow(_formel);
  3465. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3466. var _formel = document.getElementById("study");
  3467. // if (_formel.ismaximize) {
  3468. // return;
  3469. // }
  3470. // U.UF.F.windowZooming(_formel);
  3471. U.UF.F.topWindow(_formel);
  3472. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3473. var _formel = document.getElementById("studentIndex");
  3474. U.UF.F.windowZooming(_formel);
  3475. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3476. var _formel = document.getElementById("studyDetailS");
  3477. U.UF.F.windowZooming(_formel);
  3478. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3479. var _formel = document.getElementById("studioIndex");
  3480. U.UF.F.windowZooming(_formel);
  3481. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3482. var _formel = document.getElementById("studyDetailStudio");
  3483. U.UF.F.windowZooming(_formel);
  3484. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3485. var _formel = document.getElementById("studyDetailStudio");
  3486. U.UF.F.windowZooming(_formel);
  3487. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3488. var _formel = document.getElementById("studyDetailNT");
  3489. U.UF.F.windowZooming(_formel);
  3490. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3491. var _formel = document.getElementById("studyDetailS");
  3492. U.UF.F.windowZooming(_formel);
  3493. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3494. var _formel = document.getElementById("studyDetailS");
  3495. U.UF.F.topWindow(_formel);
  3496. } else if (e.data.tools && e.data.tools == "1") {
  3497. // U.MD.D.I.openApplication("whiteboard")
  3498. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3499. } else if (e.data.tools && e.data.tools == "2") {
  3500. U.MD.D.I.openApplication("note")
  3501. } else if (e.data.tools && e.data.tools == "3") {
  3502. // U.MD.D.I.openApplication("mind")
  3503. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3504. } else if (e.data.tools && e.data.tools == "4") {
  3505. U.MD.D.I.openApplication("investigation")
  3506. } else if (e.data.tools && e.data.tools == "6") {
  3507. // U.MD.D.I.openApplication("doc")
  3508. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3509. } else if (e.data.tools && e.data.tools == "7") {
  3510. // U.MD.D.I.openApplication("mindNetwork")
  3511. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3512. } else if (e.data.tools && e.data.tools == "8") {
  3513. U.MD.D.I.openApplication("library")
  3514. } else if (e.data.tools && e.data.tools == "17") {
  3515. U.MD.D.I.openApplication("stuLibrary")
  3516. } else if (e.data.tools && e.data.tools == "18") {
  3517. U.MD.D.I.openApplication("train")
  3518. } else if (e.data.tools && e.data.tools == "21") {
  3519. U.MD.D.I.openApplication("program")
  3520. } else if (e.data.tools && e.data.tools == "22") {
  3521. U.MD.D.I.openApplication("AIprogram2")
  3522. } else if (e.data.tools && e.data.tools == "23") {
  3523. U.MD.D.I.openApplication("Pythonprogram")
  3524. } else if (e.data.tools && e.data.tools == "24") {
  3525. U.MD.D.I.openApplication("AIprogram")
  3526. } else if (e.data.tools && e.data.tools == "25") {
  3527. U.MD.D.I.openApplication("sys")
  3528. } else if (e.data.tools && e.data.tools == "26") {
  3529. // U.MD.D.I.openApplication("courseDesign")
  3530. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3531. } else if (e.data.tools && e.data.tools == "31") {
  3532. U.MD.D.I.openApplication("netWorkPanel")
  3533. } else if (e.data.tools && e.data.tools == "32") {
  3534. U.MD.D.I.openApplication("codeEdit")
  3535. } else if (e.data.tools && e.data.tools == "57") {
  3536. U.MD.D.I.openApplication("CocoPi")
  3537. } else if (e.data.tools && e.data.tools == "63") {
  3538. U.MD.D.I.openApplication("Wood")
  3539. } else if (e.data.tools && e.data.tools == "58") {
  3540. U.MD.D.I.openApplication("car")
  3541. } else if (e.data.tools && e.data.tools == "59") {
  3542. U.MD.D.I.openApplication("lineSearch")
  3543. } else if (e.data.tools && e.data.tools == "60") {
  3544. U.MD.D.I.openApplication("deepLearning")
  3545. } else if (e.data.tools && e.data.tools == "61") {
  3546. U.MD.D.I.openApplication("allHistory")
  3547. } else if (e.data.tools && e.data.tools == "28") {
  3548. U.MD.D.I.openApplication("translation")
  3549. } else if (e.data.tools && e.data.tools == "37") {
  3550. U.MD.D.I.openApplication("mohe")
  3551. } else if (e.data.tools && e.data.tools == "38") {
  3552. U.MD.D.I.openApplication("24game")
  3553. } else if (e.data.tools && e.data.tools == "39") {
  3554. U.MD.D.I.openApplication("GeoGebra")
  3555. } else if (e.data.tools && e.data.tools == "43") {
  3556. U.MD.D.I.openApplication("studentEvaluate")
  3557. } else if (e.data.tools && e.data.tools == "44") {
  3558. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3559. } else if (e.data.tools && e.data.tools == "46") {
  3560. U.MD.D.I.openApplication("project")
  3561. } else if (e.data.tools && e.data.tools == "71") {
  3562. U.MD.D.I.openApplication("aigptCourse")
  3563. } else if (e.data.tools && e.data.tools == "1s") {
  3564. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3565. } else if (e.data.tools && e.data.tools == "3s") {
  3566. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3567. } else if (e.data.tools && e.data.tools == "6s") {
  3568. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3569. } else if (e.data.tools && e.data.tools == "1studio") {
  3570. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3571. } else if (e.data.tools && e.data.tools == "3studio") {
  3572. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3573. } else if (e.data.tools && e.data.tools == "6studio") {
  3574. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3575. } else if (e.data.tools && e.data.tools == "3y") {
  3576. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3577. } else if (e.data.tools && e.data.tools == "1y") {
  3578. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3579. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3580. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3581. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3582. U.MD.D.I.openApplication("AIAnalyse")
  3583. } else if (e.data.tools && e.data.tools == "1teacher") {
  3584. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3585. } else if (e.data.tools && e.data.tools == "3teacher") {
  3586. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3587. } else if (e.data.tools && e.data.tools == "7teacher") {
  3588. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3589. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3590. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3591. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3592. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3593. } else if (e.data.tools && e.data.tools == "1E") {
  3594. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3595. } else if (e.data.tools && e.data.tools == "3E") {
  3596. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3597. } else if (e.data.tools && e.data.tools == "57y") {
  3598. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3599. } else if (e.data.tools && e.data.tools == "57u") {
  3600. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3601. } else if (e.data.tools && e.data.tools == "57teacher") {
  3602. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3603. } else if (e.data.tools && e.data.tools == "64") {
  3604. U.MD.D.I.openApplication("AIChat")
  3605. } else if (e.data.tools && e.data.tools == "66") {
  3606. U.MD.D.I.openApplication("formulaEdi")
  3607. } else if (e.data.tools && e.data.tools == "67") {
  3608. U.MD.D.I.openApplication("molStr")
  3609. } else if (e.data.tools && e.data.tools == "68") {
  3610. U.MD.D.I.openApplication("timeAxis")
  3611. } else if (e.data.tools && e.data.tools == "openCourse") {
  3612. let _data = {
  3613. typea: e.data.typea || '',
  3614. typeb: e.data.typeb || '',
  3615. typed: e.data.typed || '',
  3616. }
  3617. U.MD.D.I.openInApplication("index", _data)
  3618. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3619. let _data = {
  3620. classid: e.data.classid || '',
  3621. }
  3622. U.MD.D.I.openInApplication("dataClass", _data)
  3623. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3624. let _data = {
  3625. cid: e.data.cid || '',
  3626. gid: e.data.gid || '',
  3627. }
  3628. U.MD.D.I.openInApplication("opencCscl", _data)
  3629. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3630. U.MD.D.I.openApplication("dataBoardTest")
  3631. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3632. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3633. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3634. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3635. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3636. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3637. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3638. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3639. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3640. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3641. }else if (e.data.tools && e.data.tools == "loginSz") {
  3642. U.MD.D.I.openInApplication("loginSz")
  3643. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3644. if($('#classroom_observation_board')[0]){
  3645. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3646. }
  3647. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3648. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3649. if($('#classroom_observation_ob_comment')[0]){
  3650. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3651. }
  3652. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3653. }
  3654. });
  3655. U.MD.D.I.selectUser = function () {
  3656. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3657. if (res.value[0].length > 0) {
  3658. US.userInfo = res.value[0][0];
  3659. $(".userName")[0].innerHTML = US.userInfo.username;
  3660. }
  3661. }, [], { "type": "GET", "withCredentials": true });
  3662. }
  3663. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3664. var _userinfo = US.userInfo, //登录用户信息
  3665. _userid = US.userInfo.userid, //登录用户id
  3666. _oid = _userinfo.organizeid,
  3667. _type = US.userInfo.type,
  3668. _org = US.userInfo.org,
  3669. _role = US.userInfo.role,
  3670. _classId = US.userInfo.classid;
  3671. if (_type == 4) {
  3672. tType = 4
  3673. }
  3674. switch (str) {
  3675. case "studyDetailNT": //无终端模式
  3676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3677. setTimeout(() => {
  3678. U.MD.U.L.login();
  3679. }, 2000);
  3680. } else {
  3681. _formdiv = new U.UF.UI.form(
  3682. "课程详情",
  3683. $$("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 }), {
  3684. "id": "studyDetailNT",
  3685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3686. "onresize": function () { }
  3687. }, {
  3688. closecallback: function () { }
  3689. }, { "style": { "height": "36px" } }).form; //创建窗体
  3690. _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); } }
  3691. break;
  3692. }
  3693. case "studyDetail":
  3694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3695. setTimeout(() => {
  3696. U.MD.U.L.login();
  3697. }, 2000);
  3698. } else {
  3699. _formdiv = new U.UF.UI.form(
  3700. "课程详情",
  3701. $$("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 }), {
  3702. "id": "studyDetail",
  3703. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3704. "onresize": function () { }
  3705. }, {
  3706. closecallback: function () { }
  3707. }, { "style": { "height": "36px" } }).form; //创建窗体
  3708. _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); } }
  3709. break;
  3710. }
  3711. case "studyDetailTrain":
  3712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3713. setTimeout(() => {
  3714. U.MD.U.L.login();
  3715. }, 2000);
  3716. } else {
  3717. _formdiv = new U.UF.UI.form(
  3718. "培训详情",
  3719. $$("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 }), {
  3720. "id": "studyDetailTrain",
  3721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3722. "onresize": function () { }
  3723. }, {
  3724. closecallback: function () { }
  3725. }, { "style": { "height": "36px" } }).form; //创建窗体
  3726. _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); } }
  3727. break;
  3728. }
  3729. case "studyDetailS":
  3730. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3731. setTimeout(() => {
  3732. U.MD.U.L.login();
  3733. }, 2000);
  3734. } else {
  3735. _formdiv = new U.UF.UI.form(
  3736. "项目详情",
  3737. $$("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 }), {
  3738. "id": "studyDetailS",
  3739. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3740. "onresize": function () { }
  3741. }, {
  3742. closecallback: function () { }
  3743. }, { "style": { "height": "36px" } }).form; //创建窗体
  3744. _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); } }
  3745. break;
  3746. }
  3747. case "studyDetailStudio":
  3748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3749. setTimeout(() => {
  3750. U.MD.U.L.login();
  3751. }, 2000);
  3752. } else {
  3753. _formdiv = new U.UF.UI.form(
  3754. "工作详情",
  3755. $$("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 }), {
  3756. "id": "studyDetailStudio",
  3757. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3758. "onresize": function () { }
  3759. }, {
  3760. closecallback: function () { }
  3761. }, { "style": { "height": "36px" } }).form; //创建窗体
  3762. _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); } }
  3763. break;
  3764. }
  3765. case "studyDetailS5":
  3766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3767. setTimeout(() => {
  3768. U.MD.U.L.login();
  3769. }, 2000);
  3770. } else {
  3771. _formdiv = new U.UF.UI.form(
  3772. "项目详情",
  3773. $$("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 }), {
  3774. "id": "studyDetailS",
  3775. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3776. "onresize": function () { }
  3777. }, {
  3778. closecallback: function () { }
  3779. }, { "style": { "height": "36px" } }).form; //创建窗体
  3780. _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); } }
  3781. break;
  3782. }
  3783. case "studyDetailGM":
  3784. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3785. setTimeout(() => {
  3786. U.MD.U.L.login();
  3787. }, 2000);
  3788. } else {
  3789. _formdiv = new U.UF.UI.form(
  3790. "课程详情",
  3791. $$("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 }), {
  3792. "id": "studyDetail",
  3793. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. }
  3801. case "hanUrl":
  3802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3803. setTimeout(() => {
  3804. U.MD.U.L.login();
  3805. }, 2000);
  3806. } else {
  3807. _formdiv = new U.UF.UI.form(
  3808. "汉字宫",
  3809. $$("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" }), {
  3810. "id": "hanUrl",
  3811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3812. "onresize": function () { }
  3813. }, {
  3814. closecallback: function () { }
  3815. }, { "style": { "height": "36px" } }).form; //创建窗体
  3816. _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); } }
  3817. break;
  3818. }
  3819. case "index":
  3820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3821. setTimeout(() => {
  3822. U.MD.U.L.login();
  3823. }, 2000);
  3824. } else {
  3825. _formdiv = new U.UF.UI.form(
  3826. "课程中心",
  3827. $$("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 }), {
  3828. "id": "study",
  3829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3830. "onresize": function () { }
  3831. }, {
  3832. closecallback: function () { }
  3833. }, { "style": { "height": "36px" } }).form; //创建窗体
  3834. _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); } }
  3835. break;
  3836. }
  3837. case "dataClass":
  3838. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3839. setTimeout(() => {
  3840. U.MD.U.L.login();
  3841. }, 2000);
  3842. } else {
  3843. _formdiv = new U.UF.UI.form(
  3844. "数据报告",
  3845. $$("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 }), {
  3846. "id": "dataClass",
  3847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3848. "onresize": function () { }
  3849. }, {
  3850. closecallback: function () { }
  3851. }, { "style": { "height": "36px" } }).form; //创建窗体
  3852. _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); } }
  3853. break;
  3854. }
  3855. case "opencCscl":
  3856. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3857. setTimeout(() => {
  3858. U.MD.U.L.login();
  3859. }, 2000);
  3860. } else {
  3861. _formdiv = new U.UF.UI.form(
  3862. "协同建构",
  3863. $$("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 }), {
  3864. "id": "futureClass",
  3865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3866. "onresize": function () { }
  3867. }, {
  3868. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3869. }, { "style": { "height": "36px" } }).form; //创建窗体
  3870. _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); } }
  3871. break;
  3872. }
  3873. case "openCourseUpdate":
  3874. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3875. setTimeout(() => {
  3876. U.MD.U.L.login();
  3877. }, 2000);
  3878. } else {
  3879. _formdiv = new U.UF.UI.form(
  3880. "课程管理",
  3881. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3882. "id": "openCourseUpdate",
  3883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3884. "onresize": function () { }
  3885. }, {
  3886. closecallback: function () { }
  3887. }, { "style": { "height": "36px" } }).form; //创建窗体
  3888. break;
  3889. }
  3890. case "openNewCourseUpdate":
  3891. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3892. setTimeout(() => {
  3893. U.MD.U.L.login();
  3894. }, 2000);
  3895. } else {
  3896. _formdiv = new U.UF.UI.form(
  3897. "课程管理",
  3898. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3899. "id": "openCourseUpdate",
  3900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3901. "onresize": function () { }
  3902. }, {
  3903. closecallback: function () { }
  3904. }, { "style": { "height": "36px" } }).form; //创建窗体
  3905. break;
  3906. }
  3907. case "openCourseEUpdate":
  3908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3909. setTimeout(() => {
  3910. U.MD.U.L.login();
  3911. }, 2000);
  3912. } else {
  3913. _formdiv = new U.UF.UI.form(
  3914. "课程管理",
  3915. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3916. "id": "openCourseUpdate",
  3917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3918. "onresize": function () { }
  3919. }, {
  3920. closecallback: function () { }
  3921. }, { "style": { "height": "36px" } }).form; //创建窗体
  3922. break;
  3923. }
  3924. case "openCourseAiUpdate":
  3925. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3926. setTimeout(() => {
  3927. U.MD.U.L.login();
  3928. }, 2000);
  3929. } else {
  3930. _formdiv = new U.UF.UI.form(
  3931. "课程管理",
  3932. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3933. "id": "openCourseUpdate",
  3934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3935. "onresize": function () { }
  3936. }, {
  3937. closecallback: function () { }
  3938. }, { "style": { "height": "36px" } }).form; //创建窗体
  3939. break;
  3940. }
  3941. case "openCourseNewUpdate":
  3942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3943. setTimeout(() => {
  3944. U.MD.U.L.login();
  3945. }, 2000);
  3946. } else {
  3947. _formdiv = new U.UF.UI.form(
  3948. "课程管理",
  3949. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3950. "id": "openCourseUpdate",
  3951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3952. "onresize": function () { }
  3953. }, {
  3954. closecallback: function () { }
  3955. }, { "style": { "height": "36px" } }).form; //创建窗体
  3956. break;
  3957. }
  3958. case "inviteLoginSz":
  3959. _formdiv = new U.UF.UI.form(
  3960. "随机码登录",
  3961. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  3962. "id": "loginSz",
  3963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3964. "onresize": function () { }
  3965. }, {
  3966. closecallback: function () { }
  3967. }, { "style": { "height": "36px" } }).form; //创建窗体
  3968. break;
  3969. case "loginSz":
  3970. _formdiv = new U.UF.UI.form(
  3971. "教师登录",
  3972. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  3973. "id": "loginSz",
  3974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3975. "onresize": function () { }
  3976. }, {
  3977. closecallback: function () { }
  3978. }, { "style": { "height": "36px" } }).form; //创建窗体
  3979. break;
  3980. case "teacher":
  3981. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3982. setTimeout(() => {
  3983. U.MD.U.L.login();
  3984. }, 2000);
  3985. } else {
  3986. _formdiv = new U.UF.UI.form(
  3987. "教师管理",
  3988. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3989. "id": "teacher",
  3990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3991. "onresize": function () { }
  3992. }, {
  3993. closecallback: function () { }
  3994. }, { "style": { "height": "36px" } }).form; //创建窗体
  3995. break;
  3996. }
  3997. case "dataBoardSZArea":
  3998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3999. setTimeout(() => {
  4000. U.MD.U.L.login();
  4001. }, 2000);
  4002. } else {
  4003. _formdiv = new U.UF.UI.form(
  4004. "综合数据看板",
  4005. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4006. "id": "dataBoardSZArea",
  4007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4008. "onresize": function () { }
  4009. }, {
  4010. closecallback: function () { }
  4011. }, { "style": { "height": "36px" } }).form; //创建窗体
  4012. break;
  4013. }
  4014. case "dataBoardSZCity":
  4015. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4016. setTimeout(() => {
  4017. U.MD.U.L.login();
  4018. }, 2000);
  4019. } else {
  4020. _formdiv = new U.UF.UI.form(
  4021. "综合数据看板",
  4022. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4023. "id": "dataBoardSZCity",
  4024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4025. "onresize": function () { }
  4026. }, {
  4027. closecallback: function () { }
  4028. }, { "style": { "height": "36px" } }).form; //创建窗体
  4029. break;
  4030. }
  4031. case "classroom_observation_board":
  4032. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4033. setTimeout(() => {
  4034. U.MD.U.L.login();
  4035. }, 2000);
  4036. } else {
  4037. _formdiv = new U.UF.UI.form(
  4038. "课堂观察",
  4039. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4040. "id": "classroom_observation_board",
  4041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4042. "onresize": function () { }
  4043. }, {
  4044. closecallback: function () { }
  4045. }, { "style": { "height": "36px" } }).form; //创建窗体
  4046. break;
  4047. }
  4048. case "classroom_observation_ob_comment":
  4049. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4050. setTimeout(() => {
  4051. U.MD.U.L.login();
  4052. }, 2000);
  4053. } else {
  4054. _formdiv = new U.UF.UI.form(
  4055. "课堂审核",
  4056. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4057. "id": "classroom_observation_ob_comment",
  4058. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4059. "onresize": function () { }
  4060. }, {
  4061. closecallback: function () { }
  4062. }, { "style": { "height": "36px" } }).form; //创建窗体
  4063. break;
  4064. }
  4065. }
  4066. }
  4067. U.MD.D.I.openApplication = function (str, obj, info) {
  4068. obj = obj || {};
  4069. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4070. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4071. _userinfo = US.userInfo, //登录用户信息
  4072. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4073. _oid = obj.organizeid || _userinfo.organizeid,
  4074. _type = US.userInfo.type,
  4075. _org = US.userInfo.org,
  4076. _role = US.userInfo.role,
  4077. _classId = US.userInfo.classid,
  4078. _TscreenType = 1
  4079. _screenType = 2,
  4080. _SscreenType = 3;
  4081. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4082. return;
  4083. }
  4084. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4085. switch (str) {
  4086. case "studnetProject": //好友打开
  4087. _formdiv = new U.UF.UI.form(
  4088. "我的项目",
  4089. $$("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 }), {
  4090. "id": "studnetProject",
  4091. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4092. "onresize": function () { }
  4093. }, {
  4094. closecallback: function () { }
  4095. }, { "style": { "height": "36px" } }).form; //创建窗体
  4096. _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); } }
  4097. break;
  4098. case "studentEvaluate": //好友打开
  4099. _formdiv = new U.UF.UI.form(
  4100. "我的评价",
  4101. $$("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 }), {
  4102. "id": "studentEvaluate",
  4103. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4104. "onresize": function () { }
  4105. }, {
  4106. closecallback: function () { }
  4107. }, { "style": { "height": "36px" } }).form; //创建窗体
  4108. _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); } }
  4109. break;
  4110. case "my":
  4111. _formdiv = new U.UF.UI.form(
  4112. "我的资料",
  4113. $$("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 }), {
  4114. "id": "my",
  4115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4116. "onresize": function () { }
  4117. }, {
  4118. closecallback: function () { }
  4119. }, { "style": { "height": "36px" } }).form; //创建窗体
  4120. _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); } }
  4121. break;
  4122. case "program":
  4123. _formdiv = new U.UF.UI.form(
  4124. "编程平台",
  4125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4126. "id": "program",
  4127. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4128. "onresize": function () { }
  4129. }, {
  4130. closecallback: function () { }
  4131. }, { "style": { "height": "36px" } }).form; //创建窗体
  4132. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4133. break;
  4134. case "library":
  4135. _formdiv = new U.UF.UI.form(
  4136. "素材库",
  4137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4138. "id": "library",
  4139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4140. "onresize": function () { }
  4141. }, {
  4142. closecallback: function () { }
  4143. }, { "style": { "height": "36px" } }).form; //创建窗体
  4144. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4145. break;
  4146. case "whiteboard":
  4147. _formdiv = new U.UF.UI.form(
  4148. "电子白板",
  4149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4150. "id": "whiteboard",
  4151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4157. break;
  4158. case "investigation":
  4159. _formdiv = new U.UF.UI.form(
  4160. "问卷调查",
  4161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4162. "id": "investigation",
  4163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4169. break;
  4170. case "note":
  4171. _formdiv = new U.UF.UI.form(
  4172. "便签分类",
  4173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4174. "id": "note",
  4175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4176. "onresize": function () { }
  4177. }, {
  4178. closecallback: function () { }
  4179. }, { "style": { "height": "36px" } }).form; //创建窗体
  4180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4181. break;
  4182. // case "score":
  4183. // _formdiv = new U.UF.UI.form(
  4184. // "量规评分",
  4185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4186. // "id": "score",
  4187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4188. // "onresize": function() {}
  4189. // }, {
  4190. // closecallback: function() {}
  4191. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4193. // break;
  4194. case "mind":
  4195. _formdiv = new U.UF.UI.form(
  4196. "思维导图",
  4197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4198. "id": "mind",
  4199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4200. "onresize": function () { }
  4201. }, {
  4202. closecallback: function () { }
  4203. }, { "style": { "height": "36px" } }).form; //创建窗体
  4204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4205. break;
  4206. case "doc":
  4207. // U.MD.D.I.isRoom();
  4208. _formdiv = new U.UF.UI.form(
  4209. "协同文档",
  4210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4211. "id": "doc",
  4212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4213. "onresize": function () { }
  4214. }, {
  4215. closecallback: function () { }
  4216. }, { "style": { "height": "36px" } }).form; //创建窗体
  4217. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4218. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4219. // })
  4220. _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); } }
  4221. break;
  4222. case "studentStudy":
  4223. _formdiv = new U.UF.UI.form(
  4224. "课程中心",
  4225. $$("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
  4226. "id": "studentStudy",
  4227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4228. "onresize": function () { }
  4229. }, {
  4230. closecallback: function () { }
  4231. }, { "style": { "height": "36px" } }).form; //创建窗体
  4232. _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); } }
  4233. break;
  4234. case "train": //好友打开
  4235. _formdiv = new U.UF.UI.form(
  4236. "训练平台",
  4237. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4238. "id": "train",
  4239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4240. "onresize": function () { }
  4241. }, {
  4242. closecallback: function () { }
  4243. }, { "style": { "height": "36px" } }).form; //创建窗体
  4244. _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); } }
  4245. break;
  4246. case "mindNetwork": //好友打开
  4247. _formdiv = new U.UF.UI.form(
  4248. "思维网格",
  4249. $$("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 }), {
  4250. "id": "mindNetwork",
  4251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4252. "onresize": function () { }
  4253. }, {
  4254. closecallback: function () { }
  4255. }, { "style": { "height": "36px" } }).form; //创建窗体
  4256. _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); } }
  4257. break;
  4258. case "studentClassRoom": //好友打开
  4259. _formdiv = new U.UF.UI.form(
  4260. "实时课堂",
  4261. $$("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 }), {
  4262. "id": "studentClassRoom",
  4263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4264. "onresize": function () { }
  4265. }, {
  4266. closecallback: function () { }
  4267. }, { "style": { "height": "36px" } }).form; //创建窗体
  4268. _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); } }
  4269. setTimeout(() => {
  4270. U.UF.F.windowZooming(_formdiv)
  4271. }, 0);
  4272. break;
  4273. }
  4274. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4275. switch (str) {
  4276. case "studnetProject": //好友打开
  4277. _formdiv = new U.UF.UI.form(
  4278. "我的项目",
  4279. $$("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 }), {
  4280. "id": "studnetProject",
  4281. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4282. "onresize": function () { }
  4283. }, {
  4284. closecallback: function () { }
  4285. }, { "style": { "height": "36px" } }).form; //创建窗体
  4286. _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); } }
  4287. break;
  4288. case "studentEvaluate": //好友打开
  4289. _formdiv = new U.UF.UI.form(
  4290. "我的评价",
  4291. $$("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 }), {
  4292. "id": "studentEvaluate",
  4293. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4294. "onresize": function () { }
  4295. }, {
  4296. closecallback: function () { }
  4297. }, { "style": { "height": "36px" } }).form; //创建窗体
  4298. _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); } }
  4299. break;
  4300. case "my":
  4301. _formdiv = new U.UF.UI.form(
  4302. "我的资料",
  4303. $$("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 }), {
  4304. "id": "my",
  4305. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4306. "onresize": function () { }
  4307. }, {
  4308. closecallback: function () { }
  4309. }, { "style": { "height": "36px" } }).form; //创建窗体
  4310. _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); } }
  4311. break;
  4312. case "program":
  4313. _formdiv = new U.UF.UI.form(
  4314. "编程平台",
  4315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4316. "id": "program",
  4317. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4318. "onresize": function () { }
  4319. }, {
  4320. closecallback: function () { }
  4321. }, { "style": { "height": "36px" } }).form; //创建窗体
  4322. _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); } }
  4323. break;
  4324. case "library":
  4325. _formdiv = new U.UF.UI.form(
  4326. "素材库",
  4327. $$("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 }), {
  4328. "id": "library",
  4329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4330. "onresize": function () { }
  4331. }, {
  4332. closecallback: function () { }
  4333. }, { "style": { "height": "36px" } }).form; //创建窗体
  4334. _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); } }
  4335. break;
  4336. case "whiteboard":
  4337. _formdiv = new U.UF.UI.form(
  4338. "电子白板",
  4339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4340. "id": "whiteboard",
  4341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4342. "onresize": function () { }
  4343. }, {
  4344. closecallback: function () { }
  4345. }, { "style": { "height": "36px" } }).form; //创建窗体
  4346. _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); } }
  4347. break;
  4348. case "investigation":
  4349. _formdiv = new U.UF.UI.form(
  4350. "问卷调查",
  4351. $$("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 }), {
  4352. "id": "investigation",
  4353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4354. "onresize": function () { }
  4355. }, {
  4356. closecallback: function () { }
  4357. }, { "style": { "height": "36px" } }).form; //创建窗体
  4358. _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); } }
  4359. break;
  4360. case "note":
  4361. _formdiv = new U.UF.UI.form(
  4362. "便签分类",
  4363. $$("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 }), {
  4364. "id": "note",
  4365. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4366. "onresize": function () { }
  4367. }, {
  4368. closecallback: function () { }
  4369. }, { "style": { "height": "36px" } }).form; //创建窗体
  4370. _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); } }
  4371. break;
  4372. // case "score":
  4373. // _formdiv = new U.UF.UI.form(
  4374. // "量规评分",
  4375. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4376. // "id": "score",
  4377. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4378. // "onresize": function() {}
  4379. // }, {
  4380. // closecallback: function() {}
  4381. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4382. // _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); } }
  4383. // break;
  4384. case "mind":
  4385. _formdiv = new U.UF.UI.form(
  4386. "思维导图",
  4387. $$("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"
  4388. "id": "mind",
  4389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4390. "onresize": function () { }
  4391. }, {
  4392. closecallback: function () { }
  4393. }, { "style": { "height": "36px" } }).form; //创建窗体
  4394. _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); } }
  4395. break;
  4396. case "doc":
  4397. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  4401. "id": "doc",
  4402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4403. "onresize": function () { }
  4404. }, {
  4405. closecallback: function () { }
  4406. }, { "style": { "height": "36px" } }).form; //创建窗体
  4407. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4408. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4409. })
  4410. _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); } }
  4411. break;
  4412. case "train": //好友打开
  4413. _formdiv = new U.UF.UI.form(
  4414. "训练平台",
  4415. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4416. "id": "train",
  4417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4418. "onresize": function () { }
  4419. }, {
  4420. closecallback: function () { }
  4421. }, { "style": { "height": "36px" } }).form; //创建窗体
  4422. _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); } }
  4423. break;
  4424. case "studentStudy":
  4425. _formdiv = new U.UF.UI.form(
  4426. "课程中心",
  4427. $$("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
  4428. "id": "studentStudy",
  4429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4430. "onresize": function () { }
  4431. }, {
  4432. closecallback: function () { }
  4433. }, { "style": { "height": "36px" } }).form; //创建窗体
  4434. _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); } }
  4435. break;
  4436. case "mindNetwork": //好友打开
  4437. _formdiv = new U.UF.UI.form(
  4438. "思维网格",
  4439. $$("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 }), {
  4440. "id": "mindNetwork",
  4441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4442. "onresize": function () { }
  4443. }, {
  4444. closecallback: function () { }
  4445. }, { "style": { "height": "36px" } }).form; //创建窗体
  4446. _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); } }
  4447. break;
  4448. case "studentClassRoom": //好友打开
  4449. _formdiv = new U.UF.UI.form(
  4450. "实时课堂",
  4451. $$("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 }), {
  4452. "id": "studentClassRoom",
  4453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4454. "onresize": function () { }
  4455. }, {
  4456. closecallback: function () { }
  4457. }, { "style": { "height": "36px" } }).form; //创建窗体
  4458. _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); } }
  4459. setTimeout(() => {
  4460. U.UF.F.windowZooming(_formdiv)
  4461. }, 0);
  4462. break;
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4465. //选择应用处理
  4466. switch (str) {
  4467. case "project": //好友打开
  4468. _formdiv = new U.UF.UI.form(
  4469. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4470. $$("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 }), {
  4471. "id": "project",
  4472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4473. "onresize": function () { }
  4474. }, {
  4475. closecallback: function () { }
  4476. }, { "style": { "height": "36px" } }).form; //创建窗体
  4477. _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); } }
  4478. break;
  4479. case "student":
  4480. _formdiv = new U.UF.UI.form(
  4481. "学生管理",
  4482. $$("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 }), {
  4483. "id": "student",
  4484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4485. "onresize": function () { }
  4486. }, {
  4487. closecallback: function () { }
  4488. }, { "style": { "height": "36px" } }).form; //创建窗体
  4489. _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); } }
  4490. break;
  4491. case "evaluate":
  4492. _formdiv = new U.UF.UI.form(
  4493. "学生评价",
  4494. $$("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 }), {
  4495. "id": "evaluate",
  4496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4497. "onresize": function () { }
  4498. }, {
  4499. closecallback: function () { }
  4500. }, { "style": { "height": "36px" } }).form; //创建窗体
  4501. _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); } }
  4502. break;
  4503. case "sys":
  4504. _formdiv = new U.UF.UI.form(
  4505. "目标管理",
  4506. $$("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 }), {
  4507. "id": "sys",
  4508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4509. "onresize": function () { }
  4510. }, {
  4511. closecallback: function () { }
  4512. }, { "style": { "height": "36px" } }).form; //创建窗体
  4513. _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); } }
  4514. break;
  4515. case "courseDesign":
  4516. _formdiv = new U.UF.UI.form(
  4517. "项目设计",
  4518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4519. "id": "courseDesign",
  4520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4521. "onresize": function () { }
  4522. }, {
  4523. closecallback: function () { }
  4524. }, { "style": { "height": "36px" } }).form; //创建窗体
  4525. _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); } }
  4526. break;
  4527. case "program":
  4528. _formdiv = new U.UF.UI.form(
  4529. "编程平台",
  4530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4531. "id": "program",
  4532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4533. "onresize": function () { }
  4534. }, {
  4535. closecallback: function () { }
  4536. }, { "style": { "height": "36px" } }).form; //创建窗体
  4537. _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); } }
  4538. break;
  4539. case "class":
  4540. _formdiv = new U.UF.UI.form(
  4541. "班级管理",
  4542. $$("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 }), {
  4543. "id": "class",
  4544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4545. "onresize": function () { }
  4546. }, {
  4547. closecallback: function () { }
  4548. }, { "style": { "height": "36px" } }).form; //创建窗体
  4549. _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); } }
  4550. break;
  4551. case "Grade":
  4552. _formdiv = new U.UF.UI.form(
  4553. "年级管理",
  4554. $$("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 }), {
  4555. "id": "Grade",
  4556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4557. "onresize": function () { }
  4558. }, {
  4559. closecallback: function () { }
  4560. }, { "style": { "height": "36px" } }).form; //创建窗体
  4561. _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); } }
  4562. break;
  4563. case "teacherOffice":
  4564. _formdiv = new U.UF.UI.form(
  4565. "教研室",
  4566. $$("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 }), {
  4567. "id": "teacherOffice",
  4568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4569. "onresize": function () { }
  4570. }, {
  4571. closecallback: function () { }
  4572. }, { "style": { "height": "36px" } }).form; //创建窗体
  4573. _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); } }
  4574. break;
  4575. case "my":
  4576. _formdiv = new U.UF.UI.form(
  4577. "我的资料",
  4578. $$("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 }), {
  4579. "id": "my",
  4580. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4581. "onresize": function () { }
  4582. }, {
  4583. closecallback: function () { }
  4584. }, { "style": { "height": "36px" } }).form; //创建窗体
  4585. _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); } }
  4586. break;
  4587. case "notice":
  4588. _formdiv = new U.UF.UI.form(
  4589. "通知公告",
  4590. $$("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 }), {
  4591. "id": "notice",
  4592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4593. "onresize": function () { }
  4594. }, {
  4595. closecallback: function () { }
  4596. }, { "style": { "height": "36px" } }).form; //创建窗体
  4597. _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); } }
  4598. break;
  4599. case "library":
  4600. _formdiv = new U.UF.UI.form(
  4601. "素材库",
  4602. $$("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 }), {
  4603. "id": "library",
  4604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4605. "onresize": function () { }
  4606. }, {
  4607. closecallback: function () { }
  4608. }, { "style": { "height": "36px" } }).form; //创建窗体
  4609. _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); } }
  4610. break;
  4611. case "whiteboard":
  4612. _formdiv = new U.UF.UI.form(
  4613. "电子白板",
  4614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4615. "id": "whiteboard",
  4616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4617. "onresize": function () { }
  4618. }, {
  4619. closecallback: function () { }
  4620. }, { "style": { "height": "36px" } }).form; //创建窗体
  4621. _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); } }
  4622. break;
  4623. case "investigation":
  4624. _formdiv = new U.UF.UI.form(
  4625. "问卷调查",
  4626. $$("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 }), {
  4627. "id": "investigation",
  4628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4629. "onresize": function () { }
  4630. }, {
  4631. closecallback: function () { }
  4632. }, { "style": { "height": "36px" } }).form; //创建窗体
  4633. _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); } }
  4634. break;
  4635. case "note":
  4636. _formdiv = new U.UF.UI.form(
  4637. "便签分类",
  4638. $$("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 }), {
  4639. "id": "note",
  4640. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4641. "onresize": function () { }
  4642. }, {
  4643. closecallback: function () { }
  4644. }, { "style": { "height": "36px" } }).form; //创建窗体
  4645. _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); } }
  4646. break;
  4647. // case "score":
  4648. // _formdiv = new U.UF.UI.form(
  4649. // "量规评分",
  4650. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4651. // "id": "score",
  4652. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4653. // "onresize": function() {}
  4654. // }, {
  4655. // closecallback: function() {}
  4656. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4657. // _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); } }
  4658. // break;
  4659. case "mind":
  4660. _formdiv = new U.UF.UI.form(
  4661. "思维导图",
  4662. $$("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"
  4663. "id": "mind",
  4664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4665. "onresize": function () { }
  4666. }, {
  4667. closecallback: function () { }
  4668. }, { "style": { "height": "36px" } }).form; //创建窗体
  4669. _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); } }
  4670. break;
  4671. case "doc":
  4672. // U.MD.D.I.isRoom();
  4673. _formdiv = new U.UF.UI.form(
  4674. "协同文档",
  4675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4676. "id": "doc",
  4677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4683. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4684. })
  4685. _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); } }
  4686. break;
  4687. case "study":
  4688. _formdiv = new U.UF.UI.form(
  4689. "课程中心",
  4690. $$("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
  4691. "id": "study",
  4692. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4693. "onresize": function () { }
  4694. }, {
  4695. closecallback: function () { }
  4696. }, { "style": { "height": "36px" } }).form; //创建窗体
  4697. _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); } }
  4698. break;
  4699. case "mindNetwork": //好友打开
  4700. _formdiv = new U.UF.UI.form(
  4701. "思维网格",
  4702. $$("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 }), {
  4703. "id": "mindNetwork",
  4704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4705. "onresize": function () { }
  4706. }, {
  4707. closecallback: function () { }
  4708. }, { "style": { "height": "36px" } }).form; //创建窗体
  4709. _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); } }
  4710. break;
  4711. case "train": //好友打开
  4712. _formdiv = new U.UF.UI.form(
  4713. "训练平台",
  4714. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4715. "id": "mindNetwork",
  4716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4717. "onresize": function () { }
  4718. }, {
  4719. closecallback: function () { }
  4720. }, { "style": { "height": "36px" } }).form; //创建窗体
  4721. _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); } }
  4722. break;
  4723. case "teacherClassRoom": //好友打开
  4724. _formdiv = new U.UF.UI.form(
  4725. "实时课堂",
  4726. $$("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 }), {
  4727. "id": "teacherClassRoom",
  4728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4729. "onresize": function () { }
  4730. }, {
  4731. closecallback: function () { }
  4732. }, { "style": { "height": "36px" } }).form; //创建窗体
  4733. _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); } }
  4734. setTimeout(() => {
  4735. U.UF.F.windowZooming(_formdiv)
  4736. }, 0);
  4737. break;
  4738. }
  4739. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4740. switch (str) {
  4741. case "project": //好友打开
  4742. _formdiv = new U.UF.UI.form(
  4743. "课程管理",
  4744. $$("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 }), {
  4745. "id": "project",
  4746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4747. "onresize": function () { }
  4748. }, {
  4749. closecallback: function () { }
  4750. }, { "style": { "height": "36px" } }).form; //创建窗体
  4751. _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); } }
  4752. break;
  4753. case "evaluate":
  4754. _formdiv = new U.UF.UI.form(
  4755. "学生评价",
  4756. $$("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 }), {
  4757. "id": "evaluate",
  4758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4759. "onresize": function () { }
  4760. }, {
  4761. closecallback: function () { }
  4762. }, { "style": { "height": "36px" } }).form; //创建窗体
  4763. _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); } }
  4764. break;
  4765. case "notice":
  4766. _formdiv = new U.UF.UI.form(
  4767. "通知公告",
  4768. $$("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 }), {
  4769. "id": "notice",
  4770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4771. "onresize": function () { }
  4772. }, {
  4773. closecallback: function () { }
  4774. }, { "style": { "height": "36px" } }).form; //创建窗体
  4775. _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); } }
  4776. break;
  4777. case "stuLibrary":
  4778. _formdiv = new U.UF.UI.form(
  4779. "学习资料",
  4780. $$("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 }), {
  4781. "id": "stuLibrary",
  4782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4783. "onresize": function () { }
  4784. }, {
  4785. closecallback: function () { }
  4786. }, { "style": { "height": "36px" } }).form; //创建窗体
  4787. _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); } }
  4788. break;
  4789. case "program":
  4790. _formdiv = new U.UF.UI.form(
  4791. "编程平台",
  4792. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4793. "id": "program",
  4794. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4795. "onresize": function () { }
  4796. }, {
  4797. closecallback: function () { }
  4798. }, { "style": { "height": "36px" } }).form; //创建窗体
  4799. _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); } }
  4800. break;
  4801. case "whiteboard":
  4802. _formdiv = new U.UF.UI.form(
  4803. "电子白板",
  4804. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4805. "id": "whiteboard",
  4806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _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); } }
  4812. break;
  4813. case "investigation":
  4814. _formdiv = new U.UF.UI.form(
  4815. "问卷调查",
  4816. $$("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 }), {
  4817. "id": "investigation",
  4818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4819. "onresize": function () { }
  4820. }, {
  4821. closecallback: function () { }
  4822. }, { "style": { "height": "36px" } }).form; //创建窗体
  4823. _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); } }
  4824. break;
  4825. case "mind":
  4826. _formdiv = new U.UF.UI.form(
  4827. "思维导图",
  4828. $$("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"
  4829. "id": "mind",
  4830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4831. "onresize": function () { }
  4832. }, {
  4833. closecallback: function () { }
  4834. }, { "style": { "height": "36px" } }).form; //创建窗体
  4835. _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); } }
  4836. break;
  4837. case "doc":
  4838. // U.MD.D.I.isRoom();
  4839. _formdiv = new U.UF.UI.form(
  4840. "协同文档",
  4841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4842. "id": "doc",
  4843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4844. "onresize": function () { }
  4845. }, {
  4846. closecallback: function () { }
  4847. }, { "style": { "height": "36px" } }).form; //创建窗体
  4848. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4849. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4850. })
  4851. _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); } }
  4852. break;
  4853. case "study":
  4854. _formdiv = new U.UF.UI.form(
  4855. "课程中心",
  4856. $$("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
  4857. "id": "study",
  4858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4864. break;
  4865. case "mindNetwork": //好友打开
  4866. _formdiv = new U.UF.UI.form(
  4867. "思维网格",
  4868. $$("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 }), {
  4869. "id": "mindNetwork",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4876. break;
  4877. case "train": //好友打开
  4878. _formdiv = new U.UF.UI.form(
  4879. "训练平台",
  4880. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4881. "id": "train",
  4882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4888. break;
  4889. case "sys":
  4890. _formdiv = new U.UF.UI.form(
  4891. "目标管理",
  4892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4893. "id": "sys",
  4894. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4900. break;
  4901. case "courseDesign":
  4902. _formdiv = new U.UF.UI.form(
  4903. "项目设计",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4905. "id": "courseDesign",
  4906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4912. break;
  4913. }
  4914. } else if (!_type) {
  4915. switch (str) {
  4916. case "my":
  4917. _formdiv = new U.UF.UI.form(
  4918. "我的资料",
  4919. $$("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 }), {
  4920. "id": "my",
  4921. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4922. "onresize": function () { }
  4923. }, {
  4924. closecallback: function () { }
  4925. }, { "style": { "height": "36px" } }).form; //创建窗体
  4926. _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); } }
  4927. break;
  4928. }
  4929. }
  4930. switch (str) {
  4931. // AIprogram2 AI体验 aihub.cocorobo.cn
  4932. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4933. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4934. case "formulaEdi": //公式编辑
  4935. _formdiv = new U.UF.UI.form(
  4936. "公式编辑",
  4937. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4938. "id": "formulaEdi",
  4939. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. _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); } }
  4945. break;
  4946. case "molStr": //分子结构
  4947. _formdiv = new U.UF.UI.form(
  4948. "分子结构",
  4949. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4950. "id": "molStr",
  4951. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _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); } }
  4957. break;
  4958. case "timeAxis": //时间轴
  4959. _formdiv = new U.UF.UI.form(
  4960. "时间轴",
  4961. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4962. "id": "timeAxis",
  4963. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. closecallback: function () { }
  4967. }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. _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); } }
  4969. break;
  4970. case "AIprogram2": //AI体验
  4971. _formdiv = new U.UF.UI.form(
  4972. "AI体验",
  4973. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4974. "id": "AIprogram2",
  4975. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () { }
  4979. }, { "style": { "height": "36px" } }).form; //创建窗体
  4980. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4981. break;
  4982. case "Pythonprogram": //python编程
  4983. _formdiv = new U.UF.UI.form(
  4984. "Python编程",
  4985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4986. "id": "Pythonprogram",
  4987. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. case "AIprogram": //ai编程
  4995. _formdiv = new U.UF.UI.form(
  4996. "AI编程平台",
  4997. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4998. "id": "AIprogram",
  4999. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. _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); } }
  5005. break;
  5006. case "CocoPi": //CocoPi
  5007. _formdiv = new U.UF.UI.form(
  5008. "CocoPi",
  5009. $$("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" }), {
  5010. "id": "CocoPi",
  5011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5017. break;
  5018. case "Wood": //Wood
  5019. _formdiv = new U.UF.UI.form(
  5020. "海龟编程",
  5021. $$("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/" }), {
  5022. "id": "Wood",
  5023. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _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); } }
  5029. break;
  5030. case "car": //模拟驾驶
  5031. _formdiv = new U.UF.UI.form(
  5032. "模拟驾驶",
  5033. $$("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/" }), {
  5034. "id": "car",
  5035. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //创建窗体
  5040. _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); } }
  5041. break;
  5042. case "lineSearch": //路径搜索
  5043. _formdiv = new U.UF.UI.form(
  5044. "路径搜索",
  5045. $$("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/" }), {
  5046. "id": "lineSearch",
  5047. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5053. break;
  5054. case "deepLearning": //深度学习
  5055. _formdiv = new U.UF.UI.form(
  5056. "深度学习",
  5057. $$("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/#" }), {
  5058. "id": "deepLearning",
  5059. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. _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); } }
  5065. break;
  5066. case "allHistory": //深度学习
  5067. _formdiv = new U.UF.UI.form(
  5068. "全历史",
  5069. $$("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/" }), {
  5070. "id": "allHistory",
  5071. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. _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); } }
  5077. break;
  5078. case "chatPDF": //ai编程
  5079. _formdiv = new U.UF.UI.form(
  5080. "chatPDF",
  5081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5082. "id": "chatPDF",
  5083. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //创建窗体
  5088. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5089. break;
  5090. case "resources": //国家教育
  5091. _formdiv = new U.UF.UI.form(
  5092. "国家教育",
  5093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5094. "id": "resources",
  5095. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5096. "onresize": function () { }
  5097. }, {
  5098. closecallback: function () { }
  5099. }, { "style": { "height": "36px" } }).form; //创建窗体
  5100. _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); } }
  5101. break;
  5102. case "codeEdit": //源码编辑
  5103. _formdiv = new U.UF.UI.form(
  5104. "源码编辑",
  5105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5106. "id": "codeEdit",
  5107. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5108. "onresize": function () { }
  5109. }, {
  5110. closecallback: function () { }
  5111. }, { "style": { "height": "36px" } }).form; //创建窗体
  5112. _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); } }
  5113. break; //
  5114. case "MindMap": //MindMap
  5115. _formdiv = new U.UF.UI.form(
  5116. "MindMap",
  5117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5118. "id": "MindMap",
  5119. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5125. break;
  5126. case "netWorkPanel": //netWorkPanel
  5127. _formdiv = new U.UF.UI.form(
  5128. "netWorkPanel",
  5129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5130. "id": "netWorkPanel",
  5131. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _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); } }
  5137. break;
  5138. case "GeoGebra": //GeoGebra
  5139. _formdiv = new U.UF.UI.form(
  5140. "GeoGebra",
  5141. $$("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" }), {
  5142. "id": "GeoGebra",
  5143. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _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); } }
  5149. break;
  5150. case "translation": //翻译
  5151. _formdiv = new U.UF.UI.form(
  5152. "翻译",
  5153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5154. "id": "translation",
  5155. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. break;
  5162. case "mohe": //魔盒
  5163. _formdiv = new U.UF.UI.form(
  5164. "魔盒识字",
  5165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5166. "id": "mohe",
  5167. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _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); } }
  5173. break;
  5174. case "24game": //24点
  5175. _formdiv = new U.UF.UI.form(
  5176. "24点",
  5177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5178. "id": "24game",
  5179. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _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); } }
  5185. break;
  5186. case "case":
  5187. _formdiv = new U.UF.UI.form(
  5188. "课程进展",
  5189. $$("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 }), {
  5190. "id": "case",
  5191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _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); } }
  5197. break;
  5198. case "snf":
  5199. _formdiv = new U.UF.UI.form(
  5200. "赛诺梵",
  5201. $$("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" }), {
  5202. "id": "snf",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. _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); } }
  5209. break;
  5210. case "hanFamily":
  5211. _formdiv = new U.UF.UI.form(
  5212. "汉字家族",
  5213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5214. "id": "hanFamily",
  5215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _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); } }
  5221. break;
  5222. case "hanClassics":
  5223. _formdiv = new U.UF.UI.form(
  5224. "国学经典",
  5225. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5226. "id": "hanClassics",
  5227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5233. break;
  5234. case "hanTraining":
  5235. _formdiv = new U.UF.UI.form(
  5236. "笔画训练",
  5237. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5238. "id": "hanTraining",
  5239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5245. break;
  5246. case "hanClass":
  5247. _formdiv = new U.UF.UI.form(
  5248. "书法课堂",
  5249. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5250. "id": "hanClass",
  5251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5257. break;
  5258. case "han":
  5259. _formdiv = new U.UF.UI.form(
  5260. "汉字宫",
  5261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5262. "id": "han",
  5263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5269. break;
  5270. case "projectGM": //课程管理
  5271. _formdiv = new U.UF.UI.form(
  5272. "课程管理",
  5273. $$("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 }), {
  5274. "id": "projectGM",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. _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); } }
  5281. break;
  5282. case "studyGM": //课程中心
  5283. _formdiv = new U.UF.UI.form(
  5284. "课程中心",
  5285. $$("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
  5286. "id": "study",
  5287. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5288. "onresize": function () { }
  5289. }, {
  5290. closecallback: function () { }
  5291. }, { "style": { "height": "36px" } }).form; //创建窗体
  5292. _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); } }
  5293. break;
  5294. // studentGM
  5295. case "studentGM": //学生管理
  5296. _formdiv = new U.UF.UI.form(
  5297. "学生管理",
  5298. $$("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 }), {
  5299. "id": "studentGM",
  5300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5301. "onresize": function () { }
  5302. }, {
  5303. closecallback: function () { }
  5304. }, { "style": { "height": "36px" } }).form; //创建窗体
  5305. _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); } }
  5306. break;
  5307. case "evaluateGM": //学生评价
  5308. _formdiv = new U.UF.UI.form(
  5309. "学生评价",
  5310. $$("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 }), {
  5311. "id": "evaluateGM",
  5312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5313. "onresize": function () { }
  5314. }, {
  5315. closecallback: function () { }
  5316. }, { "style": { "height": "36px" } }).form; //创建窗体
  5317. _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); } }
  5318. break;
  5319. // classGM
  5320. case "classGM": //班级管理
  5321. _formdiv = new U.UF.UI.form(
  5322. "班级管理",
  5323. $$("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 }), {
  5324. "id": "classGM",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _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); } }
  5331. break;
  5332. // dataGM
  5333. case "dataGM":
  5334. _formdiv = new U.UF.UI.form(
  5335. "我的资料",
  5336. $$("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 }), {
  5337. "id": "dataGM",
  5338. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. // caseGM
  5346. case "caseGM": //课程进展
  5347. _formdiv = new U.UF.UI.form(
  5348. "课程进展",
  5349. $$("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 }), {
  5350. "id": "caseGM",
  5351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. // meterialGM
  5359. case "meterialGM": //素材库
  5360. _formdiv = new U.UF.UI.form(
  5361. "素材库",
  5362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5363. "id": "meterialGM",
  5364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5370. break;
  5371. // evaluateSGM
  5372. case "evaluateSGM": //我的评价
  5373. _formdiv = new U.UF.UI.form(
  5374. "我的评价",
  5375. $$("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 }), {
  5376. "id": "evaluateSGM",
  5377. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. _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); } }
  5383. break;
  5384. case "jupyter": //jupyter
  5385. _formdiv = new U.UF.UI.form(
  5386. "jupyter",
  5387. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5388. "id": "jupyter",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "number": //数字实验室
  5397. _formdiv = new U.UF.UI.form(
  5398. "数字实验室",
  5399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5400. "id": "number",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. _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); } }
  5407. break;
  5408. case "studentCourse": //项目管理 学生
  5409. _formdiv = new U.UF.UI.form(
  5410. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5411. $$("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 }), {
  5412. "id": "studentCourse",
  5413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5414. "onresize": function () { }
  5415. }, {
  5416. closecallback: function () { }
  5417. }, { "style": { "height": "36px" } }).form; //创建窗体
  5418. _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); } }
  5419. break;
  5420. case "studentCourseS": //项目管理 老师
  5421. _formdiv = new U.UF.UI.form(
  5422. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5423. $$("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 }), {
  5424. "id": "studentCourseS",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. _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); } }
  5431. break;
  5432. case "studentIndex": //项目中心
  5433. _formdiv = new U.UF.UI.form(
  5434. "项目中心",
  5435. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5436. "id": "studentIndex",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _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); } }
  5443. break;
  5444. case "CaseDesignS":
  5445. _formdiv = new U.UF.UI.form(
  5446. "项目进展",
  5447. $$("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 }), {
  5448. "id": "case",
  5449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. _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); } }
  5455. break;
  5456. case "tcStudent": //腾讯学生管理
  5457. _formdiv = new U.UF.UI.form(
  5458. "学生管理",
  5459. $$("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 }), {
  5460. "id": "tcStudent",
  5461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "tcSchool": //腾讯学校管理
  5469. _formdiv = new U.UF.UI.form(
  5470. "学校管理",
  5471. $$("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 }), {
  5472. "id": "tcSchool",
  5473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _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); } }
  5479. break;
  5480. case "tcTeacher": //腾讯学校管理
  5481. _formdiv = new U.UF.UI.form(
  5482. "教师管理",
  5483. $$("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 }), {
  5484. "id": "tcTeacher",
  5485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. _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); } }
  5491. break;
  5492. case "tcData": //腾讯我的资料
  5493. _formdiv = new U.UF.UI.form(
  5494. "我的资料",
  5495. $$("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 }), {
  5496. "id": "tcData",
  5497. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _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); } }
  5503. break;
  5504. case "tcNotice": //腾讯消息通知
  5505. _formdiv = new U.UF.UI.form(
  5506. "消息通知",
  5507. $$("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 }), {
  5508. "id": "tcNotice",
  5509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. _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); } }
  5515. break;
  5516. case "myReport": //好友打开
  5517. _formdiv = new U.UF.UI.form(
  5518. "我的评价",
  5519. $$("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 }), {
  5520. "id": "myReport",
  5521. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _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); } }
  5527. break;
  5528. case "learnAna": //好友打开
  5529. _formdiv = new U.UF.UI.form(
  5530. "学习分析",
  5531. $$("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 }), {
  5532. "id": "learnAna",
  5533. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. _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); } }
  5539. break;
  5540. case "AIChat": //AI共创
  5541. _formdiv = new U.UF.UI.form(
  5542. "AI共创",
  5543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5544. "id": "AIChat",
  5545. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5546. "onresize": function () { }
  5547. }, {
  5548. istop: true,
  5549. closecallback: function () { $("#aichat_icon").remove(); },
  5550. narrowcallback: function () {
  5551. if (!$("#aichat_icon")[0]) {
  5552. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5553. }
  5554. },
  5555. }, { "style": { "height": "36px" } }).form; //创建窗体
  5556. _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); } }
  5557. break;
  5558. case "ainew": //AI共创
  5559. _formdiv = new U.UF.UI.form(
  5560. "AI协同",
  5561. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5562. "id": "ainew",
  5563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, { "style": { "height": "36px" } }).form; //创建窗体
  5568. _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); } }
  5569. break;
  5570. case "gpt4": //gpt4
  5571. _formdiv = new U.UF.UI.form(
  5572. "AI助手",
  5573. $$("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 }), {
  5574. "id": "gpt4",
  5575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5576. "onresize": function () { }
  5577. }, {
  5578. closecallback: function () { }
  5579. }, { "style": { "height": "36px" } }).form; //创建窗体
  5580. _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); } }
  5581. break;
  5582. case "aigpt": //gpt4
  5583. _formdiv = new U.UF.UI.form(
  5584. "AI助手+",
  5585. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5586. "id": "aigpt",
  5587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. _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); } }
  5593. break;
  5594. case "aiKnowledge": //aiKnowledge
  5595. _formdiv = new U.UF.UI.form(
  5596. "知识建构",
  5597. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5598. "id": "aiKnowledge",
  5599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5605. break;
  5606. case "futureClass": //AI共创
  5607. _formdiv = new U.UF.UI.form(
  5608. "协同建构",
  5609. $$("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
  5610. "id": "synergyCourse",
  5611. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () {
  5615. $("iframe", _formdiv)[0].contentWindow.loginout();
  5616. }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "aiagent": //ai agent
  5621. _formdiv = new U.UF.UI.form(
  5622. "AI Agent",
  5623. $$("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" }), {
  5624. "id": "AIAgent",
  5625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "dataBoard": //数据看板
  5633. _formdiv = new U.UF.UI.form(
  5634. "数据看板",
  5635. $$("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 }), {
  5636. "id": "dataBoard",
  5637. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. case "dataBoardSies": //数据融合
  5645. _formdiv = new U.UF.UI.form(
  5646. "数据融合",
  5647. $$("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 }), {
  5648. "id": "dataBoardSies",
  5649. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "dataBoardNew": //数据看板
  5657. _formdiv = new U.UF.UI.form(
  5658. "综合看板",
  5659. $$("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 }), {
  5660. "id": "dataBoardNew",
  5661. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "dataBoardTest": //数据看板
  5669. _formdiv = new U.UF.UI.form(
  5670. "评测看板",
  5671. $$("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 }), {
  5672. "id": "dataBoardTest",
  5673. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "AIAnalyse": //AI共创
  5681. _formdiv = new U.UF.UI.form(
  5682. "AI分析",
  5683. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5684. "id": "AIAnalyse",
  5685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. case "studioCourse": //AI共创
  5693. _formdiv = new U.UF.UI.form(
  5694. "工作管理",
  5695. $$("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 }), {
  5696. "id": "studioCourse",
  5697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. _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); } }
  5703. break;
  5704. case "studioIndex": //AI共创
  5705. _formdiv = new U.UF.UI.form(
  5706. "工作中心",
  5707. $$("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 }), {
  5708. "id": "studioIndex",
  5709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "source":
  5717. _formdiv = new U.UF.UI.form(
  5718. "教学资源",
  5719. $$("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 }), {
  5720. "id": "source",
  5721. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. _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); } }
  5727. break;
  5728. case "testTeacher":
  5729. _formdiv = new U.UF.UI.form(
  5730. "教师管理",
  5731. $$("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 }), {
  5732. "id": "testTeacher",
  5733. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () { }
  5737. }, { "style": { "height": "36px" } }).form; //创建窗体
  5738. _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); } }
  5739. break;
  5740. case "testStudent":
  5741. _formdiv = new U.UF.UI.form(
  5742. "教师中心",
  5743. $$("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 }), {
  5744. "id": "testStudent",
  5745. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "testTeacherSies":
  5753. _formdiv = new U.UF.UI.form(
  5754. "教师管理",
  5755. $$("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 }), {
  5756. "id": "testTeacherSies",
  5757. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break;
  5764. case "testStudentSies":
  5765. _formdiv = new U.UF.UI.form(
  5766. "教师中心",
  5767. $$("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 }), {
  5768. "id": "testStudentSies",
  5769. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "ytpbl": //消息通知
  5777. _formdiv = new U.UF.UI.form(
  5778. "案例征集",
  5779. $$("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 }), {
  5780. "id": "ytpbl",
  5781. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. // 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");
  5788. break;
  5789. case "aiCourseResource": //人工智能窗体
  5790. _formdiv = new U.UF.UI.form(
  5791. false,
  5792. $$("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 }), {
  5793. "id": "aiCourseResource",
  5794. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5795. "onresize": function () { },
  5796. "isdrag": false,
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. _taskbar = ''
  5801. break;
  5802. case "szdjgCocooroboX": //图形化编程
  5803. _formdiv = new U.UF.UI.form(
  5804. "图形化编程",
  5805. $$("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" }), {
  5806. "id": "szdjgCocooroboX",
  5807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _taskbar = ''
  5813. break;
  5814. case "szdjgPython": //python编程
  5815. _formdiv = new U.UF.UI.form(
  5816. "Python编程",
  5817. $$("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" }), {
  5818. "id": "szdjgPython",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _taskbar = ''
  5825. break;
  5826. case "Record":
  5827. _formdiv = new U.UF.UI.form(
  5828. "观察记录",
  5829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5830. "id": "Record",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5837. break;
  5838. case "aigptCourse":
  5839. _formdiv = new U.UF.UI.form(
  5840. "AI智能体",
  5841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role + '#/AgentVue' }), {
  5842. "id": "aigptCourse",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5849. break;
  5850. case "classroomObservation":
  5851. _formdiv = new U.UF.UI.form(
  5852. "课堂观察",
  5853. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5854. "id": "classroomObservation",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5861. break;
  5862. case "pblCourse":
  5863. _formdiv = new U.UF.UI.form(
  5864. "学生PBL",
  5865. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5866. "id": "pblCourse",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5873. break;
  5874. }
  5875. //U.MD.D.I.openClick(str);
  5876. //如果有任务栏信息
  5877. if (_taskbar) {
  5878. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5879. }
  5880. }
  5881. // U.MD.D.I.openClick = function(str){
  5882. // var click = '';
  5883. // switch(str){
  5884. // case 'friend':
  5885. // click = '我的好友';
  5886. // break;
  5887. // case 'domain':
  5888. // click = '域名管理';
  5889. // break;
  5890. // case 'disk':
  5891. // click = '我的云盘';
  5892. // break;
  5893. // case 'word':
  5894. // click = 'Word';
  5895. // break;
  5896. // case 'excel':
  5897. // click = 'Execl';
  5898. // break;
  5899. // case 'txt':
  5900. // click = '文本文件';
  5901. // break;
  5902. // case 'lookupFriend':
  5903. // click = '查找好友';
  5904. // break;
  5905. // case 'ftp':
  5906. // click = 'FTP';
  5907. // break;
  5908. // case 'group':
  5909. // click = '群组';
  5910. // break;
  5911. // case 'set':
  5912. // click = '我的设置';
  5913. // break;
  5914. // case 'systemSet':
  5915. // click = '系统设置';
  5916. // break;
  5917. // case 'boomYun':
  5918. // click = '互联办公';
  5919. // break;
  5920. // case 'xz':
  5921. // click = '云端下载';
  5922. // break;
  5923. // case 'client':
  5924. // click = '有思浏览器';
  5925. // break;
  5926. // case 'backEndProgramming':
  5927. // click = '在线后台编程';
  5928. // break;
  5929. // case 'frontEndProgramming':
  5930. // click = '在线前端编程';
  5931. // break;
  5932. // default: break;
  5933. // }
  5934. // if(U.MD.D.I.Ip && click){
  5935. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5936. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5937. // })
  5938. // }
  5939. // }
  5940. /**
  5941. *函数作用:ajax简易函数,使用post格式
  5942. *@param url {data} 后台地址
  5943. *@param data {data} 参数json
  5944. *@param fn {data} 回调函数
  5945. *
  5946. */
  5947. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5948. // var xhr = new XMLHttpRequest();
  5949. // xhr.open("GET",url,true);
  5950. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5951. // xhr.onreadystatechange = function(){
  5952. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5953. // fn.call(this,xhr.responseText);
  5954. // }
  5955. // };
  5956. // xhr.send();
  5957. // }
  5958. /*判断是否是内网IP*/
  5959. // U.MD.D.I.isInnerIPFn = function(str){
  5960. // var curPageUrl = str;
  5961. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5962. // curPageUrl =curPageUrl.replace(reg1,'');
  5963. // // console.log('curPageUrl-1 '+curPageUrl);
  5964. // var reg2 = /\:+/g;//替换冒号为一点
  5965. // curPageUrl =curPageUrl.replace(reg2,'.');
  5966. // // console.log('curPageUrl-2 '+curPageUrl);
  5967. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5968. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5969. // if(curPageUrl[2] != '16'){
  5970. // return ipAddress;
  5971. // }else{
  5972. // return false;
  5973. // }
  5974. // }
  5975. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5976. // //compatibility for firefox and chrome
  5977. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5978. // var pc = new myPeerConnection({
  5979. // iceServers: []
  5980. // }),
  5981. // noop = function() {},
  5982. // localIPs = {},
  5983. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5984. // key;
  5985. // function iterateIP(ip) {
  5986. // if (!localIPs[ip]) onNewIP(ip);
  5987. // localIPs[ip] = true;
  5988. // }
  5989. // //create a bogus data channel
  5990. // pc.createDataChannel("");
  5991. // // create offer and set local description
  5992. // pc.createOffer().then(function(sdp) {
  5993. // sdp.sdp.split('\n').forEach(function(line) {
  5994. // if (line.indexOf('candidate') < 0) return;
  5995. // line.match(ipRegex).forEach(iterateIP);
  5996. // });
  5997. // pc.setLocalDescription(sdp, noop, noop);
  5998. // }).catch(function(reason) {
  5999. // // An error occurred, so handle the failure to connect
  6000. // });
  6001. // //sten for candidate events
  6002. // pc.onicecandidate = function(ice) {
  6003. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6004. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6005. // };
  6006. // }
  6007. // U.MD.D.I.getUserIpBool = function(callback){
  6008. // U.MD.D.I.getUserIP(function(ip){
  6009. // alert("Got IP! :" + ip);
  6010. // });
  6011. //}
  6012. //#endregion
  6013. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6014. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6015. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6016. _userinfo = US.userInfo, //登录用户信息
  6017. _userid = US.userInfo.userid //登录用户id
  6018. let _iframe;
  6019. let _cid = cid,
  6020. _stage = stage,
  6021. _task = task,
  6022. _tool = tool;
  6023. var _jie = $$("div", {
  6024. "style": {
  6025. "position": "absolute",
  6026. "bottom": "50px",
  6027. "right": "50px",
  6028. "zIndex": "9999",
  6029. "backgroundColor": "#2268bc",
  6030. "color": "#fff",
  6031. "padding": "12px 20px",
  6032. "cursor": "pointer",
  6033. "borderRadius": "4px",
  6034. },
  6035. "innerHTML": "提交作业"
  6036. })
  6037. let aTool = ''
  6038. let _loading = document.createElement('div')
  6039. _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;"
  6040. // _loading.id = "";
  6041. let _lchild = document.createElement('div')
  6042. let _limg = document.createElement('img')
  6043. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6044. _limg.style = "width: 26px;margin-right: 10px;"
  6045. _lchild.appendChild(_limg)
  6046. let _lspan = document.createElement('span')
  6047. _lspan.innerHTML = "上传中..."
  6048. _lchild.appendChild(_lspan)
  6049. _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%);"
  6050. _loading.appendChild(_lchild)
  6051. var _box = $$('div', {
  6052. "style": {
  6053. "position": "relative",
  6054. "width": "100%",
  6055. "height": "100%",
  6056. },
  6057. })
  6058. _box.appendChild(_loading)
  6059. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6060. switch (str) {
  6061. case "whiteboard":
  6062. aTool = 1;
  6063. _iframe = $$("iframe", {
  6064. "frameborder": "no",
  6065. "border": "0",
  6066. "scrolling ": "no",
  6067. "style": {
  6068. "cssText": "border:0;width:100%;height:100%"
  6069. },
  6070. "src": "https://beta.iwb.cocorobo.cn/"
  6071. })
  6072. _box.appendChild(_iframe);
  6073. _box.appendChild(_jie);
  6074. _formdiv = new U.UF.UI.form(
  6075. "电子白板",
  6076. _box, {
  6077. "id": "whiteboard" + cid + stage + task + tool,
  6078. "style": {
  6079. "width": "90%",
  6080. "height": "90%",
  6081. "overflow": 'hidden'
  6082. },
  6083. "onresize": function () { }
  6084. }, {
  6085. closecallback: function () { }
  6086. }, {
  6087. "style": {
  6088. "height": "36px"
  6089. }
  6090. }).form; //创建窗体
  6091. _taskbar = {
  6092. "id": str + _formdiv.id,
  6093. "style": {
  6094. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6095. },
  6096. "name": "电子白板",
  6097. "forms": _formdiv,
  6098. "click": function () {
  6099. U.MD.D.I.openApplication(str, obj, info);
  6100. }
  6101. }
  6102. break;
  6103. case "mind":
  6104. aTool = 3;
  6105. _iframe = $$("iframe", {
  6106. "frameborder": "no",
  6107. "border": "0",
  6108. "scrolling ": "no",
  6109. "style": {
  6110. "cssText": "border:0;width:100%;height:100%"
  6111. },
  6112. "src": "/kityminder-editor/dist/index.html"
  6113. })
  6114. _box.appendChild(_iframe);
  6115. _box.appendChild(_jie);
  6116. _formdiv = new U.UF.UI.form(
  6117. "思维导图",
  6118. _box, { //"/jsmind/example/demo.html"
  6119. "id": "mind" + cid + stage + task + tool,
  6120. "style": {
  6121. "width": "90%",
  6122. "height": "90%",
  6123. "overflow": 'hidden'
  6124. },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, {
  6129. "style": {
  6130. "height": "36px"
  6131. }
  6132. }).form; //创建窗体
  6133. _taskbar = {
  6134. "id": str + _formdiv.id,
  6135. "style": {
  6136. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6137. },
  6138. "name": "思维导图",
  6139. "forms": _formdiv,
  6140. "click": function () {
  6141. U.MD.D.I.openApplication(str, obj, info);
  6142. }
  6143. }
  6144. break;
  6145. case "MindMap":
  6146. aTool = 3;
  6147. _iframe = $$("iframe", {
  6148. "frameborder": "no",
  6149. "border": "0",
  6150. "scrolling ": "no",
  6151. "style": {
  6152. "cssText": "border:0;width:100%;height:100%"
  6153. },
  6154. "src": "//cloud.cocorobo.cn/mind/"
  6155. })
  6156. _box.appendChild(_iframe);
  6157. _box.appendChild(_jie);
  6158. _formdiv = new U.UF.UI.form(
  6159. "思维导图",
  6160. _box, { //"/jsmind/example/demo.html"
  6161. "id": "mind" + cid + stage + task + tool,
  6162. "style": {
  6163. "width": "90%",
  6164. "height": "90%",
  6165. "overflow": 'hidden'
  6166. },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, {
  6171. "style": {
  6172. "height": "36px"
  6173. }
  6174. }).form; //创建窗体
  6175. _taskbar = {
  6176. "id": str + _formdiv.id,
  6177. "style": {
  6178. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6179. },
  6180. "name": "思维导图",
  6181. "forms": _formdiv,
  6182. "click": function () {
  6183. U.MD.D.I.openApplication(str, obj, info);
  6184. }
  6185. }
  6186. break;
  6187. case "doc":
  6188. aTool = 6;
  6189. _iframe = $$("iframe", {
  6190. "frameborder": "no",
  6191. "border": "0",
  6192. "scrolling ": "no",
  6193. "style": {
  6194. "cssText": "border:0;width:100%;height:100%"
  6195. },
  6196. "src": "/Office/Word/WordEditArea.htm"
  6197. })
  6198. _box.appendChild(_iframe);
  6199. _box.appendChild(_jie);
  6200. _formdiv = new U.UF.UI.form(
  6201. "协同文档",
  6202. _box, {
  6203. "id": "doc" + cid + stage + task + tool,
  6204. "style": {
  6205. "width": "90%",
  6206. "height": "90%",
  6207. "overflow": 'hidden'
  6208. },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, {
  6213. "style": {
  6214. "height": "36px"
  6215. }
  6216. }).form; //创建窗体
  6217. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6218. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6219. })
  6220. _taskbar = {
  6221. "id": str + _formdiv.id,
  6222. "style": {
  6223. "backgroundImage": "url(/img/icon/doc.png)"
  6224. },
  6225. "name": "协同文档",
  6226. "forms": _formdiv,
  6227. "click": function () {
  6228. U.MD.D.I.openApplication(str, obj, info);
  6229. }
  6230. }
  6231. break;
  6232. case "mindNetwork": //好友打开
  6233. aTool = 7;
  6234. _iframe = $$("iframe", {
  6235. "webkitallowfullscreen": "",
  6236. "mozallowfullscreen": "",
  6237. "allowfullscreen": "",
  6238. "frameborder": "no",
  6239. "border": "0",
  6240. "scrolling ": "no",
  6241. "style": {
  6242. "cssText": "border:0; width:100%; height:100%;"
  6243. },
  6244. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6245. })
  6246. _box.appendChild(_iframe);
  6247. _box.appendChild(_jie);
  6248. _formdiv = new U.UF.UI.form(
  6249. "思维网格",
  6250. _box, {
  6251. "id": "mindNetwork" + cid + stage + task + tool,
  6252. "style": {
  6253. "width": "90%",
  6254. "height": "90%",
  6255. "overflow": 'hidden'
  6256. },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, {
  6261. "style": {
  6262. "height": "36px"
  6263. }
  6264. }).form; //创建窗体
  6265. _taskbar = {
  6266. "id": str + _formdiv.id,
  6267. "style": {
  6268. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6269. },
  6270. "name": "思维网格",
  6271. "forms": _formdiv,
  6272. "click": function () {
  6273. U.MD.D.I.openApplication(str, obj, info);
  6274. }
  6275. }
  6276. break;
  6277. case "courseDesign":
  6278. _iframe = $$("iframe", {
  6279. "webkitallowfullscreen": "",
  6280. "mozallowfullscreen": "",
  6281. "allowfullscreen": "",
  6282. "frameborder": "no",
  6283. "border": "0",
  6284. "scrolling ": "no",
  6285. "style": {
  6286. "cssText": "border:0; width:100%; height:100%;"
  6287. },
  6288. "src": "/course-design-vue"
  6289. })
  6290. _box.appendChild(_iframe);
  6291. _box.appendChild(_jie);
  6292. _formdiv = new U.UF.UI.form(
  6293. "项目设计",
  6294. _box, {
  6295. "id": "courseDesign" + cid + stage + task + tool,
  6296. "style": {
  6297. "width": "90%",
  6298. "height": "90%",
  6299. "overflow": 'hidden'
  6300. },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, {
  6305. "style": {
  6306. "height": "36px"
  6307. }
  6308. }).form; //创建窗体
  6309. _taskbar = {
  6310. "id": str + _formdiv.id,
  6311. "style": {
  6312. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6313. },
  6314. "name": "项目设计",
  6315. "forms": _formdiv,
  6316. "click": function () {
  6317. U.MD.D.I.openApplication(str, obj, info);
  6318. }
  6319. }
  6320. break;
  6321. }
  6322. const script1 = document.createElement("script");
  6323. script1.type = "text/javascript";
  6324. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6325. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6326. const script2 = document.createElement("script");
  6327. script2.type = "text/javascript";
  6328. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6329. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6330. const script3 = document.createElement("script");
  6331. script3.type = "text/javascript";
  6332. script3.charset = "UTF-8";
  6333. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6334. const script4 = document.createElement("script");
  6335. script4.type = "text/javascript";
  6336. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6337. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6338. if (_iframe) {
  6339. if (str == 'doc') {
  6340. _iframe = _formdiv.querySelector('iframe')
  6341. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6342. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6343. _iframe.contentWindow.document.body.appendChild(script1);
  6344. _iframe.contentWindow.document.body.appendChild(script2);
  6345. // _iframe.contentWindow.document.body.appendChild(script3);
  6346. _iframe.contentWindow.document.body.appendChild(script4);
  6347. })
  6348. if (onloadListener) {
  6349. _iframe.contentDocument.location.reload()
  6350. } else {
  6351. _iframe.contentDocument.location.reload()
  6352. }
  6353. } else if (str == 'courseDesign') {
  6354. U.UF.DL.iframeLoad(_iframe, function () {
  6355. // _iframe.contentWindow.U.MD.O.W.load();
  6356. // _iframe.contentWindow.document.body.appendChild(script1);
  6357. _iframe.contentWindow.document.body.appendChild(script2);
  6358. _iframe.contentWindow.document.body.appendChild(script4);
  6359. })
  6360. } else if (str == 'mind') {
  6361. _iframe = _formdiv.querySelector('iframe')
  6362. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6363. //
  6364. _iframe.contentWindow.document.body.appendChild(script1);
  6365. _iframe.contentWindow.document.body.appendChild(script2);
  6366. _iframe.contentWindow.document.body.appendChild(script4);
  6367. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6368. })
  6369. if (onloadListener) {
  6370. _iframe.contentDocument.location.reload()
  6371. } else {
  6372. _iframe.contentDocument.location.reload()
  6373. }
  6374. } else if (str == 'whiteboard') {
  6375. _iframe = _formdiv.querySelector('iframe')
  6376. let onloadListener = _iframe.onload = () => {
  6377. _iframe.contentWindow.document.body.appendChild(script1);
  6378. _iframe.contentWindow.document.body.appendChild(script2);
  6379. _iframe.contentWindow.document.body.appendChild(script4);
  6380. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6381. };
  6382. // if (onloadListener) {
  6383. // try {
  6384. // _iframe.src += "?cocorobo="+new Date().getTime()
  6385. // _iframe.contentWindow.document.location.reload()
  6386. // } catch (error) {
  6387. // }
  6388. // } else {
  6389. // _iframe.contentDocument.location.reload()
  6390. // }
  6391. } else {
  6392. _iframe.onload = () => {
  6393. _iframe.contentWindow.document.body.appendChild(script1);
  6394. _iframe.contentWindow.document.body.appendChild(script2);
  6395. // _iframe.contentWindow.document.body.appendChild(script3);
  6396. _iframe.contentWindow.document.body.appendChild(script4);
  6397. };
  6398. }
  6399. _jie.onclick = async () => {
  6400. let text = ''
  6401. if (aTool == 1) {
  6402. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6403. } else if (aTool == 6) {
  6404. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6405. } else if (aTool == 3) {
  6406. text = await U.MD.D.I.getEditorContent(_iframe);
  6407. }
  6408. _loading.style.display = 'flex'
  6409. console.log(_loading);
  6410. var _ajs = _iframe.contentWindow.document.createElement("script");
  6411. _ajs.type = "text/javascript";
  6412. _ajs.innerHTML =
  6413. // 'console.log(' + _loading + ');\n' +
  6414. 'var _js = document.createElement("script");\n' +
  6415. '_js.type="text/javascript";\n' +
  6416. '_js.charset="UTF-8";\n' +
  6417. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6418. "_js.onload = function(){\n" +
  6419. ' var a = document.getElementsByTagName("img")\n' +
  6420. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6421. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6422. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6423. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6424. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6425. "beforeUpload_shishi(file," +
  6426. "'" +
  6427. _userid +
  6428. "'" +
  6429. ", " +
  6430. "'" +
  6431. _cid +
  6432. "'" +
  6433. ", " +
  6434. "'" +
  6435. _stage +
  6436. "'" +
  6437. ", " +
  6438. "'" +
  6439. _task +
  6440. "'" +
  6441. ", " +
  6442. "'" +
  6443. _tool +
  6444. "'" +
  6445. ", " +
  6446. "'" +
  6447. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6448. "'" +
  6449. ", " +
  6450. "'" +
  6451. aTool +
  6452. "'" +
  6453. ", " +
  6454. "`" +
  6455. text +
  6456. "`" +
  6457. ")\n" +
  6458. " });\n" +
  6459. "}\n" +
  6460. "document.head.appendChild(_js);\n";
  6461. _iframe.contentWindow.document.head.appendChild(_ajs);
  6462. }
  6463. }
  6464. //U.MD.D.I.openClick(str);
  6465. //如果有任务栏信息
  6466. // if (_taskbar) {
  6467. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6468. // }
  6469. }
  6470. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6471. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6472. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6473. _userinfo = US.userInfo, //登录用户信息
  6474. _userid = US.userInfo.userid //登录用户id
  6475. let _iframe;
  6476. let _cid = cid,
  6477. _stage = stage,
  6478. _task = task,
  6479. _tool = tool;
  6480. var _jie = $$("div", {
  6481. "style": {
  6482. "position": "absolute",
  6483. "bottom": "50px",
  6484. "right": "50px",
  6485. "zIndex": "9999",
  6486. "backgroundColor": "#2268bc",
  6487. "color": "#fff",
  6488. "padding": "12px 20px",
  6489. "cursor": "pointer",
  6490. "borderRadius": "4px",
  6491. },
  6492. "innerHTML": "提交作业"
  6493. })
  6494. let aTool = ''
  6495. let _loading = document.createElement('div')
  6496. _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;"
  6497. // _loading.id = "";
  6498. let _lchild = document.createElement('div')
  6499. let _limg = document.createElement('img')
  6500. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6501. _limg.style = "width: 26px;margin-right: 10px;"
  6502. _lchild.appendChild(_limg)
  6503. let _lspan = document.createElement('span')
  6504. _lspan.innerHTML = "上传中..."
  6505. _lchild.appendChild(_lspan)
  6506. _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%);"
  6507. _loading.appendChild(_lchild)
  6508. let _box = $$('div', {
  6509. "style": {
  6510. "position": "relative",
  6511. "width": "100%",
  6512. "height": "100%",
  6513. },
  6514. })
  6515. _box.appendChild(_loading)
  6516. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6517. switch (str) {
  6518. case "whiteboard":
  6519. aTool = 1;
  6520. _iframe = $$("iframe", {
  6521. "frameborder": "no",
  6522. "border": "0",
  6523. "scrolling ": "no",
  6524. "style": {
  6525. "cssText": "border:0;width:100%;height:100%"
  6526. },
  6527. "src": "https://beta.iwb.cocorobo.cn/"
  6528. })
  6529. _box.appendChild(_iframe);
  6530. _box.appendChild(_jie);
  6531. _formdiv = new U.UF.UI.form(
  6532. "电子白板",
  6533. _box, {
  6534. "id": "whiteboard" + cid + stage + task + tool,
  6535. "style": {
  6536. "width": "90%",
  6537. "height": "90%",
  6538. "overflow": 'hidden'
  6539. },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, {
  6544. "style": {
  6545. "height": "36px"
  6546. }
  6547. }).form; //创建窗体
  6548. _taskbar = {
  6549. "id": str + _formdiv.id,
  6550. "style": {
  6551. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6552. },
  6553. "name": "电子白板",
  6554. "forms": _formdiv,
  6555. "click": function () {
  6556. U.MD.D.I.openApplication(str, obj, info);
  6557. }
  6558. }
  6559. break;
  6560. case "mind":
  6561. aTool = 3;
  6562. _iframe = $$("iframe", {
  6563. "frameborder": "no",
  6564. "border": "0",
  6565. "scrolling ": "no",
  6566. "style": {
  6567. "cssText": "border:0;width:100%;height:100%"
  6568. },
  6569. "src": "/kityminder-editor/dist/index.html"
  6570. })
  6571. _box.appendChild(_iframe);
  6572. _box.appendChild(_jie);
  6573. _formdiv = new U.UF.UI.form(
  6574. "思维导图",
  6575. _box, { //"/jsmind/example/demo.html"
  6576. "id": "mind" + cid + stage + task + tool,
  6577. "style": {
  6578. "width": "90%",
  6579. "height": "90%",
  6580. "overflow": 'hidden'
  6581. },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, {
  6586. "style": {
  6587. "height": "36px"
  6588. }
  6589. }).form; //创建窗体
  6590. _taskbar = {
  6591. "id": str + _formdiv.id,
  6592. "style": {
  6593. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6594. },
  6595. "name": "思维导图",
  6596. "forms": _formdiv,
  6597. "click": function () {
  6598. U.MD.D.I.openApplication(str, obj, info);
  6599. }
  6600. }
  6601. break;
  6602. case "MindMap":
  6603. aTool = 3;
  6604. _iframe = $$("iframe", {
  6605. "frameborder": "no",
  6606. "border": "0",
  6607. "scrolling ": "no",
  6608. "style": {
  6609. "cssText": "border:0;width:100%;height:100%"
  6610. },
  6611. "src": "//cloud.cocorobo.cn/mind/"
  6612. })
  6613. _box.appendChild(_iframe);
  6614. _box.appendChild(_jie);
  6615. _formdiv = new U.UF.UI.form(
  6616. "思维导图",
  6617. _box, { //"/jsmind/example/demo.html"
  6618. "id": "mind" + cid + stage + task + tool,
  6619. "style": {
  6620. "width": "90%",
  6621. "height": "90%",
  6622. "overflow": 'hidden'
  6623. },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, {
  6628. "style": {
  6629. "height": "36px"
  6630. }
  6631. }).form; //创建窗体
  6632. _taskbar = {
  6633. "id": str + _formdiv.id,
  6634. "style": {
  6635. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6636. },
  6637. "name": "思维导图",
  6638. "forms": _formdiv,
  6639. "click": function () {
  6640. U.MD.D.I.openApplication(str, obj, info);
  6641. }
  6642. }
  6643. break;
  6644. case "doc":
  6645. aTool = 6;
  6646. _iframe = $$("iframe", {
  6647. "frameborder": "no",
  6648. "border": "0",
  6649. "scrolling ": "no",
  6650. "style": {
  6651. "cssText": "border:0;width:100%;height:100%"
  6652. },
  6653. "src": "/Office/Word/WordEditArea.htm"
  6654. })
  6655. _box.appendChild(_iframe);
  6656. _box.appendChild(_jie);
  6657. _formdiv = new U.UF.UI.form(
  6658. "协同文档",
  6659. _box, {
  6660. "id": "doc" + cid + stage + task + tool,
  6661. "style": {
  6662. "width": "90%",
  6663. "height": "90%",
  6664. "overflow": 'hidden'
  6665. },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, {
  6670. "style": {
  6671. "height": "36px"
  6672. }
  6673. }).form; //创建窗体
  6674. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6675. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6676. })
  6677. _taskbar = {
  6678. "id": str + _formdiv.id,
  6679. "style": {
  6680. "backgroundImage": "url(/img/icon/doc.png)"
  6681. },
  6682. "name": "协同文档",
  6683. "forms": _formdiv,
  6684. "click": function () {
  6685. U.MD.D.I.openApplication(str, obj, info);
  6686. }
  6687. }
  6688. break;
  6689. case "mindNetwork": //好友打开
  6690. aTool = 7;
  6691. _iframe = $$("iframe", {
  6692. "webkitallowfullscreen": "",
  6693. "mozallowfullscreen": "",
  6694. "allowfullscreen": "",
  6695. "frameborder": "no",
  6696. "border": "0",
  6697. "scrolling ": "no",
  6698. "style": {
  6699. "cssText": "border:0; width:100%; height:100%;"
  6700. },
  6701. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6702. })
  6703. _box.appendChild(_iframe);
  6704. _box.appendChild(_jie);
  6705. _formdiv = new U.UF.UI.form(
  6706. "思维网格",
  6707. _box, {
  6708. "id": "mindNetwork" + cid + stage + task + tool,
  6709. "style": {
  6710. "width": "90%",
  6711. "height": "90%",
  6712. "overflow": 'hidden'
  6713. },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, {
  6718. "style": {
  6719. "height": "36px"
  6720. }
  6721. }).form; //创建窗体
  6722. _taskbar = {
  6723. "id": str + _formdiv.id,
  6724. "style": {
  6725. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6726. },
  6727. "name": "思维网格",
  6728. "forms": _formdiv,
  6729. "click": function () {
  6730. U.MD.D.I.openApplication(str, obj, info);
  6731. }
  6732. }
  6733. break;
  6734. case "courseDesign":
  6735. _iframe = $$("iframe", {
  6736. "webkitallowfullscreen": "",
  6737. "mozallowfullscreen": "",
  6738. "allowfullscreen": "",
  6739. "frameborder": "no",
  6740. "border": "0",
  6741. "scrolling ": "no",
  6742. "style": {
  6743. "cssText": "border:0; width:100%; height:100%;"
  6744. },
  6745. "src": "/course-design-vue"
  6746. })
  6747. _box.appendChild(_iframe);
  6748. _box.appendChild(_jie);
  6749. _formdiv = new U.UF.UI.form(
  6750. "项目设计",
  6751. _box, {
  6752. "id": "courseDesign" + cid + stage + task + tool,
  6753. "style": {
  6754. "width": "90%",
  6755. "height": "90%",
  6756. "overflow": 'hidden'
  6757. },
  6758. "onresize": function () { }
  6759. }, {
  6760. closecallback: function () { }
  6761. }, {
  6762. "style": {
  6763. "height": "36px"
  6764. }
  6765. }).form; //创建窗体
  6766. _taskbar = {
  6767. "id": str + _formdiv.id,
  6768. "style": {
  6769. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6770. },
  6771. "name": "项目设计",
  6772. "forms": _formdiv,
  6773. "click": function () {
  6774. U.MD.D.I.openApplication(str, obj, info);
  6775. }
  6776. }
  6777. break;
  6778. }
  6779. const script1 = document.createElement("script");
  6780. script1.type = "text/javascript";
  6781. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6782. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6783. const script2 = document.createElement("script");
  6784. script2.type = "text/javascript";
  6785. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6786. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6787. const script3 = document.createElement("script");
  6788. script3.type = "text/javascript";
  6789. script3.charset = "UTF-8";
  6790. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6791. const script4 = document.createElement("script");
  6792. script4.type = "text/javascript";
  6793. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6794. script4.src = window.origin + "/js/Common/jietu2E.js";
  6795. if (_iframe) {
  6796. if (str == 'doc') {
  6797. _iframe = _formdiv.querySelector('iframe')
  6798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6799. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6800. _iframe.contentWindow.document.body.appendChild(script1);
  6801. _iframe.contentWindow.document.body.appendChild(script2);
  6802. // _iframe.contentWindow.document.body.appendChild(script3);
  6803. _iframe.contentWindow.document.body.appendChild(script4);
  6804. })
  6805. if (onloadListener) {
  6806. _iframe.contentDocument.location.reload()
  6807. } else {
  6808. _iframe.contentDocument.location.reload()
  6809. }
  6810. } else if (str == 'courseDesign') {
  6811. U.UF.DL.iframeLoad(_iframe, function () {
  6812. // _iframe.contentWindow.U.MD.O.W.load();
  6813. // _iframe.contentWindow.document.body.appendChild(script1);
  6814. _iframe.contentWindow.document.body.appendChild(script2);
  6815. _iframe.contentWindow.document.body.appendChild(script4);
  6816. })
  6817. } else if (str == 'mind') {
  6818. _iframe = _formdiv.querySelector('iframe')
  6819. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6820. //
  6821. _iframe.contentWindow.document.body.appendChild(script1);
  6822. _iframe.contentWindow.document.body.appendChild(script2);
  6823. _iframe.contentWindow.document.body.appendChild(script4);
  6824. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6825. })
  6826. if (onloadListener) {
  6827. _iframe.contentDocument.location.reload()
  6828. } else {
  6829. _iframe.contentDocument.location.reload()
  6830. }
  6831. } else if (str == 'whiteboard') {
  6832. _iframe = _formdiv.querySelector('iframe')
  6833. let onloadListener = _iframe.onload = () => {
  6834. _iframe.contentWindow.document.body.appendChild(script1);
  6835. _iframe.contentWindow.document.body.appendChild(script2);
  6836. _iframe.contentWindow.document.body.appendChild(script4);
  6837. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6838. };
  6839. // if (onloadListener) {
  6840. // try {
  6841. // _iframe.src += "?cocorobo="+new Date().getTime()
  6842. // _iframe.contentWindow.document.location.reload()
  6843. // } catch (error) {
  6844. // }
  6845. // } else {
  6846. // _iframe.contentDocument.location.reload()
  6847. // }
  6848. } else {
  6849. _iframe.onload = () => {
  6850. _iframe.contentWindow.document.body.appendChild(script1);
  6851. _iframe.contentWindow.document.body.appendChild(script2);
  6852. // _iframe.contentWindow.document.body.appendChild(script3);
  6853. _iframe.contentWindow.document.body.appendChild(script4);
  6854. };
  6855. }
  6856. _jie.onclick = async () => {
  6857. let text = ''
  6858. if (aTool == 1) {
  6859. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6860. } else if (aTool == 6) {
  6861. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6862. } else if (aTool == 3) {
  6863. text = await U.MD.D.I.getEditorContent(_iframe);
  6864. }
  6865. _loading.style.display = 'flex'
  6866. console.log(_loading);
  6867. var _ajs = _iframe.contentWindow.document.createElement("script");
  6868. _ajs.type = "text/javascript";
  6869. _ajs.innerHTML =
  6870. // 'console.log(' + _loading + ');\n' +
  6871. 'var _js = document.createElement("script");\n' +
  6872. '_js.type="text/javascript";\n' +
  6873. '_js.charset="UTF-8";\n' +
  6874. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6875. "_js.onload = function(){\n" +
  6876. ' var a = document.getElementsByTagName("img")\n' +
  6877. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6878. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6879. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6880. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6881. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6882. "beforeUpload_shishi(file," +
  6883. "'" +
  6884. _userid +
  6885. "'" +
  6886. ", " +
  6887. "'" +
  6888. _cid +
  6889. "'" +
  6890. ", " +
  6891. "'" +
  6892. _stage +
  6893. "'" +
  6894. ", " +
  6895. "'" +
  6896. _task +
  6897. "'" +
  6898. ", " +
  6899. "'" +
  6900. _tool +
  6901. "'" +
  6902. ", " +
  6903. "'" +
  6904. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6905. "'" +
  6906. ", " +
  6907. "'" +
  6908. aTool +
  6909. "'" +
  6910. ", " +
  6911. "`" +
  6912. text +
  6913. "`" +
  6914. ")\n" +
  6915. " });\n" +
  6916. "}\n" +
  6917. "document.head.appendChild(_js);\n";
  6918. _iframe.contentWindow.document.head.appendChild(_ajs);
  6919. }
  6920. }
  6921. //U.MD.D.I.openClick(str);
  6922. //如果有任务栏信息
  6923. // if (_taskbar) {
  6924. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6925. // }
  6926. }
  6927. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6928. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6929. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6930. _userid = student.userid, //登录用户id
  6931. _username = student.student //用户名字
  6932. let _iframe;
  6933. let _cid = cid,
  6934. _stage = stage,
  6935. _task = task,
  6936. _tool = tool;
  6937. var _jie = $$("div", {
  6938. "style": {
  6939. "position": "absolute",
  6940. "bottom": "50px",
  6941. "right": "50px",
  6942. "zIndex": "9999",
  6943. "backgroundColor": "#2268bc",
  6944. "color": "#fff",
  6945. "padding": "12px 20px",
  6946. "cursor": "pointer",
  6947. "borderRadius": "4px",
  6948. },
  6949. "innerHTML": "提交作业"
  6950. })
  6951. let aTool = ''
  6952. let _loading = document.createElement('div')
  6953. _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;"
  6954. // _loading.id = "";
  6955. let _lchild = document.createElement('div')
  6956. let _limg = document.createElement('img')
  6957. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6958. _limg.style = "width: 26px;margin-right: 10px;"
  6959. _lchild.appendChild(_limg)
  6960. let _lspan = document.createElement('span')
  6961. _lspan.innerHTML = "上传中..."
  6962. _lchild.appendChild(_lspan)
  6963. _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%);"
  6964. _loading.appendChild(_lchild)
  6965. var _box = $$('div', {
  6966. "style": {
  6967. "position": "relative",
  6968. "width": "100%",
  6969. "height": "100%",
  6970. },
  6971. })
  6972. _box.appendChild(_loading)
  6973. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6974. switch (str) {
  6975. case "whiteboard":
  6976. aTool = 1;
  6977. _iframe = $$("iframe", {
  6978. "frameborder": "no",
  6979. "border": "0",
  6980. "scrolling ": "no",
  6981. "style": {
  6982. "cssText": "border:0;width:100%;height:100%"
  6983. },
  6984. "src": "https://beta.iwb.cocorobo.cn/"
  6985. })
  6986. _box.appendChild(_iframe);
  6987. _box.appendChild(_jie);
  6988. _formdiv = new U.UF.UI.form(
  6989. "电子白板-" + _username,
  6990. _box, {
  6991. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6992. "style": {
  6993. "width": "90%",
  6994. "height": "90%",
  6995. "overflow": 'hidden'
  6996. },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, {
  7001. "style": {
  7002. "height": "36px"
  7003. }
  7004. }).form; //创建窗体
  7005. _taskbar = {
  7006. "id": str + _formdiv.id,
  7007. "style": {
  7008. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7009. },
  7010. "name": "电子白板",
  7011. "forms": _formdiv,
  7012. "click": function () {
  7013. U.MD.D.I.openApplication(str, obj, info);
  7014. }
  7015. }
  7016. break;
  7017. case "mind":
  7018. aTool = 3;
  7019. _iframe = $$("iframe", {
  7020. "frameborder": "no",
  7021. "border": "0",
  7022. "scrolling ": "no",
  7023. "style": {
  7024. "cssText": "border:0;width:100%;height:100%"
  7025. },
  7026. "src": "/kityminder-editor/dist/index.html"
  7027. })
  7028. _box.appendChild(_iframe);
  7029. _box.appendChild(_jie);
  7030. _formdiv = new U.UF.UI.form(
  7031. "思维导图-" + _username,
  7032. _box, { //"/jsmind/example/demo.html"
  7033. "id": "mind" + cid + stage + task + tool + _userid,
  7034. "style": {
  7035. "width": "90%",
  7036. "height": "90%",
  7037. "overflow": 'hidden'
  7038. },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, {
  7043. "style": {
  7044. "height": "36px"
  7045. }
  7046. }).form; //创建窗体
  7047. _taskbar = {
  7048. "id": str + _formdiv.id,
  7049. "style": {
  7050. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7051. },
  7052. "name": "思维导图",
  7053. "forms": _formdiv,
  7054. "click": function () {
  7055. U.MD.D.I.openApplication(str, obj, info);
  7056. }
  7057. }
  7058. break;
  7059. case "MindMap":
  7060. aTool = 3;
  7061. _iframe = $$("iframe", {
  7062. "frameborder": "no",
  7063. "border": "0",
  7064. "scrolling ": "no",
  7065. "style": {
  7066. "cssText": "border:0;width:100%;height:100%"
  7067. },
  7068. "src": "//cloud.cocorobo.cn/mind/"
  7069. })
  7070. _box.appendChild(_iframe);
  7071. _box.appendChild(_jie);
  7072. _formdiv = new U.UF.UI.form(
  7073. "思维导图-" + _username,
  7074. _box, { //"/jsmind/example/demo.html"
  7075. "id": "mind" + cid + stage + task + tool + _userid,
  7076. "style": {
  7077. "width": "90%",
  7078. "height": "90%",
  7079. "overflow": 'hidden'
  7080. },
  7081. "onresize": function () { }
  7082. }, {
  7083. closecallback: function () { }
  7084. }, {
  7085. "style": {
  7086. "height": "36px"
  7087. }
  7088. }).form; //创建窗体
  7089. _taskbar = {
  7090. "id": str + _formdiv.id,
  7091. "style": {
  7092. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7093. },
  7094. "name": "思维导图",
  7095. "forms": _formdiv,
  7096. "click": function () {
  7097. U.MD.D.I.openApplication(str, obj, info);
  7098. }
  7099. }
  7100. break;
  7101. case "doc":
  7102. aTool = 6;
  7103. _iframe = $$("iframe", {
  7104. "frameborder": "no",
  7105. "border": "0",
  7106. "scrolling ": "no",
  7107. "style": {
  7108. "cssText": "border:0;width:100%;height:100%"
  7109. },
  7110. "src": "/Office/Word/WordEditArea.htm"
  7111. })
  7112. _box.appendChild(_iframe);
  7113. _box.appendChild(_jie);
  7114. _formdiv = new U.UF.UI.form(
  7115. "协同文档-" + _username,
  7116. _box, {
  7117. "id": "doc" + cid + stage + task + tool + _userid,
  7118. "style": {
  7119. "width": "90%",
  7120. "height": "90%",
  7121. "overflow": 'hidden'
  7122. },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () { }
  7126. }, {
  7127. "style": {
  7128. "height": "36px"
  7129. }
  7130. }).form; //创建窗体
  7131. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7132. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7133. })
  7134. _taskbar = {
  7135. "id": str + _formdiv.id,
  7136. "style": {
  7137. "backgroundImage": "url(/img/icon/doc.png)"
  7138. },
  7139. "name": "协同文档",
  7140. "forms": _formdiv,
  7141. "click": function () {
  7142. U.MD.D.I.openApplication(str, obj, info);
  7143. }
  7144. }
  7145. break;
  7146. case "mindNetwork": //好友打开
  7147. aTool = 7;
  7148. _iframe = $$("iframe", {
  7149. "webkitallowfullscreen": "",
  7150. "mozallowfullscreen": "",
  7151. "allowfullscreen": "",
  7152. "frameborder": "no",
  7153. "border": "0",
  7154. "scrolling ": "no",
  7155. "style": {
  7156. "cssText": "border:0; width:100%; height:100%;"
  7157. },
  7158. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7159. })
  7160. _box.appendChild(_iframe);
  7161. _box.appendChild(_jie);
  7162. _formdiv = new U.UF.UI.form(
  7163. "思维网格-" + _username,
  7164. _box, {
  7165. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7166. "style": {
  7167. "width": "90%",
  7168. "height": "90%",
  7169. "overflow": 'hidden'
  7170. },
  7171. "onresize": function () { }
  7172. }, {
  7173. closecallback: function () { }
  7174. }, {
  7175. "style": {
  7176. "height": "36px"
  7177. }
  7178. }).form; //创建窗体
  7179. _taskbar = {
  7180. "id": str + _formdiv.id,
  7181. "style": {
  7182. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7183. },
  7184. "name": "思维网格",
  7185. "forms": _formdiv,
  7186. "click": function () {
  7187. U.MD.D.I.openApplication(str, obj, info);
  7188. }
  7189. }
  7190. break;
  7191. case "courseDesign":
  7192. _iframe = $$("iframe", {
  7193. "webkitallowfullscreen": "",
  7194. "mozallowfullscreen": "",
  7195. "allowfullscreen": "",
  7196. "frameborder": "no",
  7197. "border": "0",
  7198. "scrolling ": "no",
  7199. "style": {
  7200. "cssText": "border:0; width:100%; height:100%;"
  7201. },
  7202. "src": "/course-design-vue"
  7203. })
  7204. _box.appendChild(_iframe);
  7205. _box.appendChild(_jie);
  7206. _formdiv = new U.UF.UI.form(
  7207. "项目设计-" + _username,
  7208. _box, {
  7209. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7210. "style": {
  7211. "width": "90%",
  7212. "height": "90%",
  7213. "overflow": 'hidden'
  7214. },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, {
  7219. "style": {
  7220. "height": "36px"
  7221. }
  7222. }).form; //创建窗体
  7223. _taskbar = {
  7224. "id": str + _formdiv.id,
  7225. "style": {
  7226. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7227. },
  7228. "name": "项目设计",
  7229. "forms": _formdiv,
  7230. "click": function () {
  7231. U.MD.D.I.openApplication(str, obj, info);
  7232. }
  7233. }
  7234. break;
  7235. }
  7236. const script1 = document.createElement("script");
  7237. script1.type = "text/javascript";
  7238. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7239. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7240. const script2 = document.createElement("script");
  7241. script2.type = "text/javascript";
  7242. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7243. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7244. const script3 = document.createElement("script");
  7245. script3.type = "text/javascript";
  7246. script3.charset = "UTF-8";
  7247. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7248. const script4 = document.createElement("script");
  7249. script4.type = "text/javascript";
  7250. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7251. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7252. if (_iframe) {
  7253. if (str == 'doc') {
  7254. _iframe = _formdiv.querySelector('iframe')
  7255. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7256. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7257. _iframe.contentWindow.document.body.appendChild(script1);
  7258. _iframe.contentWindow.document.body.appendChild(script2);
  7259. // _iframe.contentWindow.document.body.appendChild(script3);
  7260. _iframe.contentWindow.document.body.appendChild(script4);
  7261. })
  7262. if (onloadListener) {
  7263. _iframe.contentDocument.location.reload()
  7264. } else {
  7265. _iframe.contentDocument.location.reload()
  7266. }
  7267. } else if (str == 'courseDesign') {
  7268. U.UF.DL.iframeLoad(_iframe, function () {
  7269. // _iframe.contentWindow.U.MD.O.W.load();
  7270. // _iframe.contentWindow.document.body.appendChild(script1);
  7271. _iframe.contentWindow.document.body.appendChild(script2);
  7272. _iframe.contentWindow.document.body.appendChild(script4);
  7273. })
  7274. } else if (str == 'mind') {
  7275. _iframe = _formdiv.querySelector('iframe')
  7276. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7277. //
  7278. _iframe.contentWindow.document.body.appendChild(script1);
  7279. _iframe.contentWindow.document.body.appendChild(script2);
  7280. _iframe.contentWindow.document.body.appendChild(script4);
  7281. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7282. })
  7283. if (onloadListener) {
  7284. _iframe.contentDocument.location.reload()
  7285. } else {
  7286. _iframe.contentDocument.location.reload()
  7287. }
  7288. } else if (str == 'whiteboard') {
  7289. _iframe = _formdiv.querySelector('iframe')
  7290. let onloadListener = _iframe.onload = () => {
  7291. _iframe.contentWindow.document.body.appendChild(script1);
  7292. _iframe.contentWindow.document.body.appendChild(script2);
  7293. _iframe.contentWindow.document.body.appendChild(script4);
  7294. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7295. };
  7296. // if (onloadListener) {
  7297. // try {
  7298. // _iframe.src += "?cocorobo="+new Date().getTime()
  7299. // _iframe.contentWindow.document.location.reload()
  7300. // } catch (error) {
  7301. // }
  7302. // } else {
  7303. // _iframe.contentDocument.location.reload()
  7304. // }
  7305. } else {
  7306. _iframe.onload = () => {
  7307. _iframe.contentWindow.document.body.appendChild(script1);
  7308. _iframe.contentWindow.document.body.appendChild(script2);
  7309. // _iframe.contentWindow.document.body.appendChild(script3);
  7310. _iframe.contentWindow.document.body.appendChild(script4);
  7311. };
  7312. }
  7313. _jie.onclick = async () => {
  7314. let text = ''
  7315. if (aTool == 1) {
  7316. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7317. } else if (aTool == 6) {
  7318. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7319. } else if (aTool == 3) {
  7320. text = await U.MD.D.I.getEditorContent(_iframe);
  7321. }
  7322. _loading.style.display = 'flex'
  7323. console.log(_loading);
  7324. var _ajs = _iframe.contentWindow.document.createElement("script");
  7325. _ajs.type = "text/javascript";
  7326. _ajs.innerHTML =
  7327. // 'console.log(' + _loading + ');\n' +
  7328. 'var _js = document.createElement("script");\n' +
  7329. '_js.type="text/javascript";\n' +
  7330. '_js.charset="UTF-8";\n' +
  7331. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7332. "_js.onload = function(){\n" +
  7333. ' var a = document.getElementsByTagName("img")\n' +
  7334. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7335. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7336. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7337. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7338. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7339. "beforeUpload_shishi(file," +
  7340. "'" +
  7341. _userid +
  7342. "'" +
  7343. ", " +
  7344. "'" +
  7345. _cid +
  7346. "'" +
  7347. ", " +
  7348. "'" +
  7349. _stage +
  7350. "'" +
  7351. ", " +
  7352. "'" +
  7353. _task +
  7354. "'" +
  7355. ", " +
  7356. "'" +
  7357. _tool +
  7358. "'" +
  7359. ", " +
  7360. "'" +
  7361. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7362. "'" +
  7363. ", " +
  7364. "'" +
  7365. aTool +
  7366. "'" +
  7367. ", " +
  7368. "`" +
  7369. text +
  7370. "`" +
  7371. ")\n" +
  7372. " });\n" +
  7373. "}\n" +
  7374. "document.head.appendChild(_js);\n";
  7375. _iframe.contentWindow.document.head.appendChild(_ajs);
  7376. }
  7377. }
  7378. }
  7379. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7380. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7381. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7382. _userid = student.userid, //登录用户id
  7383. _username = student.student //用户名字
  7384. let _iframe;
  7385. let _cid = cid,
  7386. _stage = stage,
  7387. _task = task,
  7388. _tool = tool;
  7389. var _jie = $$("div", {
  7390. "style": {
  7391. "position": "absolute",
  7392. "bottom": "50px",
  7393. "right": "50px",
  7394. "zIndex": "9999",
  7395. "backgroundColor": "#2268bc",
  7396. "color": "#fff",
  7397. "padding": "12px 20px",
  7398. "cursor": "pointer",
  7399. "borderRadius": "4px",
  7400. },
  7401. "innerHTML": "提交作业"
  7402. })
  7403. let aTool = ''
  7404. let _loading = document.createElement('div')
  7405. _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;"
  7406. // _loading.id = "";
  7407. let _lchild = document.createElement('div')
  7408. let _limg = document.createElement('img')
  7409. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7410. _limg.style = "width: 26px;margin-right: 10px;"
  7411. _lchild.appendChild(_limg)
  7412. let _lspan = document.createElement('span')
  7413. _lspan.innerHTML = "上传中..."
  7414. _lchild.appendChild(_lspan)
  7415. _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%);"
  7416. _loading.appendChild(_lchild)
  7417. var _box = $$('div', {
  7418. "style": {
  7419. "position": "relative",
  7420. "width": "100%",
  7421. "height": "100%",
  7422. },
  7423. })
  7424. _box.appendChild(_loading)
  7425. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7426. switch (str) {
  7427. case "whiteboard":
  7428. aTool = 1;
  7429. _iframe = $$("iframe", {
  7430. "frameborder": "no",
  7431. "border": "0",
  7432. "scrolling ": "no",
  7433. "style": {
  7434. "cssText": "border:0;width:100%;height:100%"
  7435. },
  7436. "src": "https://beta.iwb.cocorobo.cn/"
  7437. })
  7438. _box.appendChild(_iframe);
  7439. _box.appendChild(_jie);
  7440. _formdiv = new U.UF.UI.form(
  7441. "电子白板-" + _username,
  7442. _box, {
  7443. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7444. "style": {
  7445. "width": "90%",
  7446. "height": "90%",
  7447. "overflow": 'hidden'
  7448. },
  7449. "onresize": function () { }
  7450. }, {
  7451. closecallback: function () { }
  7452. }, {
  7453. "style": {
  7454. "height": "36px"
  7455. }
  7456. }).form; //创建窗体
  7457. _taskbar = {
  7458. "id": str + _formdiv.id,
  7459. "style": {
  7460. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7461. },
  7462. "name": "电子白板",
  7463. "forms": _formdiv,
  7464. "click": function () {
  7465. U.MD.D.I.openApplication(str, obj, info);
  7466. }
  7467. }
  7468. break;
  7469. case "mind":
  7470. aTool = 3;
  7471. _iframe = $$("iframe", {
  7472. "frameborder": "no",
  7473. "border": "0",
  7474. "scrolling ": "no",
  7475. "style": {
  7476. "cssText": "border:0;width:100%;height:100%"
  7477. },
  7478. "src": "/kityminder-editor/dist/index.html"
  7479. })
  7480. _box.appendChild(_iframe);
  7481. _box.appendChild(_jie);
  7482. _formdiv = new U.UF.UI.form(
  7483. "思维导图-" + _username,
  7484. _box, { //"/jsmind/example/demo.html"
  7485. "id": "mind" + cid + stage + task + tool + _userid,
  7486. "style": {
  7487. "width": "90%",
  7488. "height": "90%",
  7489. "overflow": 'hidden'
  7490. },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, {
  7495. "style": {
  7496. "height": "36px"
  7497. }
  7498. }).form; //创建窗体
  7499. _taskbar = {
  7500. "id": str + _formdiv.id,
  7501. "style": {
  7502. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7503. },
  7504. "name": "思维导图",
  7505. "forms": _formdiv,
  7506. "click": function () {
  7507. U.MD.D.I.openApplication(str, obj, info);
  7508. }
  7509. }
  7510. break;
  7511. case "MindMap":
  7512. aTool = 3;
  7513. _iframe = $$("iframe", {
  7514. "frameborder": "no",
  7515. "border": "0",
  7516. "scrolling ": "no",
  7517. "style": {
  7518. "cssText": "border:0;width:100%;height:100%"
  7519. },
  7520. "src": "//cloud.cocorobo.cn/mind/"
  7521. })
  7522. _box.appendChild(_iframe);
  7523. _box.appendChild(_jie);
  7524. _formdiv = new U.UF.UI.form(
  7525. "思维导图-" + _username,
  7526. _box, { //"/jsmind/example/demo.html"
  7527. "id": "mind" + cid + stage + task + tool + _userid,
  7528. "style": {
  7529. "width": "90%",
  7530. "height": "90%",
  7531. "overflow": 'hidden'
  7532. },
  7533. "onresize": function () { }
  7534. }, {
  7535. closecallback: function () { }
  7536. }, {
  7537. "style": {
  7538. "height": "36px"
  7539. }
  7540. }).form; //创建窗体
  7541. _taskbar = {
  7542. "id": str + _formdiv.id,
  7543. "style": {
  7544. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7545. },
  7546. "name": "思维导图",
  7547. "forms": _formdiv,
  7548. "click": function () {
  7549. U.MD.D.I.openApplication(str, obj, info);
  7550. }
  7551. }
  7552. break;
  7553. case "doc":
  7554. aTool = 6;
  7555. _iframe = $$("iframe", {
  7556. "frameborder": "no",
  7557. "border": "0",
  7558. "scrolling ": "no",
  7559. "style": {
  7560. "cssText": "border:0;width:100%;height:100%"
  7561. },
  7562. "src": "/Office/Word/WordEditArea.htm"
  7563. })
  7564. _box.appendChild(_iframe);
  7565. _box.appendChild(_jie);
  7566. _formdiv = new U.UF.UI.form(
  7567. "协同文档-" + _username,
  7568. _box, {
  7569. "id": "doc" + cid + stage + task + tool + _userid,
  7570. "style": {
  7571. "width": "90%",
  7572. "height": "90%",
  7573. "overflow": 'hidden'
  7574. },
  7575. "onresize": function () { }
  7576. }, {
  7577. closecallback: function () { }
  7578. }, {
  7579. "style": {
  7580. "height": "36px"
  7581. }
  7582. }).form; //创建窗体
  7583. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7584. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7585. })
  7586. _taskbar = {
  7587. "id": str + _formdiv.id,
  7588. "style": {
  7589. "backgroundImage": "url(/img/icon/doc.png)"
  7590. },
  7591. "name": "协同文档",
  7592. "forms": _formdiv,
  7593. "click": function () {
  7594. U.MD.D.I.openApplication(str, obj, info);
  7595. }
  7596. }
  7597. break;
  7598. case "mindNetwork": //好友打开
  7599. aTool = 7;
  7600. _iframe = $$("iframe", {
  7601. "webkitallowfullscreen": "",
  7602. "mozallowfullscreen": "",
  7603. "allowfullscreen": "",
  7604. "frameborder": "no",
  7605. "border": "0",
  7606. "scrolling ": "no",
  7607. "style": {
  7608. "cssText": "border:0; width:100%; height:100%;"
  7609. },
  7610. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7611. })
  7612. _box.appendChild(_iframe);
  7613. _box.appendChild(_jie);
  7614. _formdiv = new U.UF.UI.form(
  7615. "思维网格-" + _username,
  7616. _box, {
  7617. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7618. "style": {
  7619. "width": "90%",
  7620. "height": "90%",
  7621. "overflow": 'hidden'
  7622. },
  7623. "onresize": function () { }
  7624. }, {
  7625. closecallback: function () { }
  7626. }, {
  7627. "style": {
  7628. "height": "36px"
  7629. }
  7630. }).form; //创建窗体
  7631. _taskbar = {
  7632. "id": str + _formdiv.id,
  7633. "style": {
  7634. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7635. },
  7636. "name": "思维网格",
  7637. "forms": _formdiv,
  7638. "click": function () {
  7639. U.MD.D.I.openApplication(str, obj, info);
  7640. }
  7641. }
  7642. break;
  7643. case "courseDesign":
  7644. _iframe = $$("iframe", {
  7645. "webkitallowfullscreen": "",
  7646. "mozallowfullscreen": "",
  7647. "allowfullscreen": "",
  7648. "frameborder": "no",
  7649. "border": "0",
  7650. "scrolling ": "no",
  7651. "style": {
  7652. "cssText": "border:0; width:100%; height:100%;"
  7653. },
  7654. "src": "/course-design-vue"
  7655. })
  7656. _box.appendChild(_iframe);
  7657. _box.appendChild(_jie);
  7658. _formdiv = new U.UF.UI.form(
  7659. "项目设计-" + _username,
  7660. _box, {
  7661. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7662. "style": {
  7663. "width": "90%",
  7664. "height": "90%",
  7665. "overflow": 'hidden'
  7666. },
  7667. "onresize": function () { }
  7668. }, {
  7669. closecallback: function () { }
  7670. }, {
  7671. "style": {
  7672. "height": "36px"
  7673. }
  7674. }).form; //创建窗体
  7675. _taskbar = {
  7676. "id": str + _formdiv.id,
  7677. "style": {
  7678. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7679. },
  7680. "name": "项目设计",
  7681. "forms": _formdiv,
  7682. "click": function () {
  7683. U.MD.D.I.openApplication(str, obj, info);
  7684. }
  7685. }
  7686. break;
  7687. }
  7688. const script1 = document.createElement("script");
  7689. script1.type = "text/javascript";
  7690. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7691. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7692. const script2 = document.createElement("script");
  7693. script2.type = "text/javascript";
  7694. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7695. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7696. const script3 = document.createElement("script");
  7697. script3.type = "text/javascript";
  7698. script3.charset = "UTF-8";
  7699. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7700. const script4 = document.createElement("script");
  7701. script4.type = "text/javascript";
  7702. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7703. script4.src = window.origin + "/js/Common/jietu2E.js";
  7704. if (_iframe) {
  7705. if (str == 'doc') {
  7706. _iframe = _formdiv.querySelector('iframe')
  7707. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7708. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7709. _iframe.contentWindow.document.body.appendChild(script1);
  7710. _iframe.contentWindow.document.body.appendChild(script2);
  7711. // _iframe.contentWindow.document.body.appendChild(script3);
  7712. _iframe.contentWindow.document.body.appendChild(script4);
  7713. })
  7714. if (onloadListener) {
  7715. _iframe.contentDocument.location.reload()
  7716. } else {
  7717. _iframe.contentDocument.location.reload()
  7718. }
  7719. } else if (str == 'courseDesign') {
  7720. U.UF.DL.iframeLoad(_iframe, function () {
  7721. // _iframe.contentWindow.U.MD.O.W.load();
  7722. // _iframe.contentWindow.document.body.appendChild(script1);
  7723. _iframe.contentWindow.document.body.appendChild(script2);
  7724. _iframe.contentWindow.document.body.appendChild(script4);
  7725. })
  7726. } else if (str == 'mind') {
  7727. _iframe = _formdiv.querySelector('iframe')
  7728. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7729. //
  7730. _iframe.contentWindow.document.body.appendChild(script1);
  7731. _iframe.contentWindow.document.body.appendChild(script2);
  7732. _iframe.contentWindow.document.body.appendChild(script4);
  7733. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7734. })
  7735. if (onloadListener) {
  7736. _iframe.contentDocument.location.reload()
  7737. } else {
  7738. _iframe.contentDocument.location.reload()
  7739. }
  7740. } else if (str == 'whiteboard') {
  7741. _iframe = _formdiv.querySelector('iframe')
  7742. let onloadListener = _iframe.onload = () => {
  7743. _iframe.contentWindow.document.body.appendChild(script1);
  7744. _iframe.contentWindow.document.body.appendChild(script2);
  7745. _iframe.contentWindow.document.body.appendChild(script4);
  7746. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7747. };
  7748. // if (onloadListener) {
  7749. // try {
  7750. // _iframe.src += "?cocorobo="+new Date().getTime()
  7751. // _iframe.contentWindow.document.location.reload()
  7752. // } catch (error) {
  7753. // }
  7754. // } else {
  7755. // _iframe.contentDocument.location.reload()
  7756. // }
  7757. } else {
  7758. _iframe.onload = () => {
  7759. _iframe.contentWindow.document.body.appendChild(script1);
  7760. _iframe.contentWindow.document.body.appendChild(script2);
  7761. // _iframe.contentWindow.document.body.appendChild(script3);
  7762. _iframe.contentWindow.document.body.appendChild(script4);
  7763. };
  7764. }
  7765. _jie.onclick = async () => {
  7766. let text = ''
  7767. if (aTool == 1) {
  7768. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7769. } else if (aTool == 6) {
  7770. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7771. } else if (aTool == 3) {
  7772. text = await U.MD.D.I.getEditorContent(_iframe);
  7773. }
  7774. _loading.style.display = 'flex'
  7775. console.log(_loading);
  7776. var _ajs = _iframe.contentWindow.document.createElement("script");
  7777. _ajs.type = "text/javascript";
  7778. _ajs.innerHTML =
  7779. // 'console.log(' + _loading + ');\n' +
  7780. 'var _js = document.createElement("script");\n' +
  7781. '_js.type="text/javascript";\n' +
  7782. '_js.charset="UTF-8";\n' +
  7783. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7784. "_js.onload = function(){\n" +
  7785. ' var a = document.getElementsByTagName("img")\n' +
  7786. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7787. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7788. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7789. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7790. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7791. "beforeUpload_shishi(file," +
  7792. "'" +
  7793. _userid +
  7794. "'" +
  7795. ", " +
  7796. "'" +
  7797. _cid +
  7798. "'" +
  7799. ", " +
  7800. "'" +
  7801. _stage +
  7802. "'" +
  7803. ", " +
  7804. "'" +
  7805. _task +
  7806. "'" +
  7807. ", " +
  7808. "'" +
  7809. _tool +
  7810. "'" +
  7811. ", " +
  7812. "'" +
  7813. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7814. "'" +
  7815. ", " +
  7816. "'" +
  7817. aTool +
  7818. "'" +
  7819. ", " +
  7820. "`" +
  7821. text +
  7822. "`" +
  7823. ")\n" +
  7824. " });\n" +
  7825. "}\n" +
  7826. "document.head.appendChild(_js);\n";
  7827. _iframe.contentWindow.document.head.appendChild(_ajs);
  7828. }
  7829. }
  7830. }
  7831. U.MD.D.I.getEditorContent = function (iframe) {
  7832. return new Promise((resolve, reject) => {
  7833. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7834. console.log(content);
  7835. resolve(content)
  7836. });
  7837. });
  7838. }
  7839. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7840. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7841. // if (res.value[0].length > 0) {
  7842. // // resolve(res.value[0][0].text);
  7843. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7844. // $(fileInput).val('');
  7845. // });
  7846. // }
  7847. // }, [], { "type": "GET", "withCredentials": true });
  7848. var xmlhttp;
  7849. var Mac, Sn, DeviceId
  7850. if (window.XMLHttpRequest) {
  7851. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7852. xmlhttp = new XMLHttpRequest();
  7853. } else {
  7854. // IE6, IE5 浏览器执行代码
  7855. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7856. }
  7857. xmlhttp.onreadystatechange = function () {
  7858. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7859. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7860. // resolve(res.value[0][0].text);
  7861. if (type == '2') {
  7862. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7863. } else if (type == '3') {
  7864. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7865. }
  7866. } else {
  7867. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7868. }
  7869. }
  7870. }
  7871. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7872. xmlhttp.send();
  7873. }
  7874. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7875. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7876. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7877. _userinfo = US.userInfo, //登录用户信息
  7878. _userid = US.userInfo.userid //登录用户id
  7879. let _iframe;
  7880. let _cid = cid,
  7881. _stage = stage,
  7882. _task = task,
  7883. _tool = tool;
  7884. var _jie = $$("div", {
  7885. "style": {
  7886. "position": "absolute",
  7887. "bottom": "50px",
  7888. "right": "50px",
  7889. "zIndex": "9999",
  7890. "backgroundColor": "#2268bc",
  7891. "color": "#fff",
  7892. "padding": "12px 20px",
  7893. "cursor": "pointer",
  7894. "borderRadius": "4px",
  7895. },
  7896. "innerHTML": "确认并提交"
  7897. })
  7898. let aTool = ''
  7899. let _loading = document.createElement('div')
  7900. _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;"
  7901. // _loading.id = "";
  7902. let _lchild = document.createElement('div')
  7903. let _limg = document.createElement('img')
  7904. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7905. _limg.style = "width: 26px;margin-right: 10px;"
  7906. _lchild.appendChild(_limg)
  7907. let _lspan = document.createElement('span')
  7908. _lspan.innerHTML = "上传中..."
  7909. _lchild.appendChild(_lspan)
  7910. _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%);"
  7911. _loading.appendChild(_lchild)
  7912. var _box = $$('div', {
  7913. "style": {
  7914. "position": "relative",
  7915. "width": "100%",
  7916. "height": "100%",
  7917. },
  7918. })
  7919. _box.appendChild(_loading)
  7920. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7921. switch (str) {
  7922. case "whiteboard":
  7923. aTool = 1;
  7924. _iframe = $$("iframe", {
  7925. "frameborder": "no",
  7926. "border": "0",
  7927. "scrolling ": "no",
  7928. "style": {
  7929. "cssText": "border:0;width:100%;height:100%"
  7930. },
  7931. "src": "https://beta.iwb.cocorobo.cn/"
  7932. })
  7933. _box.appendChild(_iframe);
  7934. _box.appendChild(_jie);
  7935. _formdiv = new U.UF.UI.form(
  7936. "电子白板",
  7937. _box, {
  7938. "id": "whiteboards" + cid + stage + task + tool,
  7939. "style": {
  7940. "width": "90%",
  7941. "height": "90%",
  7942. "overflow": 'hidden'
  7943. },
  7944. "onresize": function () { }
  7945. }, {
  7946. closecallback: function () { }
  7947. }, {
  7948. "style": {
  7949. "height": "36px"
  7950. }
  7951. }).form; //创建窗体
  7952. _taskbar = {
  7953. "id": str + _formdiv.id,
  7954. "style": {
  7955. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7956. },
  7957. "name": "电子白板",
  7958. "forms": _formdiv,
  7959. "click": function () {
  7960. U.MD.D.I.openApplication(str, obj, info);
  7961. }
  7962. }
  7963. break;
  7964. case "mind":
  7965. aTool = 3;
  7966. _iframe = $$("iframe", {
  7967. "frameborder": "no",
  7968. "border": "0",
  7969. "scrolling ": "no",
  7970. "style": {
  7971. "cssText": "border:0;width:100%;height:100%"
  7972. },
  7973. "src": "/kityminder-editor/dist/index.html"
  7974. });
  7975. _box.appendChild(_iframe);
  7976. _box.appendChild(_jie);
  7977. _formdiv = new U.UF.UI.form(
  7978. "思维导图",
  7979. _box, { //"/jsmind/example/demo.html"
  7980. "id": "minds" + cid + stage + task + tool,
  7981. "style": {
  7982. "width": "90%",
  7983. "height": "90%",
  7984. "overflow": 'hidden'
  7985. },
  7986. "onresize": function () { }
  7987. }, {
  7988. closecallback: function () { }
  7989. }, {
  7990. "style": {
  7991. "height": "36px"
  7992. }
  7993. }).form; //创建窗体
  7994. _taskbar = {
  7995. "id": str + _formdiv.id,
  7996. "style": {
  7997. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7998. },
  7999. "name": "思维导图",
  8000. "forms": _formdiv,
  8001. "click": function () {
  8002. U.MD.D.I.openApplication(str, obj, info);
  8003. }
  8004. }
  8005. break;
  8006. case "doc":
  8007. aTool = 6;
  8008. _iframe = $$("iframe", {
  8009. "frameborder": "no",
  8010. "border": "0",
  8011. "scrolling ": "no",
  8012. "style": {
  8013. "cssText": "border:0;width:100%;height:100%"
  8014. },
  8015. "src": "/Office/Word/WordEditArea.htm"
  8016. })
  8017. _box.appendChild(_iframe);
  8018. _box.appendChild(_jie);
  8019. _formdiv = new U.UF.UI.form(
  8020. "协同文档",
  8021. _box, {
  8022. "id": "docs" + cid + stage + task + tool,
  8023. "style": {
  8024. "width": "90%",
  8025. "height": "90%",
  8026. "overflow": 'hidden'
  8027. },
  8028. "onresize": function () { }
  8029. }, {
  8030. closecallback: function () { }
  8031. }, {
  8032. "style": {
  8033. "height": "36px"
  8034. }
  8035. }).form; //创建窗体
  8036. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8037. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8038. })
  8039. _taskbar = {
  8040. "id": str + _formdiv.id,
  8041. "style": {
  8042. "backgroundImage": "url(/img/icon/doc.png)"
  8043. },
  8044. "name": "协同文档",
  8045. "forms": _formdiv,
  8046. "click": function () {
  8047. U.MD.D.I.openApplication(str, obj, info);
  8048. }
  8049. }
  8050. break;
  8051. }
  8052. const script1 = document.createElement("script");
  8053. script1.type = "text/javascript";
  8054. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8055. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8056. const script2 = document.createElement("script");
  8057. script2.type = "text/javascript";
  8058. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8059. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8060. const script3 = document.createElement("script");
  8061. script3.type = "text/javascript";
  8062. script3.charset = "UTF-8";
  8063. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8064. const script4 = document.createElement("script");
  8065. script4.type = "text/javascript";
  8066. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8067. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8068. if (_iframe) {
  8069. if (str == 'doc') {
  8070. _iframe = _formdiv.querySelector('iframe')
  8071. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8072. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8073. _iframe.contentWindow.document.body.appendChild(script1);
  8074. _iframe.contentWindow.document.body.appendChild(script2);
  8075. // _iframe.contentWindow.document.body.appendChild(script3);
  8076. _iframe.contentWindow.document.body.appendChild(script4);
  8077. })
  8078. if (onloadListener) {
  8079. _iframe.contentDocument.location.reload()
  8080. } else {
  8081. _iframe.contentDocument.location.reload()
  8082. }
  8083. } else if (str == 'mind') {
  8084. _iframe = _formdiv.querySelector('iframe')
  8085. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8086. _iframe.contentWindow.document.body.appendChild(script1);
  8087. _iframe.contentWindow.document.body.appendChild(script2);
  8088. _iframe.contentWindow.document.body.appendChild(script4);
  8089. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8090. })
  8091. if (onloadListener) {
  8092. _iframe.contentDocument.location.reload()
  8093. } else {
  8094. _iframe.contentDocument.location.reload()
  8095. }
  8096. } else {
  8097. _iframe.onload = () => {
  8098. _iframe.contentWindow.document.body.appendChild(script1);
  8099. _iframe.contentWindow.document.body.appendChild(script2);
  8100. // _iframe.contentWindow.document.body.appendChild(script3);
  8101. _iframe.contentWindow.document.body.appendChild(script4);
  8102. };
  8103. }
  8104. _jie.onclick = async () => {
  8105. let text = ''
  8106. if (aTool == 6) {
  8107. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8108. } else if (aTool == 3) {
  8109. text = await U.MD.D.I.getEditorContent(_iframe);
  8110. }
  8111. _loading.style.display = 'flex'
  8112. console.log(_loading);
  8113. var _ajs = _iframe.contentWindow.document.createElement("script");
  8114. _ajs.type = "text/javascript";
  8115. _ajs.innerHTML =
  8116. // 'console.log(' + _loading + ');\n' +
  8117. 'var _js = document.createElement("script");\n' +
  8118. '_js.type="text/javascript";\n' +
  8119. '_js.charset="UTF-8";\n' +
  8120. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8121. "_js.onload = function(){\n" +
  8122. ' var a = document.getElementsByTagName("img")\n' +
  8123. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8124. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8125. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8126. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8127. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8128. "beforeUpload_shishi(file," +
  8129. "'" +
  8130. _userid +
  8131. "'" +
  8132. ", " +
  8133. "'" +
  8134. _cid +
  8135. "'" +
  8136. ", " +
  8137. "'" +
  8138. _stage +
  8139. "'" +
  8140. ", " +
  8141. "'" +
  8142. _task +
  8143. "'" +
  8144. ", " +
  8145. "'" +
  8146. _tool +
  8147. "'" +
  8148. ", " +
  8149. "'" +
  8150. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8151. "'" +
  8152. ", " +
  8153. "'" +
  8154. aTool +
  8155. "'" +
  8156. ", " +
  8157. "`" +
  8158. text +
  8159. "`" +
  8160. ")\n" +
  8161. " });\n" +
  8162. "}\n" +
  8163. "document.head.appendChild(_js);\n";
  8164. _iframe.contentWindow.document.head.appendChild(_ajs);
  8165. }
  8166. }
  8167. //U.MD.D.I.openClick(str);
  8168. //如果有任务栏信息
  8169. // if (_taskbar) {
  8170. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8171. // }
  8172. }
  8173. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8174. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8175. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8176. _userinfo = US.userInfo, //登录用户信息
  8177. _userid = US.userInfo.userid //登录用户id
  8178. let _iframe;
  8179. let _cid = cid,
  8180. _stage = stage,
  8181. _task = task,
  8182. _tool = tool;
  8183. var _jie = $$("div", {
  8184. "style": {
  8185. "position": "absolute",
  8186. "bottom": "50px",
  8187. "right": "50px",
  8188. "zIndex": "9999",
  8189. "backgroundColor": "#2268bc",
  8190. "color": "#fff",
  8191. "padding": "12px 20px",
  8192. "cursor": "pointer",
  8193. "borderRadius": "4px",
  8194. },
  8195. "innerHTML": "确认并提交"
  8196. })
  8197. let aTool = ''
  8198. let _loading = document.createElement('div')
  8199. _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;"
  8200. // _loading.id = "";
  8201. let _lchild = document.createElement('div')
  8202. let _limg = document.createElement('img')
  8203. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8204. _limg.style = "width: 26px;margin-right: 10px;"
  8205. _lchild.appendChild(_limg)
  8206. let _lspan = document.createElement('span')
  8207. _lspan.innerHTML = "上传中..."
  8208. _lchild.appendChild(_lspan)
  8209. _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%);"
  8210. _loading.appendChild(_lchild)
  8211. var _box = $$('div', {
  8212. "style": {
  8213. "position": "relative",
  8214. "width": "100%",
  8215. "height": "100%",
  8216. },
  8217. })
  8218. _box.appendChild(_loading)
  8219. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8220. switch (str) {
  8221. case "whiteboard":
  8222. aTool = 1;
  8223. _iframe = $$("iframe", {
  8224. "frameborder": "no",
  8225. "border": "0",
  8226. "scrolling ": "no",
  8227. "style": {
  8228. "cssText": "border:0;width:100%;height:100%"
  8229. },
  8230. "src": "https://beta.iwb.cocorobo.cn/"
  8231. })
  8232. _box.appendChild(_iframe);
  8233. _box.appendChild(_jie);
  8234. _formdiv = new U.UF.UI.form(
  8235. "电子白板",
  8236. _box, {
  8237. "id": "whiteboards" + cid + stage + task + tool,
  8238. "style": {
  8239. "width": "90%",
  8240. "height": "90%",
  8241. "overflow": 'hidden'
  8242. },
  8243. "onresize": function () { }
  8244. }, {
  8245. closecallback: function () { }
  8246. }, {
  8247. "style": {
  8248. "height": "36px"
  8249. }
  8250. }).form; //创建窗体
  8251. _taskbar = {
  8252. "id": str + _formdiv.id,
  8253. "style": {
  8254. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8255. },
  8256. "name": "电子白板",
  8257. "forms": _formdiv,
  8258. "click": function () {
  8259. U.MD.D.I.openApplication(str, obj, info);
  8260. }
  8261. }
  8262. break;
  8263. case "mind":
  8264. aTool = 3;
  8265. _iframe = $$("iframe", {
  8266. "frameborder": "no",
  8267. "border": "0",
  8268. "scrolling ": "no",
  8269. "style": {
  8270. "cssText": "border:0;width:100%;height:100%"
  8271. },
  8272. "src": "/kityminder-editor/dist/index.html"
  8273. });
  8274. _box.appendChild(_iframe);
  8275. _box.appendChild(_jie);
  8276. _formdiv = new U.UF.UI.form(
  8277. "思维导图",
  8278. _box, { //"/jsmind/example/demo.html"
  8279. "id": "minds" + cid + stage + task + tool,
  8280. "style": {
  8281. "width": "90%",
  8282. "height": "90%",
  8283. "overflow": 'hidden'
  8284. },
  8285. "onresize": function () { }
  8286. }, {
  8287. closecallback: function () { }
  8288. }, {
  8289. "style": {
  8290. "height": "36px"
  8291. }
  8292. }).form; //创建窗体
  8293. _taskbar = {
  8294. "id": str + _formdiv.id,
  8295. "style": {
  8296. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8297. },
  8298. "name": "思维导图",
  8299. "forms": _formdiv,
  8300. "click": function () {
  8301. U.MD.D.I.openApplication(str, obj, info);
  8302. }
  8303. }
  8304. break;
  8305. case "doc":
  8306. aTool = 6;
  8307. _iframe = $$("iframe", {
  8308. "frameborder": "no",
  8309. "border": "0",
  8310. "scrolling ": "no",
  8311. "style": {
  8312. "cssText": "border:0;width:100%;height:100%"
  8313. },
  8314. "src": "/Office/Word/WordEditArea.htm"
  8315. })
  8316. _box.appendChild(_iframe);
  8317. _box.appendChild(_jie);
  8318. _formdiv = new U.UF.UI.form(
  8319. "协同文档",
  8320. _box, {
  8321. "id": "docs" + cid + stage + task + tool,
  8322. "style": {
  8323. "width": "90%",
  8324. "height": "90%",
  8325. "overflow": 'hidden'
  8326. },
  8327. "onresize": function () { }
  8328. }, {
  8329. closecallback: function () { }
  8330. }, {
  8331. "style": {
  8332. "height": "36px"
  8333. }
  8334. }).form; //创建窗体
  8335. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8336. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8337. })
  8338. _taskbar = {
  8339. "id": str + _formdiv.id,
  8340. "style": {
  8341. "backgroundImage": "url(/img/icon/doc.png)"
  8342. },
  8343. "name": "协同文档",
  8344. "forms": _formdiv,
  8345. "click": function () {
  8346. U.MD.D.I.openApplication(str, obj, info);
  8347. }
  8348. }
  8349. break;
  8350. }
  8351. const script1 = document.createElement("script");
  8352. script1.type = "text/javascript";
  8353. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8354. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8355. const script2 = document.createElement("script");
  8356. script2.type = "text/javascript";
  8357. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8358. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8359. const script3 = document.createElement("script");
  8360. script3.type = "text/javascript";
  8361. script3.charset = "UTF-8";
  8362. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8363. const script4 = document.createElement("script");
  8364. script4.type = "text/javascript";
  8365. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8366. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8367. if (_iframe) {
  8368. if (str == 'doc') {
  8369. _iframe = _formdiv.querySelector('iframe')
  8370. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8371. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8372. _iframe.contentWindow.document.body.appendChild(script1);
  8373. _iframe.contentWindow.document.body.appendChild(script2);
  8374. // _iframe.contentWindow.document.body.appendChild(script3);
  8375. _iframe.contentWindow.document.body.appendChild(script4);
  8376. })
  8377. if (onloadListener) {
  8378. _iframe.contentDocument.location.reload()
  8379. } else {
  8380. _iframe.contentDocument.location.reload()
  8381. }
  8382. } else if (str == 'mind') {
  8383. _iframe = _formdiv.querySelector('iframe')
  8384. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8385. _iframe.contentWindow.document.body.appendChild(script1);
  8386. _iframe.contentWindow.document.body.appendChild(script2);
  8387. _iframe.contentWindow.document.body.appendChild(script4);
  8388. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8389. })
  8390. if (onloadListener) {
  8391. _iframe.contentDocument.location.reload()
  8392. } else {
  8393. _iframe.contentDocument.location.reload()
  8394. }
  8395. } else {
  8396. _iframe.onload = () => {
  8397. _iframe.contentWindow.document.body.appendChild(script1);
  8398. _iframe.contentWindow.document.body.appendChild(script2);
  8399. // _iframe.contentWindow.document.body.appendChild(script3);
  8400. _iframe.contentWindow.document.body.appendChild(script4);
  8401. };
  8402. }
  8403. _jie.onclick = async () => {
  8404. let text = ''
  8405. if (aTool == 6) {
  8406. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8407. } else if (aTool == 3) {
  8408. text = await U.MD.D.I.getEditorContent(_iframe);
  8409. }
  8410. _loading.style.display = 'flex'
  8411. console.log(_loading);
  8412. var _ajs = _iframe.contentWindow.document.createElement("script");
  8413. _ajs.type = "text/javascript";
  8414. _ajs.innerHTML =
  8415. // 'console.log(' + _loading + ');\n' +
  8416. 'var _js = document.createElement("script");\n' +
  8417. '_js.type="text/javascript";\n' +
  8418. '_js.charset="UTF-8";\n' +
  8419. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8420. "_js.onload = function(){\n" +
  8421. ' var a = document.getElementsByTagName("img")\n' +
  8422. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8423. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8424. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8425. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8426. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8427. "beforeUpload_shishi(file," +
  8428. "'" +
  8429. _userid +
  8430. "'" +
  8431. ", " +
  8432. "'" +
  8433. _cid +
  8434. "'" +
  8435. ", " +
  8436. "'" +
  8437. _stage +
  8438. "'" +
  8439. ", " +
  8440. "'" +
  8441. _task +
  8442. "'" +
  8443. ", " +
  8444. "'" +
  8445. _tool +
  8446. "'" +
  8447. ", " +
  8448. "'" +
  8449. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8450. "'" +
  8451. ", " +
  8452. "'" +
  8453. aTool +
  8454. "'" +
  8455. ", " +
  8456. "`" +
  8457. text +
  8458. "`" +
  8459. ")\n" +
  8460. " });\n" +
  8461. "}\n" +
  8462. "document.head.appendChild(_js);\n";
  8463. _iframe.contentWindow.document.head.appendChild(_ajs);
  8464. }
  8465. }
  8466. //U.MD.D.I.openClick(str);
  8467. //如果有任务栏信息
  8468. // if (_taskbar) {
  8469. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8470. // }
  8471. }
  8472. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8473. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8474. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8475. _userinfo = US.userInfo, //登录用户信息
  8476. _userid = US.userInfo.userid //登录用户id
  8477. let _iframe;
  8478. let _cid = cid,
  8479. _stage = stage,
  8480. _task = task,
  8481. _tool = tool;
  8482. var _jie = $$("div", {
  8483. "style": {
  8484. "position": "absolute",
  8485. "bottom": "50px",
  8486. "right": "50px",
  8487. "zIndex": "9999",
  8488. "backgroundColor": "#2268bc",
  8489. "color": "#fff",
  8490. "padding": "12px 20px",
  8491. "cursor": "pointer",
  8492. "borderRadius": "4px",
  8493. },
  8494. "innerHTML": "上传模板"
  8495. })
  8496. let aTool = ''
  8497. let _loading = document.createElement('div')
  8498. _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;"
  8499. // _loading.id = "";
  8500. let _lchild = document.createElement('div')
  8501. let _limg = document.createElement('img')
  8502. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8503. _limg.style = "width: 26px;margin-right: 10px;"
  8504. _lchild.appendChild(_limg)
  8505. let _lspan = document.createElement('span')
  8506. _lspan.innerHTML = "上传中..."
  8507. _lchild.appendChild(_lspan)
  8508. _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%);"
  8509. _loading.appendChild(_lchild)
  8510. var _box = $$('div', {
  8511. "style": {
  8512. "position": "relative",
  8513. "width": "100%",
  8514. "height": "100%",
  8515. },
  8516. })
  8517. _box.appendChild(_loading)
  8518. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8519. switch (str) {
  8520. case "whiteboard":
  8521. aTool = 1;
  8522. _iframe = $$("iframe", {
  8523. "frameborder": "no",
  8524. "border": "0",
  8525. "scrolling ": "no",
  8526. "style": {
  8527. "cssText": "border:0;width:100%;height:100%"
  8528. },
  8529. "src": "https://beta.iwb.cocorobo.cn/"
  8530. })
  8531. _box.appendChild(_iframe);
  8532. _box.appendChild(_jie);
  8533. _formdiv = new U.UF.UI.form(
  8534. "电子白板",
  8535. _box, {
  8536. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8537. "style": {
  8538. "width": "90%",
  8539. "height": "90%",
  8540. "overflow": 'hidden'
  8541. },
  8542. "onresize": function () { }
  8543. }, {
  8544. closecallback: function () { }
  8545. }, {
  8546. "style": {
  8547. "height": "36px"
  8548. }
  8549. }).form; //创建窗体
  8550. _taskbar = {
  8551. "id": str + _formdiv.id,
  8552. "style": {
  8553. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8554. },
  8555. "name": "电子白板",
  8556. "forms": _formdiv,
  8557. "click": function () {
  8558. U.MD.D.I.openApplication(str, obj, info);
  8559. }
  8560. }
  8561. break;
  8562. case "mind":
  8563. aTool = 3;
  8564. _iframe = $$("iframe", {
  8565. "frameborder": "no",
  8566. "border": "0",
  8567. "scrolling ": "no",
  8568. "style": {
  8569. "cssText": "border:0;width:100%;height:100%"
  8570. },
  8571. "src": "/kityminder-editor/dist/index.html"
  8572. });
  8573. _box.appendChild(_iframe);
  8574. _box.appendChild(_jie);
  8575. _formdiv = new U.UF.UI.form(
  8576. "思维导图",
  8577. _box, { //"/jsmind/example/demo.html"
  8578. "id": "minds_Yu" + cid + stage + task + tool,
  8579. "style": {
  8580. "width": "90%",
  8581. "height": "90%",
  8582. "overflow": 'hidden'
  8583. },
  8584. "onresize": function () { }
  8585. }, {
  8586. closecallback: function () { }
  8587. }, {
  8588. "style": {
  8589. "height": "36px"
  8590. }
  8591. }).form; //创建窗体
  8592. _taskbar = {
  8593. "id": str + _formdiv.id,
  8594. "style": {
  8595. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8596. },
  8597. "name": "思维导图",
  8598. "forms": _formdiv,
  8599. "click": function () {
  8600. U.MD.D.I.openApplication(str, obj, info);
  8601. }
  8602. }
  8603. break;
  8604. case "doc":
  8605. aTool = 6;
  8606. _iframe = $$("iframe", {
  8607. "frameborder": "no",
  8608. "border": "0",
  8609. "scrolling ": "no",
  8610. "style": {
  8611. "cssText": "border:0;width:100%;height:100%"
  8612. },
  8613. "src": "/Office/Word/WordEditArea.htm"
  8614. })
  8615. _box.appendChild(_iframe);
  8616. _box.appendChild(_jie);
  8617. _formdiv = new U.UF.UI.form(
  8618. "协同文档",
  8619. _box, {
  8620. "id": "docs_Yu" + cid + stage + task + tool,
  8621. "style": {
  8622. "width": "90%",
  8623. "height": "90%",
  8624. "overflow": 'hidden'
  8625. },
  8626. "onresize": function () { }
  8627. }, {
  8628. closecallback: function () { }
  8629. }, {
  8630. "style": {
  8631. "height": "36px"
  8632. }
  8633. }).form; //创建窗体
  8634. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8635. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8636. })
  8637. _taskbar = {
  8638. "id": str + _formdiv.id,
  8639. "style": {
  8640. "backgroundImage": "url(/img/icon/doc.png)"
  8641. },
  8642. "name": "协同文档",
  8643. "forms": _formdiv,
  8644. "click": function () {
  8645. U.MD.D.I.openApplication(str, obj, info);
  8646. }
  8647. }
  8648. break;
  8649. case "CocoPi":
  8650. aTool = 57;
  8651. _iframe = $$("iframe", {
  8652. "allowpaymentrequest": "allowpaymentrequest",
  8653. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8654. "webkitallowfullscreen": "",
  8655. "mozallowfullscreen": "",
  8656. "frameborder": "no",
  8657. "border": "0",
  8658. "scrolling ": "no",
  8659. "style": {
  8660. "cssText": "border:0;width:100%;height:100%"
  8661. },
  8662. "src": "https://pi.cocorobo.cn/"
  8663. })
  8664. _box.appendChild(_iframe);
  8665. _box.appendChild(_jie);
  8666. _formdiv = new U.UF.UI.form(
  8667. "CocoPi",
  8668. _box, {
  8669. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8670. "style": {
  8671. "width": "90%",
  8672. "height": "90%",
  8673. "overflow": 'hidden'
  8674. },
  8675. "onresize": function () { }
  8676. }, {
  8677. closecallback: function () { }
  8678. }, {
  8679. "style": {
  8680. "height": "36px"
  8681. }
  8682. }).form; //创建窗体
  8683. _taskbar = {
  8684. "id": str + _formdiv.id,
  8685. "style": {
  8686. "backgroundImage": "url(/img/icon/cocopi.png)"
  8687. },
  8688. "name": "CocoPi",
  8689. "forms": _formdiv,
  8690. "click": function () {
  8691. U.MD.D.I.openApplication(str, obj, info);
  8692. }
  8693. }
  8694. break;
  8695. }
  8696. if (_iframe) {
  8697. if (str == 'doc') {
  8698. _iframe = _formdiv.querySelector('iframe')
  8699. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8700. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8701. })
  8702. if (onloadListener) {
  8703. _iframe.contentDocument.location.reload()
  8704. } else {
  8705. _iframe.contentDocument.location.reload()
  8706. }
  8707. } else if (str == 'mind') {
  8708. _iframe = _formdiv.querySelector('iframe')
  8709. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8710. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8711. })
  8712. if (onloadListener) {
  8713. _iframe.contentDocument.location.reload()
  8714. } else {
  8715. _iframe.contentDocument.location.reload()
  8716. }
  8717. } else if (str == 'whiteboard') {
  8718. _iframe = _formdiv.querySelector('iframe')
  8719. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8720. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8721. })
  8722. // if (onloadListener) {
  8723. // try {
  8724. // _iframe.src += "?cocorobo="+new Date().getTime()
  8725. // _iframe.contentWindow.document.location.reload()
  8726. // } catch (error) {
  8727. // }
  8728. // } else {
  8729. // _iframe.contentDocument.location.reload()
  8730. // }
  8731. } else if (str == 'CocoPi') {
  8732. _iframe = _formdiv.querySelector('iframe')
  8733. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8734. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8735. })
  8736. if (onloadListener) {
  8737. _iframe.contentDocument.location.reload()
  8738. } else {
  8739. _iframe.contentDocument.location.reload()
  8740. }
  8741. } else {
  8742. _iframe.onload = () => { };
  8743. }
  8744. _jie.onclick = async () => {
  8745. let text = ''
  8746. let type = '2'
  8747. if (aTool == 1) {
  8748. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8749. type = '3'
  8750. } else if (aTool == 6) {
  8751. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8752. type = '1'
  8753. } else if (aTool == 3) {
  8754. text = await U.MD.D.I.getEditorContent(_iframe);
  8755. type = '2'
  8756. } else if (aTool == 57) {
  8757. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8758. type = '4'
  8759. }
  8760. _loading.style.display = 'flex'
  8761. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8762. }
  8763. }
  8764. //U.MD.D.I.openClick(str);
  8765. //如果有任务栏信息
  8766. // if (_taskbar) {
  8767. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8768. // }
  8769. }
  8770. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8771. var xmlhttp;
  8772. var Mac, Sn, DeviceId
  8773. if (window.XMLHttpRequest) {
  8774. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8775. xmlhttp = new XMLHttpRequest();
  8776. } else {
  8777. // IE6, IE5 浏览器执行代码
  8778. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8779. }
  8780. xmlhttp.onreadystatechange = function () {
  8781. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8782. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8783. // resolve(res.value[0][0].text);
  8784. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8785. }
  8786. }
  8787. }
  8788. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8789. xmlhttp.send();
  8790. }
  8791. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8792. var xmlhttp;
  8793. var Mac, Sn, DeviceId
  8794. if (window.XMLHttpRequest) {
  8795. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8796. xmlhttp = new XMLHttpRequest();
  8797. } else {
  8798. // IE6, IE5 浏览器执行代码
  8799. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8800. }
  8801. xmlhttp.onreadystatechange = function () {
  8802. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8803. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8804. // resolve(res.value[0][0].text);
  8805. if (type == '2') {
  8806. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8807. } else if (type == '3') {
  8808. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8809. } else if (type == '4') {
  8810. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8811. }
  8812. } else {
  8813. if (type == '2') {
  8814. iframe.contentWindow.editor.minder.importData('json', '')
  8815. } else if (type == '3') {
  8816. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8817. } else if (type == '4') {
  8818. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8819. }
  8820. }
  8821. }
  8822. }
  8823. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8824. xmlhttp.send();
  8825. }
  8826. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8827. var xmlhttp;
  8828. var Mac, Sn, DeviceId
  8829. if (window.XMLHttpRequest) {
  8830. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8831. xmlhttp = new XMLHttpRequest();
  8832. } else {
  8833. // IE6, IE5 浏览器执行代码
  8834. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8835. }
  8836. xmlhttp.onreadystatechange = function () {
  8837. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8838. if (xmlhttp.response) {
  8839. // resolve(res.value[0][0].text);
  8840. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8841. // $(fileInput).val('');
  8842. // });
  8843. span.innerHTML = '上传成功'
  8844. setTimeout(() => {
  8845. loading.style.display = 'none'
  8846. }, 1000);
  8847. }
  8848. }
  8849. }
  8850. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8851. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8852. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8853. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8854. // 设置请求头,表示请求体的编码格式
  8855. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8856. // 设置请求体,使用url-encoded格式的数据
  8857. }
  8858. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8859. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8860. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8861. _userinfo = US.userInfo, //登录用户信息
  8862. _userid = US.userInfo.userid //登录用户id
  8863. let _iframe;
  8864. let _cid = cid,
  8865. _stage = stage,
  8866. _task = task,
  8867. _tool = tool;
  8868. var _jie = $$("div", {
  8869. "style": {
  8870. "position": "absolute",
  8871. "bottom": "50px",
  8872. "right": "50px",
  8873. "zIndex": "9999",
  8874. "backgroundColor": "#2268bc",
  8875. "color": "#fff",
  8876. "padding": "12px 20px",
  8877. "cursor": "pointer",
  8878. "borderRadius": "4px",
  8879. },
  8880. "innerHTML": "提交作业"
  8881. })
  8882. let aTool = ''
  8883. let _loading = document.createElement('div')
  8884. _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;"
  8885. // _loading.id = "";
  8886. let _lchild = document.createElement('div')
  8887. let _limg = document.createElement('img')
  8888. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8889. _limg.style = "width: 26px;margin-right: 10px;"
  8890. _lchild.appendChild(_limg)
  8891. let _lspan = document.createElement('span')
  8892. _lspan.innerHTML = "上传中..."
  8893. _lchild.appendChild(_lspan)
  8894. _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%);"
  8895. _loading.appendChild(_lchild)
  8896. var _box = $$('div', {
  8897. "style": {
  8898. "position": "relative",
  8899. "width": "100%",
  8900. "height": "100%",
  8901. },
  8902. })
  8903. _box.appendChild(_loading)
  8904. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8905. switch (str) {
  8906. case "CocoPi":
  8907. aTool = 57;
  8908. _iframe = $$("iframe", {
  8909. "allowpaymentrequest": "allowpaymentrequest",
  8910. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8911. "webkitallowfullscreen": "",
  8912. "mozallowfullscreen": "",
  8913. "frameborder": "no",
  8914. "border": "0",
  8915. "scrolling ": "no",
  8916. "style": {
  8917. "cssText": "border:0;width:100%;height:100%"
  8918. },
  8919. "src": "https://pi.cocorobo.cn/"
  8920. })
  8921. _box.appendChild(_iframe);
  8922. _box.appendChild(_jie);
  8923. _formdiv = new U.UF.UI.form(
  8924. "CocoPi",
  8925. _box, {
  8926. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8927. "style": {
  8928. "width": "90%",
  8929. "height": "90%",
  8930. "overflow": 'hidden'
  8931. },
  8932. "onresize": function () { }
  8933. }, {
  8934. closecallback: function () { }
  8935. }, {
  8936. "style": {
  8937. "height": "36px"
  8938. }
  8939. }).form; //创建窗体
  8940. _taskbar = {
  8941. "id": str + _formdiv.id,
  8942. "style": {
  8943. "backgroundImage": "url(/img/icon/cocopi.png)"
  8944. },
  8945. "name": "CocoPi",
  8946. "forms": _formdiv,
  8947. "click": function () {
  8948. U.MD.D.I.openApplication(str, obj, info);
  8949. }
  8950. }
  8951. break;
  8952. }
  8953. if (_iframe) {
  8954. if (str == 'CocoPi') {
  8955. _iframe = _formdiv.querySelector('iframe')
  8956. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8957. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8958. })
  8959. if (onloadListener) {
  8960. _iframe.contentDocument.location.reload()
  8961. } else {
  8962. _iframe.contentDocument.location.reload()
  8963. }
  8964. }
  8965. _jie.onclick = async () => {
  8966. let text = ''
  8967. if (aTool == 57) {
  8968. text = _iframe.contentWindow.getLoadXmlStr()
  8969. }
  8970. _loading.style.display = 'flex'
  8971. console.log(_loading);
  8972. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8973. _loading.style.display = 'none'
  8974. let _div = document.createElement('div')
  8975. _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;"
  8976. let _inner = document.createElement('div')
  8977. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8978. _inner.innerHTML = "上传成功"
  8979. _div.appendChild(_inner)
  8980. _iframe.contentWindow.window.document.body.appendChild(_div)
  8981. _div.onclick = () => {
  8982. _iframe.contentWindow.window.document.body.removeChild(_div)
  8983. }
  8984. setTimeout(() => {
  8985. _iframe.contentWindow.window.document.body.removeChild(_div)
  8986. }, 1000);
  8987. }, [], { "type": "POST", "withCredentials": true });
  8988. }
  8989. }
  8990. }
  8991. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8992. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8993. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8994. _userid = student.userid, //登录用户id
  8995. _username = student.student //用户名字
  8996. let _iframe;
  8997. let _cid = cid,
  8998. _stage = stage,
  8999. _task = task,
  9000. _tool = tool;
  9001. var _jie = $$("div", {
  9002. "style": {
  9003. "position": "absolute",
  9004. "bottom": "50px",
  9005. "right": "50px",
  9006. "zIndex": "9999",
  9007. "backgroundColor": "#2268bc",
  9008. "color": "#fff",
  9009. "padding": "12px 20px",
  9010. "cursor": "pointer",
  9011. "borderRadius": "4px",
  9012. },
  9013. "innerHTML": "提交作业"
  9014. })
  9015. let aTool = ''
  9016. let _loading = document.createElement('div')
  9017. _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;"
  9018. // _loading.id = "";
  9019. let _lchild = document.createElement('div')
  9020. let _limg = document.createElement('img')
  9021. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9022. _limg.style = "width: 26px;margin-right: 10px;"
  9023. _lchild.appendChild(_limg)
  9024. let _lspan = document.createElement('span')
  9025. _lspan.innerHTML = "上传中..."
  9026. _lchild.appendChild(_lspan)
  9027. _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%);"
  9028. _loading.appendChild(_lchild)
  9029. var _box = $$('div', {
  9030. "style": {
  9031. "position": "relative",
  9032. "width": "100%",
  9033. "height": "100%",
  9034. },
  9035. })
  9036. _box.appendChild(_loading)
  9037. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9038. switch (str) {
  9039. case "CocoPi":
  9040. aTool = 57;
  9041. _iframe = $$("iframe", {
  9042. "allowpaymentrequest": "allowpaymentrequest",
  9043. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9044. "webkitallowfullscreen": "",
  9045. "mozallowfullscreen": "",
  9046. "frameborder": "no",
  9047. "border": "0",
  9048. "scrolling ": "no",
  9049. "style": {
  9050. "cssText": "border:0;width:100%;height:100%"
  9051. },
  9052. "src": "https://pi.cocorobo.cn/"
  9053. })
  9054. _box.appendChild(_iframe);
  9055. _box.appendChild(_jie);
  9056. _formdiv = new U.UF.UI.form(
  9057. "CocoPi-" + _username,
  9058. _box, {
  9059. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9060. "style": {
  9061. "width": "90%",
  9062. "height": "90%",
  9063. "overflow": 'hidden'
  9064. },
  9065. "onresize": function () { }
  9066. }, {
  9067. closecallback: function () { }
  9068. }, {
  9069. "style": {
  9070. "height": "36px"
  9071. }
  9072. }).form; //创建窗体
  9073. _taskbar = {
  9074. "id": str + _formdiv.id,
  9075. "style": {
  9076. "backgroundImage": "url(/img/icon/cocopi.png)"
  9077. },
  9078. "name": "CocoPi",
  9079. "forms": _formdiv,
  9080. "click": function () {
  9081. U.MD.D.I.openApplication(str, obj, info);
  9082. }
  9083. }
  9084. break;
  9085. }
  9086. if (_iframe) {
  9087. if (str == 'CocoPi') {
  9088. _iframe = _formdiv.querySelector('iframe')
  9089. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9090. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9091. })
  9092. if (onloadListener) {
  9093. _iframe.contentDocument.location.reload()
  9094. } else {
  9095. _iframe.contentDocument.location.reload()
  9096. }
  9097. }
  9098. _jie.onclick = async () => {
  9099. let text = ''
  9100. if (aTool == 57) {
  9101. text = _iframe.contentWindow.getLoadXmlStr()
  9102. }
  9103. _loading.style.display = 'flex'
  9104. console.log(_loading);
  9105. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9106. _loading.style.display = 'none'
  9107. let _div = document.createElement('div')
  9108. _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;"
  9109. let _inner = document.createElement('div')
  9110. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9111. _inner.innerHTML = "上传成功"
  9112. _div.appendChild(_inner)
  9113. _iframe.contentWindow.window.document.body.appendChild(_div)
  9114. _div.onclick = () => {
  9115. _iframe.contentWindow.window.document.body.removeChild(_div)
  9116. }
  9117. setTimeout(() => {
  9118. _iframe.contentWindow.window.document.body.removeChild(_div)
  9119. }, 1000);
  9120. }, [], { "type": "POST", "withCredentials": true });
  9121. }
  9122. }
  9123. }
  9124. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9125. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9126. if (res.value[0].length > 0) {
  9127. if (atool == 57) {
  9128. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9129. }
  9130. } else {
  9131. if (atool == 57) {
  9132. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9133. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9134. }
  9135. }
  9136. }, [], { "type": "POST", "withCredentials": true });
  9137. }